From 60b0c24fc658850dc247937b5ac52fa1bcd5f2f3 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Thu, 14 Dec 2023 16:55:27 -0500 Subject: [PATCH 01/13] Mapping examples (7 and 8) --- docs/Examples/07_choropleth_maps.ipynb | 145 ++++++++++++++++++ ...pping_large_datasets_with_datashader.ipynb | 85 ++++++++++ 2 files changed, 230 insertions(+) create mode 100644 docs/Examples/07_choropleth_maps.ipynb create mode 100644 docs/Examples/08_mapping_large_datasets_with_datashader.ipynb diff --git a/docs/Examples/07_choropleth_maps.ipynb b/docs/Examples/07_choropleth_maps.ipynb new file mode 100644 index 0000000..086317f --- /dev/null +++ b/docs/Examples/07_choropleth_maps.ipynb @@ -0,0 +1,145 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import plotly.graph_objects as go\n", + "import numpy as np\n", + "\n", + "from urllib.request import urlopen\n", + "import json\n", + "\n", + "from fast_dash import fastdash, Graph" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Counties sample data\n", + "with urlopen('https://raw.githubusercontent.com/plotly/datasets/master/geojson-counties-fips.json') as response:\n", + " counties = json.load(response)\n", + "\n", + "counties_df = pd.read_csv(\"https://raw.githubusercontent.com/plotly/datasets/master/fips-unemp-16.csv\", dtype={\"fips\": str})\n", + "\n", + "# US Ag exports sample data\n", + "us_ag_exports_df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/2011_us_ag_exports.csv')\n", + "\n", + "for col in us_ag_exports_df.columns:\n", + " us_ag_exports_df[col] = us_ag_exports_df[col].astype(str)\n", + "\n", + "us_ag_exports_df['text'] = us_ag_exports_df['state'] + '
' + \\\n", + " 'Beef ' + us_ag_exports_df['beef'] + ' Dairy ' + us_ag_exports_df['dairy'] + '
' + \\\n", + " 'Fruits ' + us_ag_exports_df['total fruits'] + ' Veggies ' + us_ag_exports_df['total veggies'] + '
' + \\\n", + " 'Wheat ' + us_ag_exports_df['wheat'] + ' Corn ' + us_ag_exports_df['corn']" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "WARNING:root:Parsing function docstring is still an experimental feature. To reduce uncertainty, consider setting `about` to `False`.\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + " \n", + " " + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "@fastdash(theme=\"flatly\")\n", + "def visualize_states_and_counties(a: int) -> (Graph, Graph):\n", + " \"\"\"\n", + " Fast Dash allows quick and easy visualization of various geographies.\\\n", + " This application plots states and counties using two differnent basemaps.\\\n", + " Reference: https://plotly.com/python/mapbox-county-choropleth/.\n", + " \"\"\"\n", + "\n", + " # Plotly-native graph map\n", + " fig = go.Figure(data=go.Choropleth(\n", + " locations=us_ag_exports_df['code'],\n", + " z=us_ag_exports_df['total exports'].astype(float),\n", + " locationmode='USA-states',\n", + " colorscale='Reds',\n", + " autocolorscale=False,\n", + " text=us_ag_exports_df['text'], # hover text\n", + " marker_line_color='white', # line markers between states\n", + " colorbar_title=\"Millions USD\"\n", + " ))\n", + "\n", + " fig.update_layout(\n", + " title_text='2011 US Agriculture Exports by State
(Hover for breakdown)',\n", + " geo = dict(\n", + " scope='usa',\n", + " projection=go.layout.geo.Projection(type = 'albers usa'),\n", + " showlakes=True, # lakes\n", + " lakecolor='rgb(255, 255, 255)'),\n", + " )\n", + " \n", + " plotly_express = fig\n", + "\n", + " # Mapbox graph map\n", + " fig = go.Figure(go.Choroplethmapbox(geojson=counties, locations=counties_df.fips, z=counties_df.unemp,\n", + " colorscale=\"Viridis\", zmin=0, zmax=12, marker_line_width=0))\n", + " fig.update_layout(mapbox_style=\"light\", mapbox_accesstoken=\"...\",\n", + " mapbox_zoom=3, mapbox_center = {\"lat\": 37.0902, \"lon\": -95.7129})\n", + " fig.update_layout(margin={\"r\":0,\"t\":0,\"l\":0,\"b\":0})\n", + " mapbox = fig\n", + " return plotly_express, mapbox" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/docs/Examples/08_mapping_large_datasets_with_datashader.ipynb b/docs/Examples/08_mapping_large_datasets_with_datashader.ipynb new file mode 100644 index 0000000..a3c975d --- /dev/null +++ b/docs/Examples/08_mapping_large_datasets_with_datashader.ipynb @@ -0,0 +1,85 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'datashader'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[1;32mIn[2], line 5\u001b[0m\n\u001b[0;32m 2\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mread_csv(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mhttps://raw.githubusercontent.com/plotly/datasets/master/uber-rides-data1.csv\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m 3\u001b[0m dff \u001b[38;5;241m=\u001b[39m df\u001b[38;5;241m.\u001b[39mquery(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mLat < 40.82\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;241m.\u001b[39mquery(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mLat > 40.70\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;241m.\u001b[39mquery(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mLon > -74.02\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;241m.\u001b[39mquery(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mLon < -73.91\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m----> 5\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mdatashader\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m \u001b[38;5;21;01mds\u001b[39;00m\n\u001b[0;32m 6\u001b[0m cvs \u001b[38;5;241m=\u001b[39m ds\u001b[38;5;241m.\u001b[39mCanvas(plot_width\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m1000\u001b[39m, plot_height\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m1000\u001b[39m)\n\u001b[0;32m 7\u001b[0m agg \u001b[38;5;241m=\u001b[39m cvs\u001b[38;5;241m.\u001b[39mpoints(dff, x\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mLon\u001b[39m\u001b[38;5;124m'\u001b[39m, y\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mLat\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", + "\u001b[1;31mModuleNotFoundError\u001b[0m: No module named 'datashader'" + ] + } + ], + "source": [ + "import pandas as pd\n", + "df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/uber-rides-data1.csv')\n", + "dff = df.query('Lat < 40.82').query('Lat > 40.70').query('Lon > -74.02').query('Lon < -73.91')\n", + "\n", + "import datashader as ds\n", + "cvs = ds.Canvas(plot_width=1000, plot_height=1000)\n", + "agg = cvs.points(dff, x='Lon', y='Lat')\n", + "# agg is an xarray object, see http://xarray.pydata.org/en/stable/ for more details\n", + "coords_lat, coords_lon = agg.coords['Lat'].values, agg.coords['Lon'].values\n", + "# Corners of the image, which need to be passed to mapbox\n", + "coordinates = [[coords_lon[0], coords_lat[0]],\n", + " [coords_lon[-1], coords_lat[0]],\n", + " [coords_lon[-1], coords_lat[-1]],\n", + " [coords_lon[0], coords_lat[-1]]]\n", + "\n", + "from colorcet import fire\n", + "import datashader.transfer_functions as tf\n", + "\n", + "img = tf.shade(agg, cmap=fire)[::-1].to_pil()\n", + "\n", + "import plotly.express as px\n", + "# Trick to create rapidly a figure with mapbox axes\n", + "fig = px.scatter_mapbox(dff[:1], lat='Lat', lon='Lon', zoom=12)\n", + "# Add the datashader image as a mapbox layer image\n", + "fig.update_layout(mapbox_style=\"carto-darkmatter\",\n", + " mapbox_layers = [\n", + " {\n", + " \"sourcetype\": \"image\",\n", + " \"source\": img,\n", + " \"coordinates\": coordinates\n", + " }]\n", + ")\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "fastdash", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 85a0a9769055b5fbc1d8b9fc44c54d0d3a2304c0 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 00:19:02 -0400 Subject: [PATCH 02/13] Add chla subset to docs/assets --- docs/assets/chla_subset.csv | 45298 ++++++++++++++++++++++++++++++++++ 1 file changed, 45298 insertions(+) create mode 100644 docs/assets/chla_subset.csv diff --git a/docs/assets/chla_subset.csv b/docs/assets/chla_subset.csv new file mode 100644 index 0000000..40b3fdd --- /dev/null +++ b/docs/assets/chla_subset.csv @@ -0,0 +1,45298 @@ +gnis_name,comid,centroid_longitude,centroid_latitude,date_acquired,predictions +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/01/05,2.9649000000000054 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/03/11,22.47567500000001 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/03/02,9.916316666451676 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/02/23,22.137733333333344 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/03/11,22.47567500000001 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/03/02,9.916316666451676 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/02/23,22.137733333333344 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/04/04,13.512287501455011 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/04/04,13.512287501455011 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/05/05,13.823145836468331 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/04/28,5.686081825189997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/05/05,13.823145836468331 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/04/28,5.686081825189997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/06/06,6.700299996090013 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/06/07,22.35200416769417 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/05/29,6.546800000120003 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/06/06,6.700299996090013 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/06/07,22.35200416769417 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/05/29,6.546800000120003 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/07/01,6.214274994195015 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/06/22,4.998750000190002 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/07/01,6.214274994195015 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/06/22,4.998750000190002 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/08/02,3.8683871205799942 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/07/24,4.332490001822504 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/08/01,3.740926730769228 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/07/25,4.226892434615379 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/08/02,3.8683871205799942 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/07/24,4.332490001822504 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/08/01,3.740926730769228 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/07/25,4.226892434615379 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/08/25,5.927533333858336 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/09/11,4.796456750000001 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/09/02,9.21565909033501 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/08/25,5.927533333858336 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/09/11,4.796456750000001 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/09/02,9.21565909033501 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/10/05,7.293029166641668 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/10/04,3.65769575 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/10/05,7.293029166641668 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/10/04,3.65769575 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/12/08,3.496117408846153 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/11/29,5.472464396786665 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/12/07,6.916030490333326 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/11/30,3.2617371507692274 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/11/21,12.609358333318326 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/12/08,3.496117408846153 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/11/29,5.472464396786665 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/12/07,6.916030490333326 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/11/30,3.2617371507692274 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2015/11/21,12.609358333318326 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/01/08,15.438500001399994 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/01/08,15.438500001399994 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/02/01,9.223499992035002 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/02/02,4.131666298076919 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/01/24,13.856033333618337 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/02/01,9.223499992035002 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/02/02,4.131666298076919 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/01/24,13.856033333618337 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/03/04,6.121031257199991 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/02/26,5.848720828313344 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/03/04,6.121031257199991 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/02/26,5.848720828313344 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/04/05,8.258750019044996 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/03/29,9.205488648592512 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/04/05,8.258750019044996 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/03/29,9.205488648592512 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/04/21,4.965727539238566 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/05/08,4.601927270144997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/04/21,4.965727539238566 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/05/08,4.601927270144997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/05/23,7.790000009967496 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/06/09,5.252789930824994 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/05/31,4.764998798303327 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/05/24,5.712325005144157 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/05/23,7.790000009967496 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/06/09,5.252789930824994 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/05/31,4.764998798303327 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/05/24,5.712325005144157 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/07/03,6.137150011165004 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/06/24,4.424706813695829 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/06/25,8.8848400002375 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/07/03,6.137150011165004 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/06/24,4.424706813695829 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/06/25,8.8848400002375 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/11,2.6459560581891663 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/04,4.112928806739161 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/07/26,4.754933837849404 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/03,2.7014113750000006 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/07/27,4.632082168717944 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/11,2.6459560581891663 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/04,4.112928806739161 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/07/26,4.754933837849404 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/03,2.7014113750000006 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/07/27,4.632082168717944 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/09/05,4.048500000434993 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/27,6.608250004522505 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/09/04,12.371034090047496 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/28,5.784185603910836 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/09/05,4.048500000434993 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/27,6.608250004522505 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/09/04,12.371034090047496 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/08/28,5.784185603910836 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/10/07,2.685308326739168 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/09/28,3.288502270772495 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/09/21,3.158641514666661 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/10/06,2.6567159000000014 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/10/07,2.685308326739168 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/09/28,3.288502270772495 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/09/21,3.158641514666661 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/10/06,2.6567159000000014 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/11/08,14.452168946409172 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/10/23,12.426387499762496 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/11/07,4.254868096666662 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/10/31,5.476104170431662 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/11/08,14.452168946409172 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/10/23,12.426387499762496 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/11/07,4.254868096666662 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/10/31,5.476104170431662 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/12/09,3.0494500000000087 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2016/12/09,3.0494500000000087 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/01/11,12.380933339955831 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/01/11,12.380933339955831 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/03,9.22120833268834 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/04,22.67387500029252 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/01/26,11.494383332258336 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/03,9.22120833268834 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/04,22.67387500029252 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/01/26,11.494383332258336 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/28,9.423340014642504 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/19,8.924835435891666 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/03/08,3.000198961538461 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/20,18.50713125023751 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/28,9.423340014642504 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/19,8.924835435891666 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/03/08,3.000198961538461 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/02/20,18.50713125023751 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/04/08,4.754070832040839 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/03/23,16.672383333285822 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/04/09,6.961926519014149 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/04/08,4.754070832040839 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/03/23,16.672383333285822 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/04/09,6.961926519014149 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/06/11,17.48629333620836 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/06/03,5.683200000144996 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/06/11,17.48629333620836 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/06/03,5.683200000144996 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/07/06,10.609345833263331 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/06/27,6.677858335725835 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/07/05,2.349198810769229 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/06/28,3.1737135196153847 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/07/06,10.609345833263331 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/06/27,6.677858335725835 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/07/05,2.349198810769229 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/06/28,3.1737135196153847 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/07/30,6.858958335705837 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/07/30,6.858958335705837 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/08/30,11.620524999212494 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/08/23,3.550221233405828 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/08/22,6.490865910385 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/08/30,11.620524999212494 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/08/23,3.550221233405828 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/08/22,6.490865910385 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/10/01,3.950943174999994 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/09/24,6.292168180000004 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/10/02,3.276230018269229 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/09/23,3.1878722999999964 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/10/01,3.950943174999994 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/09/24,6.292168180000004 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/10/02,3.276230018269229 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/09/23,3.1878722999999964 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/11/11,17.461862880633333 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/10/26,7.604341659421673 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/10/25,5.007580461999997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/11/11,17.461862880633333 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/10/26,7.604341659421673 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/10/25,5.007580461999997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/12/04,11.669381249067504 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/11/27,4.297456249952511 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/01/05,10.005441666666686 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/12/29,8.109601289520004 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/01/06,11.993725000000008 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2017/12/28,3.553850000000008 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/01/29,11.771910417304174 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/03/26,21.080333333190858 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/04/28,3.469000000000007 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/06/07,8.72278959904834 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/05/30,14.60722500002499 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/07/09,3.854102279999994 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/06/30,5.51438409012 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/07/08,3.506490283974357 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/08/09,3.025525000000006 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/08/02,13.46922499999998 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/09/03,5.0415431801449975 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/10/05,2.906875891666668 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/12/07,6.202333331123349 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2018/11/22,3.3162500000000104 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/01/25,3.644000000000008 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/03/06,11.865783332688334 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/03/05,22.144008333285846 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/04/07,3.6882166666266674 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/04/23,8.032302092193339 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/05/08,3.8212 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/05/25,6.556175000287502 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/06/09,4.99603071483 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/07/03,4.104628783768329 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/06/26,12.039488633453328 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/07/04,2.6551522500000027 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/08/04,7.21163749879751 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/07/28,5.877637500384997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/08/05,6.886874999999999 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/07/27,7.829956820357499 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/08/29,6.3052833337658365 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/09/21,2.752468180145 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/10/08,17.72940000118499 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/09/29,3.4869855499999955 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/11/01,5.995324994045011 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/10/23,11.653981585954169 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/11/09,4.969758348829165 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/10/24,6.965574999999989 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/12/03,13.668766544215268 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2019/12/11,19.39519166662168 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/03/08,6.950116659191675 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/02/21,5.835299998280013 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/03/07,4.161182038666664 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/02/29,3.425425000000006 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/05/02,10.35083333787085 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/05/10,12.406999999784984 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/05/03,16.133365919342495 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/06/11,2.7523215000000016 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/06/04,9.373209092467512 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/05/26,4.220140909999991 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/07/05,8.008850005732505 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/07/06,5.267099999999998 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/08/06,6.6032583334758375 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/07/29,4.927050002372504 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/07/22,6.538578674871781 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/08/22,3.639756800072497 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/09/08,13.900483333405829 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/08/30,4.394799053846148 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/08/23,4.946145450072498 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/10/09,11.856849999337497 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/09/23,6.138600000787506 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/10/10,18.20185000230002 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/10/01,3.593529880769227 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2020/11/03,10.19921781693166 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/01/30,7.013267654615378 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/03/11,12.18879375313751 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/03/02,13.936672919156658 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/03/10,13.125024999715006 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/03/03,16.18974166666666 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/04/03,19.64855001380002 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/05/06,3.367025000144999 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/04/27,4.758988639402497 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/06/06,14.638208344978336 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/06/07,6.235497700000002 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/06/30,4.4731334994869005 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/06/23,3.064886399999996 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/08/09,3.178945450289996 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/08/01,21.002966666619194 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/09/10,2.781296213333332 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/09/03,2.9551749926725 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/08/25,8.119775003709995 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/09/11,5.437947729999999 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/09/02,4.008442282999998 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/08/26,7.37466742599084 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/09/26,3.09348109891333 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/09/27,5.264781820072495 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/11/06,13.706628351573336 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/10/28,7.804612140144997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/11/09,14.485390915728347 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/11/05,10.846627269999994 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/11/22,24.44116666666665 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2021/11/24,4.171849969999998 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/01/08,5.772066574038453 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/02/01,10.414125070822504 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/02/09,9.739200000410015 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/02/02,5.352155000072493 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/02/01,5.758803984615387 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/01/24,7.101306637499989 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/02/26,10.816608333118332 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/03/22,6.937884089999987 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/05/09,4.7422409150724985 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/05/09,4.313325034999998 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/05/08,6.156950019149999 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/05/01,14.423166670116682 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/04/30,18.96431670534169 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/04/22,7.302217119654163 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/05/31,22.010016669111664 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/06/10,23.348125000399985 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/05/25,14.134875000072498 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/07/04,4.504690042598447 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/06/29,6.6785606034783305 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/07/04,4.13042887166666 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/07/03,13.524102097058352 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/06/26,6.14613500199999 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/06/25,5.156688778739164 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/08/07,7.144158316303338 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/08/02,8.19439542264917 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/08/04,5.485184090217499 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/07/28,2.709152250000007 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/09/10,6.719737499052509 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/08/29,4.006100000000003 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/10/09,7.236825002537501 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/10/07,3.30978423076923 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/09/29,13.781824999569988 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/09/22,21.460808333568338 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/09/21,5.232219547999997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/10/31,13.738325046000009 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/11/09,2.7860820799999986 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/11/08,4.079374666666664 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/10/31,6.794300001392481 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/12/10,6.2284213566666615 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/12/02,7.264080313333324 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/11/24,6.268840922219154 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2022/12/26,12.7968250009375 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/02/10,14.906150067265004 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/02/04,6.588629166074169 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/01/28,3.9980530066666624 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/03/26,3.770310659385233 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/04/10,2.963502354999997 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/04/09,3.773990129999996 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/04/02,4.58577652666666 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/03/24,7.081564777772496 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/05/09,12.88143630990379 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/05/11,13.296041678166674 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/04/26,2.8527522500000013 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/05/31,15.043483333670828 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/05/26,2.812777875391665 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/06/05,9.834100000192487 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/05/28,3.1351772999999987 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/05/27,5.131261667024171 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/07/06,4.133550000712504 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/06/29,8.505802565045064 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/06/21,6.195141669229174 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/07/31,3.328118180362493 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/08/08,3.592929500095005 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/07/31,3.2757772500000044 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/07/23,5.321100757236675 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/09/01,12.837204170501671 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/09/08,7.881675000917498 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/09/01,4.3062886099999975 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/08/31,3.3417157713333285 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/08/23,6.475837271999996 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/09/28,5.062887133333327 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/10/11,14.384175000484984 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/10/03,3.781313649999995 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/10/25,6.259770829465848 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/11/03,5.818368338666659 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/10/27,5.782695469999992 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/10/26,13.906308333318323 +Pepacton Reservoir,1748473,-74.8706626158816,42.08825802412423,2023/12/06,13.007324999810004 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2014/12/29,14.681599998317488 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/03/11,22.47810000000001 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/03/02,22.348225000000006 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/02/23,11.34029166645167 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/03/11,22.47810000000001 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/03/02,22.348225000000006 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/02/23,11.34029166645167 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/04/04,24.394408347323324 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/04/04,24.394408347323324 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/04/28,5.467521842999995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/04/28,5.467521842999995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/05/30,8.60228749178251 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/06/07,21.58703333342834 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/05/29,5.225354208729881 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/05/22,2.454874999999999 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/05/30,8.60228749178251 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/06/07,21.58703333342834 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/05/29,5.225354208729881 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/05/22,2.454874999999999 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/07/01,10.541441290722505 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/06/22,8.320137496185005 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/07/01,10.541441290722505 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/06/22,8.320137496185005 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/08/02,7.095148486811666 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/07/24,23.30267083475836 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/08/01,12.060998113972506 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/07/25,19.52862499992251 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/08/02,7.095148486811666 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/07/24,23.30267083475836 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/08/01,12.060998113972506 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/07/25,19.52862499992251 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/09/03,21.927441667146667 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/09/11,2.811652250000006 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/09/02,24.495316669014176 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/08/26,4.941055451999992 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/09/03,21.927441667146667 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/09/11,2.811652250000006 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/09/02,24.495316669014176 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/08/26,4.941055451999992 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/10/05,14.53949167601166 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/09/27,3.1207080007692283 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/10/05,14.53949167601166 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/09/27,3.1207080007692283 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/11/29,6.475025021666661 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/11/30,4.940640328666663 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/11/29,6.475025021666661 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2015/11/30,4.940640328666663 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/02/10,11.082958333118334 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/02/02,2.879552250000005 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/02/10,11.082958333118334 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/02/02,2.879552250000005 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/02/26,7.858704167031679 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/02/26,7.858704167031679 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/03/29,8.622850001247508 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/03/29,8.622850001247508 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/05/08,5.703084515358331 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/05/08,5.703084515358331 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/05/31,8.216461667071677 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/05/31,8.216461667071677 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/07/03,5.185921966043448 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/06/24,5.592883327453337 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/06/25,6.828350000000001 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/07/03,5.185921966043448 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/06/24,5.592883327453337 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/06/25,6.828350000000001 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/08/04,4.678816516405824 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/07/26,7.354004166854175 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/08/03,5.991214396225817 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/07/27,3.0522908999999983 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/08/04,4.678816516405824 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/07/26,7.354004166854175 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/08/03,5.991214396225817 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/07/27,3.0522908999999983 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/09/05,6.720746210289998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/08/27,6.0680943278575015 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/09/04,8.00943333371334 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/08/28,15.527383335635845 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/09/05,6.720746210289998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/08/27,6.0680943278575015 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/09/04,8.00943333371334 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/08/28,15.527383335635845 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/10/07,7.45365833 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/09/21,4.658580908144995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/10/06,3.327195531666666 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/10/07,7.45365833 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/09/21,4.658580908144995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/10/06,3.327195531666666 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/11/08,8.691284855144993 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/10/23,13.537363422213344 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/10/31,7.812181066666659 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/11/08,8.691284855144993 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/10/23,13.537363422213344 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2016/10/31,7.812181066666659 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/02/04,21.77565833333335 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/02/04,21.77565833333335 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/02/28,7.063345849575833 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/03/08,5.537307736666665 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/02/28,7.063345849575833 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/03/08,5.537307736666665 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/04/08,9.3512750068975 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/03/23,12.025904168251662 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/04/09,4.782454599999996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/04/08,9.3512750068975 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/03/23,12.025904168251662 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/04/09,4.782454599999996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/05/03,5.546299999617507 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/05/03,5.546299999617507 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/06/11,12.643899992509995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/06/11,12.643899992509995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/07/05,8.036988645599996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/06/28,12.216909113936682 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/07/05,8.036988645599996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/06/28,12.216909113936682 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/08/06,13.315929166356671 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/07/30,4.347025002299998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/08/06,13.315929166356671 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/07/30,4.347025002299998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/08/30,6.2248424235983375 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/08/22,7.921550000145 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/08/30,6.2248424235983375 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/08/22,7.921550000145 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/10/10,6.734674991220009 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/10/01,3.508053786739164 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/09/24,7.263313256714174 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/10/02,2.6387609374358942 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/10/10,6.734674991220009 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/10/01,3.508053786739164 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/09/24,7.263313256714174 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/10/02,2.6387609374358942 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/11/11,26.94828000939 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/10/26,4.833941671389167 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/11/11,26.94828000939 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/10/26,4.833941671389167 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/11/27,5.032525418261671 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2017/12/29,7.14335207980085 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/01/06,21.71618333328585 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/03/11,21.99022499973752 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/05/30,4.427800880208213 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/07/09,3.8652954549999903 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/06/30,4.059675000434994 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/07/08,3.1493524307692256 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/08/26,7.931099997580015 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/09/03,6.279724999999989 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/08/25,3.883879564999994 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/09/27,3.026493184999998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/12/08,9.558535000072482 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2018/11/22,2.7356999999999982 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/02/10,11.327904167209178 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/03/06,22.26459166666668 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/02/26,6.360037062499998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/04/07,9.111825003997495 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/04/23,15.415766698914192 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/05/08,4.687219552999996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/06/26,15.212100011547507 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/07/04,10.75114167615416 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/07/28,7.428933755729991 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/08/05,12.706570835498324 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/07/27,10.231316672489152 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/08/29,9.5495499999525 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/08/28,4.305187123333325 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/10/08,13.983999999755 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/09/22,11.649000000047508 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/11/09,6.130600390590828 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/10/24,5.535545454999993 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/12/11,2.9929612500000013 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2019/11/25,5.306774249458329 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/03/08,10.347943950914155 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/05/03,16.964433369970855 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/06/04,3.7861000008450008 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/05/26,3.232681819999996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/06/28,2.432300001259998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/07/06,4.248386369999996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/08/07,15.516135001625004 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/07/29,13.47416834795084 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/09/08,8.789833337023316 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/08/30,2.5424250000000006 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/08/23,3.782475000144995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/10/10,5.466082449666663 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2020/12/29,2.882584 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/01/22,22.348225000000006 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/03/03,15.005562499905002 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/04/04,12.09332500039999 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/05/06,11.177691696614165 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/06/07,13.35010000460001 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/06/23,4.475802087704397 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/09/11,11.41044167246415 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/09/02,13.894491674764174 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/08/26,7.096311924871794 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/09/27,5.106300000869996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/11/06,16.746153064009185 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/11/09,14.22759849920002 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/11/22,4.569200000185003 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2021/11/24,5.082418329999999 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/02/26,22.62578333333334 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/03/22,4.561975009999995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/05/09,7.862689393333336 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/05/09,6.5190909099999965 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/05/01,14.465400000799994 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/05/31,4.282393514127382 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/06/10,12.893408333118318 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/06/09,9.335085603940843 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/07/04,8.892650000072504 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/06/29,4.101846966739157 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/07/11,13.550416666666653 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/07/04,11.292825006899996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/06/26,3.3574030333333305 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/08/05,22.210841666714146 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/08/29,4.616075000434993 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/10/09,6.253971213405834 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/10/31,23.54704168506669 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/11/09,3.4275788099999955 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2022/12/02,4.776706929999995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/01/28,3.818399230769233 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/03/09,2.84245625897436 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/04/10,4.273345039999996 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/04/02,7.724057578333332 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/05/09,6.746262487547509 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/04/26,4.29013750331 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/05/31,24.13031666690416 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/05/26,7.057118180430003 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/06/05,3.1375000000000046 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/06/04,22.63925000146251 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/05/28,6.09082273 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/07/07,14.909962500189998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/06/29,12.897179165764184 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/06/21,17.362525000399998 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/08/05,18.78150833333334 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/07/31,9.2910750201675 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/07/31,2.707099246786662 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/07/23,5.905091667094171 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/07/22,3.2702566615384625 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/09/01,16.46897727333334 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/08/27,19.07965000155501 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/09/08,5.673512501684995 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/09/01,10.588951523333316 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/09/28,13.144316666991664 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/10/03,4.0463839663333285 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/10/25,6.919766658346675 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/11/04,13.89179166726666 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/11/03,9.20427196666666 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/10/27,7.683995464999992 +Toronto Reservoir,4147042,-74.84713567376075,41.62994405604925,2023/11/28,3.658275000000004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2014/12/30,11.30602197771584 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/01/23,13.107862501340003 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/01/23,13.107862501340003 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/07,9.412422964829162 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/04/28,10.961902273170011 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/04/29,10.814553333100823 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/07,9.412422964829162 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/04/28,10.961902273170011 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/04/29,10.814553333100823 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/30,7.428633333213348 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/23,8.723339169894171 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/06/07,29.547435417531645 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/06/07,29.02948541762664 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/22,17.564549628261677 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/22,11.127805707287507 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/30,7.428633333213348 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/23,8.723339169894171 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/06/07,29.547435417531645 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/06/07,29.02948541762664 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/22,17.564549628261677 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/05/22,11.127805707287507 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/07/10,19.72770166791169 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/06/24,7.973189590525823 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/07/10,19.72770166791169 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/06/24,7.973189590525823 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/02,8.56431725414 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/07/26,13.681829175731671 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/10,15.05190001735501 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/10,14.868125017602509 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/03,11.759983333405827 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/07/25,16.89829166645166 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/07/25,14.843158333933324 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/02,8.56431725414 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/07/26,13.681829175731671 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/10,15.05190001735501 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/10,14.868125017602509 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/03,11.759983333405827 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/07/25,16.89829166645166 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/07/25,14.843158333933324 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/03,16.44424166793918 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/11,3.037959665000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/11,3.161086165000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/26,3.3486304407692296 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/26,3.3948248115384616 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/03,16.44424166793918 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/11,3.037959665000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/11,3.161086165000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/26,3.3486304407692296 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/08/26,3.3948248115384616 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/10/05,7.295675009185 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/10/06,18.74114791737915 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/27,10.918155481999984 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/27,15.263086370047466 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/10/05,7.295675009185 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/10/06,18.74114791737915 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/27,10.918155481999984 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/09/27,15.263086370047466 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/10/30,9.88593750771 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/10/30,9.88593750771 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/12/09,10.301792423475836 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/11/23,13.881125000142502 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/12/09,10.301792423475836 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2015/11/23,13.881125000142502 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/01/02,8.62114299438834 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/01/02,8.62114299438834 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/01/25,6.985218767420003 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/11,22.206174999110004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/02,2.731844230769235 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/02,2.610950000000005 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/01/25,6.985218767420003 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/11,22.206174999110004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/02,2.731844230769235 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/02,2.610950000000005 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/03/06,8.457262501454984 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/26,10.40310791633417 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/27,11.25713333359584 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/03/06,8.457262501454984 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/26,10.40310791633417 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/02/27,11.25713333359584 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/03/29,9.421045017937496 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/03/22,9.224322085100823 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/03/30,9.86356666586416 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/03/29,9.421045017937496 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/03/22,9.224322085100823 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/03/30,9.86356666586416 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/05/09,8.477916692621664 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/05/09,8.477916692621664 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/05/25,9.208066276407497 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/09,11.781299999927498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/09,12.270824999854996 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/02,15.503108338028332 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/05/25,9.208066276407497 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/09,11.781299999927498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/09,12.270824999854996 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/02,15.503108338028332 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/07/03,10.962612917546677 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/26,9.091054167554171 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/07/04,17.174633336773315 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/25,17.017519444919447 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/25,12.070008333855831 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/07/03,10.962612917546677 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/26,9.091054167554171 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/07/04,17.174633336773315 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/25,17.017519444919447 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/06/25,12.070008333855831 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/04,10.330725000382516 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/05,7.580291666714171 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/07/27,9.005264541999999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/07/27,10.73704091000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/04,10.330725000382516 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/05,7.580291666714171 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/07/27,9.005264541999999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/07/27,10.73704091000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/09/05,15.52622249995252 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/29,8.512236667104172 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/09/06,8.3810500000725 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/28,11.07909167165916 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/28,17.628225009079998 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/09/05,15.52622249995252 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/29,8.512236667104172 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/09/06,8.3810500000725 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/28,11.07909167165916 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/08/28,17.628225009079998 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/07,8.57524166916166 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/09/21,12.32513958540082 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/09/22,15.743011370047473 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/07,8.57524166916166 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/09/21,12.32513958540082 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/09/22,15.743011370047473 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/11/08,14.693925003635018 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/23,11.79295833860333 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/31,17.31745833850331 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/31,18.649725005074973 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/24,4.902757463076916 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/11/08,14.693925003635018 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/23,11.79295833860333 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/31,17.31745833850331 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/31,18.649725005074973 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/10/24,4.902757463076916 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/12/10,8.669765008775009 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/12/02,19.090783373150828 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/12/02,19.34128336389833 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/12/10,8.669765008775009 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/12/02,19.090783373150828 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/12/02,19.34128336389833 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/01/11,9.99179361562611 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/12/27,8.058286363815839 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/01/11,9.99179361562611 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2016/12/27,8.058286363815839 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/01/27,5.4544999975900055 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/04,5.779784314615382 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/04,5.728697776153842 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/01/27,5.4544999975900055 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/04,5.779784314615382 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/04,5.728697776153842 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/28,7.50437292290666 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/21,10.459558333118348 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/03/08,12.537299999905004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/03/08,12.551099999905002 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/20,13.780110439560438 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/20,15.874325000000011 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/28,7.50437292290666 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/21,10.459558333118348 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/03/08,12.537299999905004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/03/08,12.551099999905002 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/20,13.780110439560438 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/02/20,15.874325000000011 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/04/09,10.70963333338084 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/04/09,10.055483333428349 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/04/02,13.107849999857493 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/04/09,10.70963333338084 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/04/09,10.055483333428349 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/04/02,13.107849999857493 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/05/03,9.550558333763346 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/05/11,15.213225000920016 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/05/11,13.759950000920004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/05/03,9.550558333763346 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/05/11,15.213225000920016 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/05/11,13.759950000920004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/06/21,13.783924999452475 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/06/21,13.783924999452475 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/07/31,10.28414242371334 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/07/30,9.892225011499992 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/07/30,15.354875052900018 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/07/31,10.28414242371334 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/07/30,9.892225011499992 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/07/30,15.354875052900018 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/09/08,9.80219583373334 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/09/01,16.104400014182502 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/08/23,4.798242053587498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/08/24,2.719968199999999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/09/08,9.80219583373334 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/09/01,16.104400014182502 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/08/23,4.798242053587498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/08/24,2.719968199999999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/10,8.27479999802 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/03,19.87459168066165 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/09/24,18.936475000189983 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/11,19.821183332523344 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/02,15.189718189999985 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/02,14.501559090047474 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/09/25,8.344266666666668 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/10,8.27479999802 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/03,19.87459168066165 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/09/24,18.936475000189983 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/11,19.821183332523344 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/02,15.189718189999985 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/02,14.501559090047474 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/09/25,8.344266666666668 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/11/11,10.461497916361672 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/27,20.208883345165845 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/11/11,10.461497916361672 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/10/27,20.208883345165845 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/12/06,26.627695833213348 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/11/28,12.55715002363999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2017/12/29,11.9831500002 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/01/31,13.86134711450832 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/03/11,3.005500000000004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/04/28,16.692493337648333 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/04/28,16.981475004509992 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/04/21,9.312841665809165 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/06/08,13.32710501726999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/05/30,10.244512882833344 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/05/30,24.196195833140845 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/05/23,11.226722916619174 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/07/09,7.496553993599165 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/07/02,10.033691667219156 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/07/10,21.05953334070831 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/07/01,5.951534855229169 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/07/01,5.441351521895833 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/08/03,8.701712493057506 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/09/04,17.227225008640016 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/08/26,9.579191674766667 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/09/03,15.842025000190008 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/09/03,15.827308333333342 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/08/27,15.861133333523329 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/10/05,20.971081257042517 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/10/05,19.872742430375844 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/11/07,8.522017511794992 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/12/09,6.88024999957001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/11/22,6.657950384251661 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/11/22,4.852388647142498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/01/10,9.824599554879171 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2018/12/25,12.459030003974998 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/01/26,12.707583333190833 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/02/10,12.862945833143336 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/02/10,16.9428041688267 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/03/06,9.655150000000011 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/03/07,12.32569166745166 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/02/26,12.487458333190832 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/02/26,17.327667423523337 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/02/19,21.67155833333335 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/04/07,10.703962506760012 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/03/30,5.472507580184164 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/03/23,12.827689583760826 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/04/23,8.04253500181498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/06/03,9.8033625545225 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/05/25,11.11984166645168 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/05/26,14.409090838783332 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/06/26,22.60355000000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/07/04,15.440025000000007 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/07/04,12.29418333333333 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/06/27,18.041125002537527 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/08/06,16.390133333285842 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/07/28,12.597600013869991 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/08/05,10.22590227 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/08/05,13.769566666666654 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/07/29,7.316975000095011 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/09/07,10.852558333403328 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/08/29,8.641456665731676 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/08/30,12.762625000237506 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/09/30,12.624749995935003 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/09/23,8.935303333493335 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/10/08,14.079145833213335 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/10/08,11.2509000001675 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/10/01,13.41247500068499 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/09/22,17.75724166666664 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/09/22,20.60099166666664 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/11/10,10.602183332163344 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/11/01,7.179624994705008 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/11/09,8.735704366143349 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/11/09,8.854629364083351 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/11/02,17.94847500000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/10/24,14.525300005607498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/10/24,16.946700001102506 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/12/03,13.192668754214996 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/11/26,6.794960431066667 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/12/11,14.528875000237509 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2019/12/11,14.32355000040501 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/01/05,11.588425002685002 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/01/29,7.113437494430007 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/03/08,7.270043755954989 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/03/01,7.09562875135749 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/02/21,8.775077085905828 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/03/09,11.963441677044177 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/02/22,11.560031250622506 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/04/01,18.273384090237517 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/04/01,18.152075000237517 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/04/25,8.953526281459993 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/05/03,10.049772919789191 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/05/03,9.802100016072512 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/05/27,9.196429215786663 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/06/04,14.749204166476687 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/06/04,14.994691666094184 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/06/28,8.228114598243332 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/06/21,10.97202500021249 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/07/06,7.577922945586667 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/07/06,9.096745008010004 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/06/29,8.741225000407495 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/08/08,15.546291666856671 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/07/30,9.620612500142506 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/07/31,11.20331908199999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/07/22,8.65919166671418 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/07/22,17.72385833342832 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/08/31,6.433795812343338 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/08/24,7.912049027825271 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/09/08,19.21349166685668 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/09/08,19.83625833369085 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/08/23,18.244891666761657 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/08/23,17.517933333380828 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/09/25,7.86582502544 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/10/03,11.5301000000725 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/11/03,7.576950008592486 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/11/28,5.4434024980925 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/12/06,11.190295000547508 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/01/07,11.945259090575 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/12/29,16.56397500019001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2020/12/29,16.407450000190003 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/01/22,8.637049994295005 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/01/23,12.666200000452498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/03/04,9.556683333333348 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/04/05,8.292987510169986 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/03/27,8.225506253749998 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/04/04,10.459064588070827 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/04/04,10.402414587870828 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/05/07,8.396245421909155 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/05/06,13.471745832203338 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/05/06,13.288410415536667 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/05/23,15.830503047303347 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/06/07,8.853008333165828 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/06/07,9.119625000429991 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/05/22,19.140656249740022 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/07/10,10.318964585988338 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/06/24,14.77969166701417 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/08/11,14.294758360595823 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/08/02,5.733692425728339 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/07/26,9.20126666658919 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/08/10,13.43735000354499 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/08/10,14.221425004119988 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/08/03,16.01865001035 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/08/27,8.884775001602502 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/09/11,16.86108333434085 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/09/11,14.585266667389178 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/09/04,4.773338266707495 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/08/26,15.77740833347584 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/08/26,14.91669166666667 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/09/27,21.114550013800013 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/09/27,20.68303334713335 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/10/30,23.64002499999999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/11/09,18.83195833966334 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/11/07,22.037268335348344 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/11/04,20.98295833591835 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/10/29,21.35770909704252 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/10/29,19.81935909704251 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/12/01,10.30029166587667 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/11/22,6.834591658776676 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2021/11/23,21.019999999715 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/01/10,12.502633333533325 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/02/11,13.181041666571664 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/04/08,3.701775000000006 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/03/22,9.25757416671417 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/03/22,9.372531666509174 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/09,8.919689585725838 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/10,11.052308333120834 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/09,12.065543755142496 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/09,11.932375012924997 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/01,8.845610417614175 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/01,12.501775003789998 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/04/24,10.797670007427492 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/06/07,13.28629583333336 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/26,11.4190374991375 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/06/10,16.013150000199992 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/06/10,12.892650000000003 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/06/03,10.026613347115838 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/25,18.06984334025584 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/05/25,17.50130584773084 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/07/11,7.50574166666668 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/06/29,11.857175000047503 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/06/24,10.22491458378583 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/07/04,10.357079187559163 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/07/04,15.015208343723335 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/06/26,13.567083330848345 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/06/26,13.64300833161334 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/08/06,10.204634090000006 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/07/29,10.514337733000009 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/07/28,6.047100000554998 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/07/28,4.020675001279995 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/08/31,2.5473871533333328 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/08/30,17.910650000047486 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/08/29,15.850841671099165 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/08/29,16.086300001249995 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/10/09,18.270358333333345 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/10/09,10.883267423333312 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/10/08,6.824679698739161 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/10/08,4.167859238739166 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/09/23,13.115742423380825 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/11/07,5.268972802714277 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/11/10,21.663416671456684 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/11/09,22.285997919156685 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/11/09,22.47649791915668 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/11/02,7.801485606739159 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/10/24,22.25525000000001 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2022/11/26,14.623050000855 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/02/10,10.167720833238349 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/01/28,16.69322500009502 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/01/28,17.07870000009502 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/02/27,5.194674997375005 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/04/10,17.735434092537517 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/04/10,18.008184092537512 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/04/03,11.35575833314084 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/04/02,9.470097926691668 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/04/02,9.385710426596669 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/03/26,13.7721124999525 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/05/26,10.326375020747497 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/06/05,15.108724999977516 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/06/05,13.714945000177508 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/05/29,9.87525416762166 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/05/28,12.802874999999997 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/05/28,10.041704169156652 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/08,21.957858333333338 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/07,10.031950004844994 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/07,15.389000012392502 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/06/29,5.444333333405834 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/06/29,9.240577564102562 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/06/22,16.471208333518337 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/06/21,17.77855835288335 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/06/21,14.898583338280844 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/08/05,13.51763334121834 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/31,16.53033750009499 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/08/01,7.080724994320005 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/31,8.667725000362498 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/31,3.1987750000000035 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/24,11.182971595939172 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/23,15.318145834220836 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/07/23,18.15518333582333 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/08/22,13.905133333523333 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/09/09,5.039710997425832 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/09/09,4.809385998093332 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/09/02,13.671025000194993 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/09/01,23.77475000459999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/09/01,24.54633334253332 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/10/04,8.664406061666666 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/10/03,14.305132576666663 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/10/03,10.578782576666663 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/10/28,8.92032728999999 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/10/27,12.626550001550006 +Sleepy Hollow Lake,6187646,-73.80688708547059,42.29477663897056,2023/10/27,14.785025001170013 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2014/12/30,3.1422249995825062 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/01/07,13.091400000185 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/01/23,13.214166666666676 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/05/07,6.040956251605003 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/04/28,6.565321331819162 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/04/29,3.8196409100725 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/05/30,6.0885325015475065 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/05/23,5.744525003015002 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/06/07,8.14416894341417 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/05/22,11.94712499998499 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/07/10,4.842050000907497 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/06/24,4.497475001122498 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/08/02,7.84033543013667 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/07/26,7.386606669326666 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/08/10,6.917619723059165 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/08/03,3.472959548144995 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/07/25,5.823225000960003 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/09/03,16.740133332928337 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/09/11,4.854207345384607 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/08/26,4.335195966346154 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/10/06,8.433791861999996 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/09/27,15.72284999999998 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/12/08,8.91384827656451 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/11/30,3.607109000000006 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/11/23,5.836078066666661 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/01/02,12.813261453748607 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2015/12/25,20.017512500285 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/01/25,8.262166726086669 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/02/02,3.046836151538464 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/03/06,9.344192330166068 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/02/26,8.109556253262491 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/03/05,16.983908333618327 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/02/27,5.741721282307688 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/03/29,13.365203674164997 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/03/30,2.9317140066666645 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/05/09,8.113078391916071 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/04/30,8.230774988379997 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/04/23,6.404724999695009 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/05/08,6.560396601742497 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/05/25,14.335716666861654 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/06/09,8.963116666654177 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/06/02,6.668825000522504 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/07/03,10.314708332068331 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/06/26,4.78312500226 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/07/04,2.7386543815384603 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/06/25,6.69466742345334 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/08/04,7.107950005505004 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/08/05,3.478875001134999 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/07/27,2.65300567076923 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/09/05,20.029200000379998 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/08/29,17.46208333333335 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/08/28,6.305266666786666 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/10/07,7.894828030047502 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/09/21,9.963284850047506 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/09/29,16.040883333518334 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/09/22,4.599266821999997 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/11/08,8.792090768072498 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/11/01,7.820425005685011 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/10/23,22.34375000699501 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/10/31,4.017599564615378 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/10/24,2.8009250000000043 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/12/10,7.871084100285002 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/12/02,5.264437392307681 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/01/11,12.70828960865584 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2016/12/27,5.493007553846143 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/02/04,4.133366985576922 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/03/09,9.501663665112504 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/02/28,10.001847333033568 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/02/21,10.746349999307514 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/03/08,3.859171807692308 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/02/20,13.631050000167518 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/04/09,3.459198706666664 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/04/02,4.360306474999992 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/05/27,14.157525000569988 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/07/06,7.22597499258501 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/06/28,5.345704174319163 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/06/21,4.1865727305799965 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/07/31,10.17480666697418 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/07/30,8.22292576063833 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/09/01,13.339691666859174 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/08/23,12.240741666666676 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/08/24,4.888200000407499 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/10/03,3.270066514739164 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/09/24,6.076856056666667 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/10/02,2.8191437615384625 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/09/25,2.7301954799999986 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/11/11,17.15942197396667 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/11/04,9.261149991719996 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/10/27,5.6465327519999935 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/12/06,4.377989583633345 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2017/11/28,4.737706820434995 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/01/31,21.88613333333335 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/04/05,2.6759545000000005 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/04/28,9.897758349908324 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/04/21,6.342906820072496 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/06/07,6.889670826313344 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/06/08,5.409725002627498 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/05/30,15.702825000000011 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/05/23,3.643249999999997 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/07/09,4.365334089999991 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/07/02,2.363274237294168 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/07/10,4.384112556410248 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/07/01,10.02652500023749 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/08/10,8.19852500073749 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/08/03,3.5972213258490484 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/08/02,4.829975001009997 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/09/04,20.369808333055825 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/08/26,6.600162502947488 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/09/03,3.834252279999991 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/08/27,4.668213461683456 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/10/05,3.3011362499999968 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/11/07,15.779545615280826 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/12/09,6.7977249993100095 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/12/01,3.022875000000005 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/11/22,4.8276759976923 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/01/01,5.093961100976904 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2018/12/25,11.650494787034445 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/01/02,17.865691666716668 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/02/10,6.017550000047498 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/03/06,11.477050000385 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/02/26,3.7566955048076944 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/02/19,21.88613333333335 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/04/07,8.86015416872666 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/04/23,6.520586365094999 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/06/03,6.881675000474998 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/05/25,16.989754169041657 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/05/26,3.844816070769225 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/07/05,19.499924998865005 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/06/26,8.002966666786678 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/07/04,11.50038561286082 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/06/27,7.4480439460891645 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/08/06,13.388691666834164 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/07/28,4.567661759841668 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/08/05,10.75190000107748 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/07/29,3.907254499999999 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/09/07,16.43228409 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/08/29,8.34045001526 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/08/22,6.923750005320001 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/08/30,6.216926513380834 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/09/30,6.74632499492001 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/09/23,7.065504166809169 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/10/01,13.897300000284986 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/09/22,3.280693179999996 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/11/01,12.132341673709174 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/11/09,3.768012799999994 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/11/02,6.845750001877484 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/10/24,4.760679540072494 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/11/26,3.6537583335233386 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2019/12/11,7.193769756153836 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/01/29,8.907616678629173 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/03/08,14.463311672684158 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/03/01,9.548788753012488 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/02/21,18.05847916744669 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/03/09,4.794563640072495 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/02/22,18.32171458353333 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/04/01,5.705892426666656 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/04/25,14.021309993075008 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/05/03,3.1359159799999987 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/05/27,4.718181848628216 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/06/04,5.642871892729168 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/06/21,4.711319698405823 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/07/06,4.450825112947735 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/06/29,6.406821974435832 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/08/08,3.877402270072494 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/07/30,15.09618750009501 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/07/31,3.244904549999996 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/08/31,12.433099995852496 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/09/08,4.7437087159708335 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/08/23,3.533706820072496 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/10/11,6.791245821125841 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/09/25,13.576122085585837 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/10/10,3.731809089999995 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/10/03,5.496675000530001 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/11/03,8.347266671199165 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/12/06,5.8395968576923 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/01/07,5.475136023149414 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2020/12/29,6.4598050753846055 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/01/23,14.955724999999978 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/03/04,6.93787499849501 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/03/03,14.10466666657167 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/02/24,21.890349999737516 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/04/05,6.168688642490008 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/03/27,12.64802917256917 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/04/04,12.056675002300016 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/05/07,7.671700000332501 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/04/21,10.633102084513345 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/05/06,4.986992364544997 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/06/07,2.585241703333333 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/07/10,10.819350000140002 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/06/24,2.748434089999998 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/06/23,7.378909854799166 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/08/11,4.377800000765004 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/07/26,10.597150000215 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/08/10,2.815825000000004 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/08/27,2.436099238624168 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/09/11,3.497397744999996 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/09/04,3.596954500000002 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/08/26,8.906075000120005 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/09/27,2.9962751407692263 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/11/06,9.622521862380944 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/10/30,24.44116666666665 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/11/09,4.438261375072495 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/11/07,3.498898597435899 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/11/04,4.239183341666663 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/10/29,12.51555833333333 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/12/09,12.524474999984982 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2021/11/23,5.312559076923069 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/01/10,5.924602455769219 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/02/10,22.137733333333344 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/02/10,22.18061666666668 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/01/26,21.77565833333335 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/02/26,22.314983333333345 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/03/22,3.592373493333338 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/05/09,7.870035603333338 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/05/10,3.1391277999999985 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/05/09,3.8462257606333337 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/05/01,5.023603033643329 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/04/24,4.580954172316663 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/04/23,4.523129170236661 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/06/07,18.336904166786653 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/06/10,7.717130689420006 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/06/03,4.296562123333329 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/05/25,2.980825000409999 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/07/11,2.9517204499999976 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/06/29,3.660573334811663 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/06/24,3.950184089999996 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/07/04,4.860349577469998 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/06/26,6.22493837246488 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/08/02,10.727492423570837 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/08/06,3.375919823333331 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/07/29,3.527597839999996 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/07/28,9.2763000006975 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/08/30,3.443000713333333 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/08/29,4.583775000264991 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/10/09,14.335300004789987 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/10/09,13.956999999999972 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/10/08,11.313696966666662 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/09/30,19.87539999954001 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/09/23,4.690900009999994 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/09/22,21.966733333333345 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/11/07,6.7107499995925055 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/10/26,8.436476529482766 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/11/10,4.029488566666664 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/11/09,3.114153739999998 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/11/02,2.7078174999999987 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/10/25,21.693341665546683 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/11/24,13.302739389738116 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2022/11/26,2.885357716666667 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/02/10,8.248895828983338 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/01/28,5.555210583333328 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/02/27,15.947360502221676 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/03/09,14.828150000859983 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/04/11,4.658783333528333 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/04/10,4.024576390144994 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/04/03,3.9201113600724953 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/04/02,13.95403337498084 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/03/26,3.744094230769232 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/05/26,3.44371060688416 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/06/06,13.541391666021664 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/06/05,17.20272500028501 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/05/29,5.398225000240001 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/05/28,4.217874999999995 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/06/21,5.147239884247381 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/07/31,2.607227875391668 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/08/09,15.917425000287505 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/08/01,2.993022638333331 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/07/31,5.768975000357505 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/07/24,4.514384100529994 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/07/23,4.506442426739159 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/08/22,10.55768277801527 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/09/09,8.998583333428316 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/09/02,3.658206820217495 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/09/01,3.779461389999996 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/10/10,6.211624994920011 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/10/04,2.24621823 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/10/03,4.282099107999998 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/10/28,4.290086370072494 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/10/27,14.523083333733323 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/11/29,4.219454172521665 +Copake Lake,6187894,-73.59548937463714,42.14370299444524,2023/11/28,18.68695000037 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2014/12/29,3.0501500000000075 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/01/22,9.780366666666684 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/01/22,9.780366666666684 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/03/11,14.147464586973324 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/03/11,14.147464586973324 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/04/04,17.130517426060816 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/04/04,17.130517426060816 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/04/28,14.330060499496676 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/04/28,14.330060499496676 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/05/30,6.084572161102503 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/06/07,8.839150000382503 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/05/30,6.084572161102503 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/06/07,8.839150000382503 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/08/02,4.143687115217493 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/08/10,7.457827567120052 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/07/25,4.357778231730766 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/08/02,4.143687115217493 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/08/10,7.457827567120052 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/07/25,4.357778231730766 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/09/03,9.787314616933331 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/09/11,2.8990750000000047 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/08/26,5.538761355769221 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/09/03,9.787314616933331 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/09/11,2.8990750000000047 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/08/26,5.538761355769221 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/10/05,9.912591667119154 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/10/05,9.912591667119154 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/11/30,2.9081522500000045 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2015/11/30,2.9081522500000045 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/02/10,5.505970830015844 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/01/25,10.489820836210832 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/02/02,6.69854169615384 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/02/10,5.505970830015844 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/01/25,10.489820836210832 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/02/02,6.69854169615384 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/02/26,7.061803033256666 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/02/26,7.061803033256666 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/03/29,8.5659249989225 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/03/29,8.5659249989225 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/04/30,5.30284711275929 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/05/08,3.698469230769232 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/04/22,7.562203066739167 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/04/30,5.30284711275929 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/05/08,3.698469230769232 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/04/22,7.562203066739167 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/06/09,8.215974246848337 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/06/09,8.215974246848337 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/07/03,4.167680704173214 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/06/25,5.7215687156410215 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/07/03,4.167680704173214 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/06/25,5.7215687156410215 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/08/04,3.2664030234783303 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/07/27,6.170376861721608 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/08/04,3.2664030234783303 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/07/27,6.170376861721608 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/09/05,19.835029168104185 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/08/28,4.184950049999999 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/09/05,19.835029168104185 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/08/28,4.184950049999999 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/10/07,5.559875801047616 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/09/21,3.5045371234058296 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/10/07,5.559875801047616 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/09/21,3.5045371234058296 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/11/08,4.012326908157499 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/10/23,23.68304521054862 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/10/31,5.208128747307685 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/11/08,4.012326908157499 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/10/23,23.68304521054862 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/10/31,5.208128747307685 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/12/10,9.733413650277509 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2016/12/10,9.733413650277509 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/01/11,12.883249028490264 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/01/11,12.883249028490264 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/02/04,6.671712313003652 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/02/04,6.671712313003652 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/03/08,2.853609117307692 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/02/20,7.361723974358962 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/03/08,2.853609117307692 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/02/20,7.361723974358962 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/04/09,3.507269646153846 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/04/09,3.507269646153846 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/05/03,2.941267618354168 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/05/03,2.941267618354168 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/05/27,11.764500000000004 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/05/27,11.764500000000004 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/06/28,3.5299450430769226 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/06/28,3.5299450430769226 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/07/30,3.4916028199999984 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/07/30,3.4916028199999984 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/10/10,6.774100000332502 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/09/24,3.107114393478334 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/10/02,5.518158262820517 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/10/10,6.774100000332502 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/09/24,3.107114393478334 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/10/02,5.518158262820517 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/11/11,16.27333636729999 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/10/26,8.416549993817505 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/11/11,16.27333636729999 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/10/26,8.416549993817505 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2017/12/29,5.825975000395008 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/01/06,3.6630919855769206 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/03/11,4.414761389999998 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/04/28,4.09071796153846 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/05/30,3.5623500000000066 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/07/09,8.77920000249 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/08/10,11.223600044965002 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/08/26,3.6806500028225 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/09/03,3.848623407692307 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/10/05,3.100942608974358 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/12/08,13.359075001047511 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/11/22,6.847020565641023 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2018/12/24,5.449030897692305 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/02/26,15.296399999905004 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/04/07,3.557416665986673 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/04/23,11.84952803454167 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/05/25,4.224544296303332 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/06/02,10.082175000217491 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/06/26,4.289350000144999 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/07/04,4.142281857179481 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/07/28,5.813018180167497 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/08/05,2.932268299999998 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/08/29,11.485903332640838 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/10/08,21.818962501094997 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/09/22,6.581771391999995 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/11/01,15.31227869581 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/11/09,4.763421978714164 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/10/24,5.127794850333329 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/12/03,9.941616673934156 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2019/12/11,4.442650000119994 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/03/08,11.156591680561649 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/02/21,5.753371215120004 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/03/24,11.109682504772504 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/04/01,3.5015500044871777 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/04/25,4.502500000555005 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/05/03,2.78714660076923 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/05/27,4.347099999787489 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/06/04,4.067498612307688 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/07/06,3.3592499999999954 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/07/22,3.429756749999998 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/09/08,4.172381799999994 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/08/23,4.5235308076923015 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/10/10,3.658161399999997 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/11/03,14.151116667064166 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/01/06,6.241949999910007 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2020/12/29,6.788125000507497 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/01/30,15.55838333596581 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/03/04,14.104989584253367 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/03/03,14.110116666571685 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/03/27,10.37414166648416 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/04/04,14.123166676341668 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/05/06,13.33076668545166 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/06/07,6.978247285256409 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/07/09,4.7436357177907125 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/06/23,2.562883750000003 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/08/02,10.67527500206 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/09/11,3.178518239999997 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/08/26,8.624987883380834 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/09/27,15.861125000569997 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/11/06,16.86070653051027 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/11/09,4.667281820072496 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/11/04,6.8819705652014544 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2021/11/22,14.542050023000009 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/02/10,10.259774999857514 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/02/26,20.847208333190856 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/03/22,2.555219006666668 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/05/09,9.489677777730266 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/05/09,10.067100000047496 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/05/01,5.940508333718332 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/05/26,8.522499997917503 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/05/25,7.105575000892495 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/07/11,3.0281378767391653 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/06/29,3.275512123550833 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/07/04,7.035529193368335 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/06/26,4.6910904346153774 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/08/02,9.466681974400837 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/07/28,9.37816249938001 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/08/31,3.643289333333334 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/08/29,3.416859141538459 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/10/09,9.781402165714288 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/10/08,3.3483789596153843 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/09/30,18.19573333333333 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/10/26,9.5139000082875 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2022/11/09,5.69694008166666 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/01/28,3.6225482230769206 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/03/09,4.7959840000000025 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/03/01,3.030623463380833 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/04/10,2.855146311666665 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/04/02,3.182556076666663 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/05/26,7.078329540119999 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/06/05,4.0610155301266575 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/05/28,4.232467082307687 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/07/07,6.925253331131728 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/06/29,2.631104500047501 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/06/21,4.995737877536662 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/08/05,8.29107111134861 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/07/31,7.2432674234783345 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/08/08,4.322846332307685 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/07/31,5.020730657051283 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/07/23,4.364821966739167 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/09/01,5.960973385786781 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/08/22,4.89027566578678 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/09/01,4.548438903846154 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/10/11,9.195568200047502 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/10/03,7.160982731999987 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/10/25,23.689937518352497 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/10/27,2.91540991826923 +Ashokan Reservoir,6191412,-74.1521892138223,41.976142882042055,2023/11/28,17.392258333573324 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2014/12/30,5.968899994920011 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/01/07,2.4529067500000035 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2014/12/29,21.68839166670166 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/02/24,21.77565833333335 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/04/05,11.602891667286691 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/04/04,5.171538649999993 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/05/07,10.618650000000011 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/04/28,7.171418332380831 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/04/21,15.01661138954002 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/04/29,7.765481822299993 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/05/30,8.9665374965 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/05/23,7.455300000572503 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/06/07,8.760733333620811 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/05/22,4.965575000289995 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/07/02,3.48115225 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/08/02,14.88294168276668 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/08/10,13.57172503802252 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/08/03,5.084177270289992 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/07/25,5.812779549999998 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/09/03,12.58573333560833 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/08/27,3.2194901817391632 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/08/26,3.946513644999994 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/10/06,4.026572865705127 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/09/27,5.854282751999993 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/10/30,7.167569698998324 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/10/29,6.234864631999994 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/12/08,6.776749999570009 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2015/11/23,9.004874989999989 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/01/02,14.955098199381943 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/01/25,6.869391659639173 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/02/11,4.303150000192493 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/02/02,11.51708178999999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/03/06,14.858279863506098 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/02/26,18.20603182920001 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/02/27,11.182399969999988 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/03/29,16.72885839083335 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/03/22,13.546262510787498 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/04/06,15.778115213180849 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/03/30,7.24172197666665 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/05/09,12.02638333312332 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/04/30,15.451900009042518 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/05/08,13.656900000199984 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/05/25,17.901641666761677 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/06/02,5.949375000522501 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/07/03,11.566599999364998 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/06/26,5.586018180287497 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/07/04,5.537612243589737 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/06/25,3.895110130769224 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/08/04,6.358465155145 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/07/28,14.178496250070005 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/08/05,3.92842659333333 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/07/27,4.088968119999995 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/08/29,8.133365153405839 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/08/28,3.472169170769225 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/10/07,3.759168943333328 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/09/22,4.493048832051279 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/11/08,9.539952141333323 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/11/01,10.693811125053596 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/10/23,9.822937775714282 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/10/31,5.240688138666664 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/10/24,3.0020022500000016 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/12/10,20.884312500560014 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/12/02,5.061621346666665 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/01/11,13.893233850548622 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2016/12/26,11.515037529329993 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/02/04,4.181065889999998 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/01/28,20.68536666662166 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/03/09,17.177241685351664 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/02/28,8.159399996520012 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/02/21,8.185879160236672 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/03/08,7.341928786666659 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/02/20,3.192256909615385 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/04/09,4.153665831666664 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/04/02,8.786520449999989 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/05/04,3.6071000002175 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/05/27,13.780650000399987 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/06/28,13.61677292574418 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/07/31,3.983920470217496 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/07/30,7.247225745184169 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/09/08,14.113025000085004 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/09/01,3.825236371956658 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/08/23,3.888318299999991 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/09/09,3.012019230769232 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/08/31,2.6621294999999985 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/08/24,4.991324999999998 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/10/10,9.724956258217484 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/10/03,3.744864393550829 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/09/24,2.858355908144999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/10/02,2.623752091538459 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/09/25,5.150269548072495 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/11/11,9.595745321333323 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/10/27,2.8356927916666668 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/11/27,12.785738659329988 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/11/28,9.47134316999999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2017/12/29,13.791933622923604 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/02/08,8.354399999695005 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/03/03,3.103522916476673 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/03/11,5.470104185897427 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/04/05,6.429108347228325 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/05/07,17.02265833353333 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/04/28,26.07670421515666 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/04/21,7.420265910094982 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/05/23,4.9121545000000015 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/07/09,4.489674979999995 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/07/02,4.393909090622498 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/07/10,5.918196362 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/06/24,6.372775000772496 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/08/10,5.4918500028275 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/08/02,2.9718045000000006 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/09/04,20.624675001330036 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/08/26,10.890999168704155 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/09/03,12.565022730000004 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/09/27,13.744320833285837 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/10/05,6.85687767253749 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/11/07,7.6722734900725 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/10/30,3.250156895769228 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/12/09,4.876770084904997 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/12/08,19.447583333718327 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/12/01,6.358889783864997 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/11/22,6.18779176199999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/01/01,4.900873641999993 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2018/12/25,7.086499994305008 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/01/26,11.983581559471665 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/02/10,14.319218752155 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/01/25,9.786166677634167 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/03/06,8.768222118378322 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/03/07,9.686742532497693 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/02/19,2.7214987807692324 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/04/07,5.284871957123337 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/04/23,14.679583336065816 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/04/24,6.589024999999992 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/06/03,16.482374999952498 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/05/25,21.02601250076001 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/06/02,10.077075000217496 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/05/26,5.384108335728331 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/07/05,5.673491668564172 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/06/26,6.163358338150839 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/07/04,4.750368846666661 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/06/27,13.304908355255854 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/07/28,6.52235000057501 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/08/05,7.65520833407084 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/07/29,8.042742426085841 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/09/07,4.028240147101662 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/08/29,10.254437499905007 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/08/22,8.528274999952497 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/08/30,6.784149999999995 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/09/30,5.429050000047503 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/09/23,8.891083333478335 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/09/22,7.370091821999995 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/11/10,7.052958335918322 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/11/01,19.789666675866687 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/11/09,8.011000018400003 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/11/02,6.507439531999994 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/10/24,3.4232405899999963 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/11/26,12.64017319693944 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2019/11/25,15.862347732300003 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/01/05,3.5454750000724995 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/01/29,12.973031532810271 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/03/08,7.386474993905007 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/03/01,14.47586041925166 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/02/21,23.587308351828327 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/03/09,16.678633349480837 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/02/29,14.394049999999991 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/02/22,14.913225768166663 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/04/02,15.88235833614835 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/03/24,14.65730625248998 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/04/01,7.382375000837501 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/04/25,9.36932499644 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/05/03,15.8807409123 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/06/04,5.059001583882496 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/06/28,6.639179587550834 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/06/21,4.318209089999991 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/07/06,3.071302664102561 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/08/08,2.8346215898325 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/08/07,12.64987499998498 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/09/09,15.956974999999996 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/08/24,12.2664499994475 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/09/08,15.804162500452495 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/09/25,5.952000000139999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/10/10,7.821375000095007 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/10/03,5.079134089999993 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/11/03,9.261524168919154 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/11/28,5.804631448696669 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/12/06,5.947678110333327 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/01/06,6.984724996685012 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/01/07,3.836182977435894 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/12/29,4.621630799999998 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2020/12/22,9.43558749518499 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/01/22,26.21649586332832 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/01/30,5.428737494871782 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/03/11,11.627691666286683 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/03/03,15.397245833238337 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/04/05,11.83785624841 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/03/27,22.241275018495003 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/04/04,4.799565536670832 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/05/07,4.633421931027376 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/05/06,9.72667500042751 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/05/23,17.10657501844752 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/06/07,10.780339270825005 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/06/24,4.377161360217496 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/06/23,8.232599995874992 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/08/11,9.361500022937506 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/08/02,14.650025106775006 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/07/26,7.095200004500008 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/09/03,4.745549113940707 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/08/27,15.205395832950837 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/09/11,9.179325001389984 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/09/04,7.025374999999998 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/08/26,12.756950000047498 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/11/06,11.407745349047609 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/11/09,9.308732429666662 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/11/07,2.8286137490384613 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/11/04,2.377939537499997 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/10/22,2.656102250000002 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/12/01,6.21049999258501 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2021/11/23,2.889901075 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/01/10,4.440365949999995 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/02/10,11.025625001515031 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/02/11,5.605279939808328 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/02/10,11.968480833595844 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/02/26,17.13664583811333 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/02/27,14.188385420374164 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/02/26,4.089421254807693 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/03/22,7.614903786666655 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/05/09,6.003063643380836 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/05/10,7.75908259007249 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/05/09,7.463774311924999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/05/01,4.93263333166666 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/04/23,15.69643337018085 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/06/03,3.1464272500000066 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/05/25,6.695375000405005 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/07/11,3.4702522703624963 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/06/29,3.6290824247391633 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/07/04,7.486882500237504 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/06/26,5.079302580444165 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/07/28,3.745750000762501 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/08/06,8.076254166811665 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/07/29,9.74782500028999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/08/31,10.713770460000005 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/08/30,7.997096371999996 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/10/09,6.7318174234058406 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/10/09,3.03637495 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/10/08,3.250421199999999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/09/23,4.518150059999999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/11/07,8.751316682346664 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/10/26,6.087474997975009 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/11/10,3.549841024999997 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/11/09,4.718733410333328 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/11/02,7.618606046739157 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/10/25,12.132224999969994 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/11/29,6.909549999280009 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/11/24,11.080735419206668 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/12/04,23.71026667835667 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/11/26,10.876122719999994 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2022/12/27,5.819818941151668 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/02/10,12.535688649200004 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/02/05,4.408872751909169 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/02/06,18.3643000376075 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/01/28,10.321369686666662 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/02/27,9.270008335435843 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/02/22,6.645835833335835 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/03/09,7.214455691962497 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/04/11,9.210791675191656 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/04/10,4.648185016999994 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/04/03,3.299234491666664 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/04/02,6.893687130280003 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/03/26,8.194824236666655 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/05/05,3.556746006538458 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/06/07,11.935300000095 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/06/06,12.673887499570007 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/05/29,8.999916668104156 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/05/28,4.447584480538324 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/07/08,9.242244207948715 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/07/31,8.368226513333335 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/08/09,15.0942750001425 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/08/08,3.017652250000004 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/08/01,3.638320549999995 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/07/31,6.418999997782506 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/07/23,12.10622499956749 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/08/27,8.21210227338084 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/08/22,8.053125000357499 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/09/02,9.87325000004748 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/09/01,3.946189710769228 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/10/10,17.407649999999993 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/10/04,2.4984545999999987 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/10/03,6.49246226699999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/11/06,4.088649271666661 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/11/05,2.8037267500000023 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/10/28,2.808987839999999 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/11/29,4.607430309291659 +Bog Brook Reservoir,6224754,-73.58564182191992,41.41598119457544,2023/11/28,16.536068189599984 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2014/12/30,6.225524997760009 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/01/07,3.094800000000004 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2014/12/29,5.7238420504525 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/02/24,21.77565833333335 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/02/24,21.77565833333335 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/04/05,12.053939585635852 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/04/05,12.053939585635852 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/05/07,17.10178335863336 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/04/28,7.6325833331883315 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/04/29,8.184145462299988 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/05/07,17.10178335863336 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/04/28,7.6325833331883315 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/04/29,8.184145462299988 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/05/30,12.365875001882502 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/05/23,15.772333349528356 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/06/07,18.996891666979163 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/05/22,4.805879232955831 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/05/30,12.365875001882502 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/05/23,15.772333349528356 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/06/07,18.996891666979163 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/05/22,4.805879232955831 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/06/24,10.627507576714168 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/07/02,15.332104167426648 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/06/24,10.627507576714168 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/07/02,15.332104167426648 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/02,12.994658353315838 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/07/26,7.438685415051682 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/10,16.037460987421696 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/03,9.109833333333349 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/07/25,12.529250756666654 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/02,12.994658353315838 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/07/26,7.438685415051682 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/10,16.037460987421696 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/03,9.109833333333349 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/07/25,12.529250756666654 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/09/03,12.824516674571674 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/27,3.88900151348084 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/09/11,2.6860250000000034 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/26,15.01075001380002 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/09/03,12.824516674571674 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/27,3.88900151348084 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/09/11,2.6860250000000034 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/08/26,15.01075001380002 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/10/05,7.033174995395009 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/10/06,6.479962221999992 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/09/27,2.122326987499999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/10/05,7.033174995395009 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/10/06,6.479962221999992 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/09/27,2.122326987499999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/10/30,13.154961379037507 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/10/29,5.570215919999993 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/10/30,13.154961379037507 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/10/29,5.570215919999993 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/12/08,24.09857291823167 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/11/23,7.02191688199999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/12/08,24.09857291823167 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2015/11/23,7.02191688199999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/01/02,14.939000009249996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/01/02,14.939000009249996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/01/25,15.217904585115855 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/02/11,13.378324999984994 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/02/02,5.503525816666663 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/01/25,15.217904585115855 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/02/11,13.378324999984994 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/02/02,5.503525816666663 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/03/06,11.103625010382505 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/02/26,28.16275834286581 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/02/27,6.406655620769223 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/03/06,11.103625010382505 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/02/26,28.16275834286581 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/02/27,6.406655620769223 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/03/29,8.57611440205834 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/03/22,13.380179166119174 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/04/06,12.120408348898335 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/03/30,12.55388409 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/03/29,8.57611440205834 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/03/22,13.380179166119174 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/04/06,12.120408348898335 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/03/30,12.55388409 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/05/09,6.332691668486675 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/04/30,13.461108335265845 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/05/09,6.332691668486675 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/04/30,13.461108335265845 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/05/25,23.68376666666667 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/06/09,21.29005000135501 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/06/02,5.663275000965004 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/05/25,23.68376666666667 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/06/09,21.29005000135501 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/06/02,5.663275000965004 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/07/03,10.357383327650837 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/06/26,9.277841666834169 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/07/04,14.217058338313327 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/06/25,9.105342423428342 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/07/03,10.357383327650837 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/06/26,9.277841666834169 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/07/04,14.217058338313327 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/06/25,9.105342423428342 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/08/04,9.527104181695837 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/07/28,9.306299998875003 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/08/05,8.757980908072494 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/07/27,3.677413167435896 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/08/04,9.527104181695837 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/07/28,9.306299998875003 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/08/05,8.757980908072494 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/07/27,3.677413167435896 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/08/29,6.2079250060675015 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/08/28,6.189566666714168 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/08/29,6.2079250060675015 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/08/28,6.189566666714168 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/10/07,9.79478015133332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/09/22,7.733419081999994 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/10/07,9.79478015133332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/09/22,7.733419081999994 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/11/08,10.853633187999996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/11/01,10.411802286642486 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/10/23,22.10123864230001 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/10/31,6.787656829999996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/11/08,10.853633187999996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/11/01,10.411802286642486 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/10/23,22.10123864230001 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/10/31,6.787656829999996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/12/10,6.5696999949200094 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/12/02,13.447229549999983 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/12/10,6.5696999949200094 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/12/02,13.447229549999983 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/01/11,12.281349762753605 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/12/26,4.702662705459165 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/01/11,12.281349762753605 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2016/12/26,4.702662705459165 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/02/04,5.815138068666665 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/02/04,5.815138068666665 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/03/09,12.359556084128332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/02/28,12.04110417148417 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/02/21,7.982004160006676 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/03/08,4.980817638666663 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/02/20,3.1571073423076923 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/03/09,12.359556084128332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/02/28,12.04110417148417 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/02/21,7.982004160006676 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/03/08,4.980817638666663 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/02/20,3.1571073423076923 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/04/09,9.039450020747488 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/04/02,9.30788862999999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/04/09,9.039450020747488 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/04/02,9.30788862999999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/05/04,6.329131819999999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/05/04,6.329131819999999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/05/27,13.648174999999988 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/05/27,13.648174999999988 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/06/28,5.610104171776661 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/06/28,5.610104171776661 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/07/31,11.613974999240009 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/07/30,5.10432548649333 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/07/31,11.613974999240009 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/07/30,5.10432548649333 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/08,4.557899995082503 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/01,4.051911371956658 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/08/23,12.584275000000003 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/09,3.360550000072493 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/08/31,8.753516669229173 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/08/24,12.987166669109165 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/08,4.557899995082503 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/01,4.051911371956658 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/08/23,12.584275000000003 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/09,3.360550000072493 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/08/31,8.753516669229173 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/08/24,12.987166669109165 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/10/10,9.2502500024925 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/10/03,3.520730303478332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/24,9.902846210047503 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/10/02,4.454442892769227 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/25,4.670647730072496 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/10/10,9.2502500024925 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/10/03,3.520730303478332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/24,9.902846210047503 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/10/02,4.454442892769227 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/09/25,4.670647730072496 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/11/11,20.953381833800027 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/11/03,20.503908333485832 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/10/27,6.046962321999996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/11/11,20.953381833800027 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/11/03,20.503908333485832 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/10/27,6.046962321999996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/11/27,19.97619851905668 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/11/28,10.04029620333332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2017/12/29,13.340128618281106 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/03/03,12.697650003855022 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/03/11,5.984275749999992 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/04/05,22.18281666705168 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/05/07,19.05091894166416 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/04/28,20.040783381370854 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/04/21,10.84398107488082 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/05/23,4.927375001279995 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/07/09,17.572100013847525 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/07/02,4.365383334330834 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/07/10,14.64732348666665 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/08/10,22.799608332950843 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/08/03,12.334275000475008 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/08/02,3.309258999999999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/09/04,12.706675000142502 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/08/26,12.26605417816665 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/09/03,10.739708333380843 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/09/27,14.922225006899987 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/10/05,21.21575000073752 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/11/07,9.462529550047504 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/10/30,3.967125796666662 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/12/09,7.4296761326575 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/12/08,2.967725000000008 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/12/01,6.265854170281655 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/11/22,8.318106839999993 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/01/01,11.74560835185333 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2018/12/25,4.436508346904169 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/01/09,3.152000000000009 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/01/26,14.163591782034173 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/02/10,12.782802094993327 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/01/25,14.994918182395 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/03/06,7.124200004869997 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/03/07,6.688267664615381 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/02/26,18.139624999999988 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/02/19,3.836945798076928 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/04/07,5.3702197637844025 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/03/30,5.514080695270833 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/05/02,18.91338750142502 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/04/23,16.86033334469334 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/04/24,6.529974999999983 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/06/02,14.748583333303316 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/05/26,2.658502250047502 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/07/05,6.243129168769168 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/06/26,4.7104248731598775 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/07/04,18.473325697504432 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/06/27,14.050209701405812 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/07/28,22.28029166666668 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/08/05,19.407625010587527 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/07/29,18.64441458606083 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/09/07,6.788903030072507 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/08/29,23.680958333333344 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/08/22,5.732616667024171 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/08/30,8.92900530901418 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/09/30,6.120208338878335 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/09/23,7.450204169109179 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/09/22,4.583573662072495 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/11/10,8.310470002442488 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/11/01,8.108867813039168 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/11/09,8.099474999999991 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/11/02,7.96463347533332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/10/24,9.66678408999999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/11/26,13.180140845268332 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2019/11/25,8.875559099999995 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/01/29,12.273033338363328 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/03/08,7.609224995410008 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/03/01,14.46390416925166 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/02/21,17.47928337248084 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/03/09,16.204500032390005 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/02/22,9.598711359999983 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/04/02,12.339138668999995 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/03/24,20.33208752295253 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/04/10,9.72748334952832 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/04/01,19.822666667046672 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/04/25,10.307110418181669 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/05/03,5.934897730047489 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/06/04,5.726625433285001 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/06/28,8.464512497250018 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/06/21,5.826600001965001 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/07/06,14.471075002537493 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/06/29,3.1654772500000017 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/08/08,4.510376513385837 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/09/09,17.514037499617494 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/08/24,20.295329166714165 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/09/08,5.454199248210837 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/09/25,6.699562500497508 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/10/10,23.99975833342832 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/10/03,12.079482701999977 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/11/03,7.444199996700012 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/11/28,5.0985909123000015 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/12/06,5.833066696666663 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/01/06,22.483233335893345 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/01/07,5.6958394866666655 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/12/29,5.529950731666663 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2020/12/22,3.0328500000000065 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/01/22,13.530362519195 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/01/30,4.003351971153845 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/01/23,22.628691669516662 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/03/11,10.561458332810854 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/04/05,9.891909842021072 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/03/27,19.13553342538084 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/04/04,17.300472315727497 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/05/07,4.205545946756546 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/05/06,8.251024996557511 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/06/08,21.8240333333333 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/05/23,15.327808351300844 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/06/07,8.63637273234751 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/06/24,4.679158333695821 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/06/23,11.92625000868501 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/08/11,22.84080834082835 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/08/02,13.042450002292492 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/07/26,15.69337500691502 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/09/03,7.432640910435005 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/08/27,5.1338401555283335 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/09/11,9.44803333364832 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/09/04,21.201808333333343 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/08/26,13.74222500019 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/09/27,12.167833335680832 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/11/06,11.317664289047617 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/11/09,16.00415379730002 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/11/07,2.236801562499998 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/11/04,3.410790114999997 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/10/22,4.889482964358329 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2021/11/23,3.7125659566666616 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/01/10,3.261600000000007 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/02/10,13.890281254149995 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/02/10,13.538822916904175 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/04/08,4.245645390585317 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/03/22,8.039174999999982 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/05/09,6.755264399999995 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/05/10,6.327464403333322 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/05/09,7.425988287593331 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/05/01,18.38518336323336 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/04/24,13.909125000692486 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/04/23,6.958497729999988 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/06/07,12.476399997579996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/05/25,10.700616670189152 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/07/11,6.847041666856671 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/06/29,11.177807953380832 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/06/24,9.869724984229991 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/07/04,6.1722500000725145 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/06/26,11.41770000006 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/08/02,18.20328333333333 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/07/28,9.470024999790004 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/07/29,11.794758333365818 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/08/31,8.440575000142506 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/09/07,11.990116663614158 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/08/30,4.509868229999998 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/10/09,16.65806060666669 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/10/09,3.651417199999996 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/10/08,3.1801295 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/09/23,4.041735071999999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/11/07,13.691500045365007 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/10/26,24.44116666666665 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/11/10,2.8497427500000008 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/11/09,5.209047659999995 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/11/02,4.650169101999997 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/11/24,8.057222779197769 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/12/04,8.838576521666663 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/11/26,6.147243856666657 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/12/28,8.245308334615826 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2022/12/27,5.776715912447502 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/02/10,17.508345852260835 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/02/05,7.5128793874468975 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/02/06,18.51050836788084 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/01/28,15.044107552394989 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/02/27,11.157937503065003 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/02/22,5.107691678596903 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/03/09,9.979341673661656 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/04/11,4.905502293858331 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/04/10,4.612711443333331 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/04/03,4.725623516666665 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/04/02,9.913766668581667 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/03/26,9.273174236666652 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/06/07,11.1870500000475 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/06/06,9.366187499187513 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/06/05,12.356714586125834 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/05/29,24.47318333802833 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/05/28,12.682752095055848 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/07/08,7.442103122307686 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/07/07,6.910700000507497 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/06/29,7.658925000217498 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/07/31,9.611738256666673 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/08/09,17.96883333572834 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/08/01,13.976293942347514 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/07/31,16.176159722483334 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/07/23,11.862708333428325 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/08/27,5.83519318 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/08/22,9.731300001914995 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/09/02,3.1162741099999964 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/09/01,5.387079242769229 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/10/10,5.057721664971673 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/10/11,4.248377250554998 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/10/04,3.7733538167391663 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/10/03,11.014131839999989 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/11/06,4.050249271666661 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/11/05,2.6999360400000008 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/10/28,8.060886369999999 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/11/29,5.69165924866666 +Middle Branch Reservoir,6224794,-73.64337660690086,41.40331431396453,2023/11/28,17.463199999715002 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2014/12/30,8.07745833333335 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/01/07,2.792975000000004 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2014/12/29,13.658541666636658 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/04/04,14.013657514237494 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/04/04,14.013657514237494 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/05/07,8.892391666141666 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/04/28,7.598917947937728 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/04/21,3.2793666664616694 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/04/29,6.520822729999996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/05/07,8.892391666141666 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/04/28,7.598917947937728 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/04/21,3.2793666664616694 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/04/29,6.520822729999996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/06/08,9.776458338693352 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/05/30,18.77875416671418 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/05/23,8.439060603695832 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/06/07,4.229600398582498 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/05/22,5.823321584955003 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/06/08,9.776458338693352 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/05/30,18.77875416671418 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/05/23,8.439060603695832 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/06/07,4.229600398582498 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/05/22,5.823321584955003 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/07/10,13.3024212497625 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/07/01,12.70065834108084 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/06/24,3.032914409275831 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/07/10,13.3024212497625 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/07/01,12.70065834108084 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/06/24,3.032914409275831 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/08/02,6.075250000072512 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/08/03,3.6728356167391634 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/07/25,5.22245909 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/08/02,6.075250000072512 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/08/03,3.6728356167391634 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/07/25,5.22245909 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/09/03,13.207875004884997 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/08/27,2.8440500012349985 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/08/26,3.411293948333329 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/09/03,13.207875004884997 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/08/27,2.8440500012349985 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/08/26,3.411293948333329 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/10/05,7.973240146666668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/10/06,14.744733332903316 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/09/27,3.800429170489164 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/10/05,7.973240146666668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/10/06,14.744733332903316 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/09/27,3.800429170489164 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/10/30,12.511869714670835 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/10/29,7.146575000072499 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/10/30,12.511869714670835 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/10/29,7.146575000072499 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/11/23,3.0749002307692304 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/11/23,3.0749002307692304 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/01/02,7.181591660726675 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/12/25,4.440350005217495 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/01/02,7.181591660726675 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2015/12/25,4.440350005217495 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/10,8.087075000282512 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/01/25,6.190413826291673 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/11,3.011975 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/02,3.650602199999998 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/10,8.087075000282512 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/01/25,6.190413826291673 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/11,3.011975 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/02,3.650602199999998 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/03/06,5.228941673643339 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/26,4.122982548333333 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/27,3.285930656666664 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/03/06,5.228941673643339 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/26,4.122982548333333 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/02/27,3.285930656666664 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/03/29,11.66797502503752 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/03/22,10.819714589943334 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/04/06,2.8434884933333326 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/03/30,3.550955750769225 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/03/29,11.66797502503752 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/03/22,10.819714589943334 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/04/06,2.8434884933333326 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/03/30,3.550955750769225 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/05/09,9.531841669691673 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/04/30,5.928999999700004 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/05/08,7.058406828087493 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/05/09,9.531841669691673 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/04/30,5.928999999700004 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/05/08,7.058406828087493 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/05/25,11.814024999904994 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/06/09,7.4407499976125075 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/05/25,11.814024999904994 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/06/09,7.4407499976125075 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/07/03,6.653063103075834 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/06/26,7.278184092825012 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/07/04,3.637924999999999 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/06/25,4.8017727299999935 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/07/03,6.653063103075834 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/06/26,7.278184092825012 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/07/04,3.637924999999999 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/06/25,4.8017727299999935 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/08/04,6.7427795468116685 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/08/05,4.695027349999997 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/07/27,3.2257922000000008 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/08/04,6.7427795468116685 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/08/05,4.695027349999997 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/07/27,3.2257922000000008 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/08/29,10.06717586513334 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/08/28,11.726700000095011 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/08/29,10.06717586513334 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/08/28,11.726700000095011 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/10/07,8.27033560673916 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/09/21,9.636950001292506 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/09/29,23.96396666666665 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/09/22,4.200014720769227 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/10/07,8.27033560673916 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/09/21,9.636950001292506 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/09/29,23.96396666666665 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/09/22,4.200014720769227 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/11/08,9.86458092799999 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/11/01,10.282216680799152 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/10/23,9.638029416333328 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/10/31,5.62332288 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/10/24,4.995464453846147 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/11/08,9.86458092799999 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/11/01,10.282216680799152 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/10/23,9.638029416333328 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/10/31,5.62332288 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/10/24,4.995464453846147 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/12/10,5.844274997345007 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/12/02,4.329953033333326 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/12/10,5.844274997345007 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/12/02,4.329953033333326 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/01/11,10.945271947776934 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/12/26,9.645675000000024 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/01/11,10.945271947776934 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2016/12/26,9.645675000000024 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/02/04,12.805250431686677 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/02/04,12.805250431686677 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/03/09,7.777286374086668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/02/28,9.182320840753333 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/02/21,11.680368750524998 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/03/08,2.444633776538462 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/02/20,4.617677235576919 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/03/09,7.777286374086668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/02/28,9.182320840753333 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/02/21,11.680368750524998 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/03/08,2.444633776538462 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/02/20,4.617677235576919 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/04/09,2.357622630000001 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/04/02,3.607569291666664 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/04/09,2.357622630000001 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/04/02,3.607569291666664 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/05/03,4.641375260146668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/05/04,3.1369636399999945 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/05/03,4.641375260146668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/05/04,3.1369636399999945 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/05/27,5.275984100047491 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/05/27,5.275984100047491 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/06/28,4.785645117315832 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/06/28,4.785645117315832 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/07/31,3.263181057366661 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/08/08,12.50298333369583 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/07/30,5.830449271012494 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/07/23,11.535674999999983 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/07/31,3.263181057366661 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/08/08,12.50298333369583 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/07/30,5.830449271012494 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/07/23,11.535674999999983 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/08,7.188437932466673 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/01,4.460109849999991 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/08/23,12.601875001455 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/09,2.8748522500000075 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/08/31,6.148650000119997 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/08/24,5.395600000579995 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/08,7.188437932466673 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/01,4.460109849999991 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/08/23,12.601875001455 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/09,2.8748522500000075 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/08/31,6.148650000119997 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/08/24,5.395600000579995 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/10,10.14195250138752 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/03,3.094585606666661 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/24,6.602760608478335 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/11,18.112100000185 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/02,3.647994636538456 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/25,3.1385022899999973 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/10,10.14195250138752 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/03,3.094585606666661 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/24,6.602760608478335 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/11,18.112100000185 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/02,3.647994636538456 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/09/25,3.1385022899999973 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/11/11,7.308650008623329 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/11/03,15.520516666666657 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/27,5.458425000192502 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/11/11,7.308650008623329 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/11/03,15.520516666666657 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/10/27,5.458425000192502 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/11/27,3.5122908313458314 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/11/28,3.806162466666665 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2017/12/29,10.6265461178861 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/02/08,9.983416666451678 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/03/03,7.009449998347512 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/03/11,4.4828689166666615 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/04/05,6.714000001292499 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/05/07,18.894008333235817 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/04/28,6.185249999999993 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/04/21,3.5852780483333304 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/05/30,17.399524999999986 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/07/09,7.619481063478335 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/07/02,2.1659363607725 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/07/10,3.426836349999998 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/08/10,13.86755834035332 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/08/03,10.272947085090845 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/07/26,11.747975000119991 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/09/04,4.1562181799999935 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/08/26,7.806529169396661 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/09/03,3.7345212133333257 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/08/27,10.382850000237491 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/09/27,20.70864583351832 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/10/05,3.643478652999996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/11/07,7.73980151833333 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/12/09,4.88268182337 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/12/08,8.6842250001925 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/12/01,6.6149106107958255 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/11/22,6.084046246666661 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/12/25,7.984524993325007 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2018/12/24,2.7662022500000063 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/01/26,10.080522917501662 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/02/10,8.35967666989918 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/01/25,12.310508333118328 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/03/06,11.838741665591668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/02/26,8.298349999905016 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/04/07,7.397111959938325 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/03/30,12.225375000384991 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/03/23,10.086899999999984 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/05/02,11.601887502125004 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/04/23,18.95352504827501 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/04/24,6.169074999999996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/06/03,5.942725001182507 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/05/25,4.780396016282387 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/05/26,3.5572492467391617 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/06/26,9.409325000192505 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/07/04,3.319279500047502 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/06/27,3.085853560769228 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/07/28,7.292700000167502 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/08/05,12.782162500262498 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/07/29,8.041559090335006 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/09/07,3.7737431799999945 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/08/29,20.907025000377494 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/08/22,3.296486211405829 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/08/30,4.363997729999998 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/09/23,8.161375000047508 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/10/01,23.85795416726665 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/09/22,3.635418199999996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/11/10,9.019558333118358 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/11/01,22.75550001380002 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/11/09,7.48657499999999 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/11/02,4.979975756666662 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/10/24,5.101220499999994 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/12/03,8.602685009889994 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/11/26,15.156927363558609 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2019/11/25,6.611122730000002 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/01/05,3.9871674173801863 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/01/29,7.789077558110279 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/03/08,8.99069999808501 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/03/01,4.670734095285002 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/02/21,15.443294700633349 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/03/09,3.932266289630828 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/02/29,6.747054549979995 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/02/22,4.126091861999999 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/04/02,10.909488652757505 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/03/24,12.76978334301834 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/05/04,14.350075138707515 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/05/03,3.3851765216666703 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/06/04,9.338878035623324 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/06/28,7.332408317468336 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/06/21,3.6609143989858297 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/07/06,4.650681820072496 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/06/29,3.4392462233333294 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/08/07,3.181324999999993 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/09/09,10.927020843010828 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/08/24,3.555502270144996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/09/08,11.488158333570832 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/09/25,16.110004168919154 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/10/10,6.329600000095008 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/10/03,3.1096708557692296 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/11/28,8.193991661571676 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/12/06,2.9950575923076923 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/01/06,20.18740000214001 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/01/07,3.4621606566666627 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/12/29,2.772579590000001 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2020/12/22,2.799875000000005 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/01/30,21.22555000000001 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/03/03,15.345949999905006 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/04/05,11.08255834948584 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/03/27,17.391425050647516 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/04/04,14.895691667056663 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/05/07,8.585999995562501 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/05/06,6.873347736534996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/05/23,7.158941671834173 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/06/07,8.315429165974177 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/06/24,4.484499243333321 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/06/23,9.550095829773346 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/08/11,8.329804149746659 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/08/02,7.924770833428329 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/07/26,15.793137916334182 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/08/27,3.767543180434997 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/09/11,6.280946592456655 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/09/04,5.299552274999996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/08/26,7.674225000120009 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/09/27,3.620149999999993 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/11/06,13.515396865714283 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/11/09,9.924718185 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/11/07,5.028660947435895 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/11/04,2.6002725749999978 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/10/29,12.89430833353332 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/10/22,5.006154169344167 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2021/11/23,5.530391890333331 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/03/07,4.421662134864165 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/04/08,2.974175000000004 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/03/22,6.952193179999991 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/05/09,12.762708335633349 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/05/10,7.112693184999989 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/05/09,8.039220461077493 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/05/01,7.491100002477485 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/04/23,8.317017426666652 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/06/03,3.683241603846154 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/07/11,4.248825000507494 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/06/29,3.386708177999996 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/06/24,4.373824243405823 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/07/04,5.262671229253334 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/06/26,16.000983347133356 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/08/02,7.73392500651 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/07/28,6.670949991310008 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/08/06,14.09619166702416 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/07/29,9.50816060762916 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/08/31,3.5843333362533314 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/08/30,5.570409845119998 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/08/29,2.7673250000000054 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/10/09,9.87974394 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/10/09,3.1755395499999977 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/10/08,3.097525000000005 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/09/23,7.436109089999994 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/11/07,12.05654166913167 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/10/26,11.574083333333336 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/11/10,7.950259089999991 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/11/09,16.37772803009498 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/11/02,9.10145832666666 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/11/24,10.774905314874168 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/12/04,10.144862876714162 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/11/26,14.015484090047469 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/12/28,11.292383333475822 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2022/12/27,4.828779232769229 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/02/10,25.76155834727583 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/02/05,11.865120840663346 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/02/06,6.531702280072491 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/01/28,5.012060690333329 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/02/27,7.568894166189171 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/03/09,2.5388772500000045 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/04/11,3.126250000189998 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/04/10,6.0078250032824885 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/04/03,7.936609089999988 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/04/02,9.639153796886667 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/03/26,4.252673498333331 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/04/26,3.186952250000006 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/05/26,10.231168180214995 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/06/06,20.955483333570825 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/06/05,23.61489166685668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/05/29,6.9298750004775 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/05/28,3.1561238407692263 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/07/08,8.11130333153923 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/07/07,12.90455833378082 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/06/29,7.891200000145001 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/07/31,8.608305680142504 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/07/26,6.590425000355009 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/08/09,23.600858333333345 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/08/08,8.299136365432496 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/08/01,4.090569701666663 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/07/31,3.658415909999994 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/07/24,12.338675002442502 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/07/23,10.18995833793333 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/08/27,6.460749236666668 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/08/22,16.48463750000001 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/09/02,3.877853649999993 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/09/01,3.9717388307692247 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/10/10,13.349750001680004 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/10/04,4.234005969999991 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/10/03,4.146394689999995 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/10/28,2.2894368400000022 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/12/06,3.1112442307692323 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/11/29,4.216529175026666 +Oscawana Lake,6224862,-73.84862804363732,41.39597885426234,2023/11/28,2.944659000000001 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2014/12/30,6.264649996240009 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2014/12/29,5.011580308251669 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/02/24,21.67155833333335 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/02/24,21.67155833333335 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/05,10.37792500116253 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/04,5.083806351282042 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/05,10.37792500116253 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/04,5.083806351282042 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/05/07,9.91479166676167 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/28,5.401849991170003 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/21,12.83246596243249 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/29,4.972559094999995 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/05/07,9.91479166676167 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/28,5.401849991170003 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/21,12.83246596243249 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/04/29,4.972559094999995 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/06/08,6.706683323813342 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/05/30,12.095687502897508 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/05/23,4.392508333618332 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/06/07,12.100350002990004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/05/22,4.647227494085115 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/06/08,6.706683323813342 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/05/30,12.095687502897508 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/05/23,4.392508333618332 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/06/07,12.100350002990004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/05/22,4.647227494085115 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/07/01,8.78949374981001 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/06/24,5.260840537275835 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/07/02,3.4393250000000006 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/07/01,8.78949374981001 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/06/24,5.260840537275835 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/07/02,3.4393250000000006 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/02,6.016097924194164 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/10,2.6977157499999977 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/03,6.068131822590002 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/07/25,5.47029998 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/02,6.016097924194164 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/10,2.6977157499999977 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/03,6.068131822590002 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/07/25,5.47029998 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/09/03,9.646041675484168 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/27,8.600824993144998 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/09/11,4.166594230769231 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/26,2.9694475000000025 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/09/03,9.646041675484168 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/27,8.600824993144998 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/09/11,4.166594230769231 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/08/26,2.9694475000000025 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/10/05,7.68672738094607 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/10/06,5.572800001219994 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/10/05,7.68672738094607 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/10/06,5.572800001219994 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/10/30,6.2216386373475006 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/10/29,3.4471695999999974 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/10/30,6.2216386373475006 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/10/29,3.4471695999999974 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/12/08,5.611262499390002 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/11/30,22.12050000038501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/11/23,4.915731616666663 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/12/08,5.611262499390002 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/11/30,22.12050000038501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2015/11/23,4.915731616666663 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/01/02,9.917233222380943 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/01/02,9.917233222380943 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/01/25,9.431745942258337 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/02/11,9.332199999355003 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/02/02,3.0250337224358947 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/01/25,9.431745942258337 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/02/11,9.332199999355003 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/02/02,3.0250337224358947 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/03/06,6.892809597825284 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/02/26,6.172015895217491 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/02/27,3.121572347435896 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/03/06,6.892809597825284 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/02/26,6.172015895217491 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/02/27,3.121572347435896 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/03/29,14.046175013515011 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/03/22,9.087666666146651 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/03/30,4.111233297435893 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/03/29,14.046175013515011 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/03/22,9.087666666146651 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/03/30,4.111233297435893 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/05/09,7.386391667916672 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/04/30,13.585699999837498 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/04/23,5.805720827235848 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/05/09,7.386391667916672 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/04/30,13.585699999837498 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/04/23,5.805720827235848 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/05/25,13.714189583670825 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/06/09,16.014874999935017 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/05/25,13.714189583670825 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/06/09,16.014874999935017 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/07/03,10.263087503507506 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/06/26,5.408050001612501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/07/04,4.394752279999993 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/06/25,5.903193252979168 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/07/03,10.263087503507506 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/06/26,5.408050001612501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/07/04,4.394752279999993 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/06/25,5.903193252979168 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/08/04,12.729425011500014 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/08/05,5.851820459999987 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/07/27,4.039339032692304 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/08/04,12.729425011500014 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/08/05,5.851820459999987 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/07/27,4.039339032692304 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/08/29,3.336067423623329 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/08/28,4.632094547999996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/08/29,3.336067423623329 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/08/28,4.632094547999996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/10/07,2.833236359999997 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/09/29,23.351 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/09/22,3.873594010576921 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/10/07,2.833236359999997 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/09/29,23.351 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/09/22,3.873594010576921 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/11/08,4.708603186999994 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/11/01,5.535950002347501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/10/23,7.655183971333333 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/10/31,2.0520929 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/10/24,3.814504500000004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/11/08,4.708603186999994 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/11/01,5.535950002347501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/10/23,7.655183971333333 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/10/31,2.0520929 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/10/24,3.814504500000004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/12/10,7.123837493955015 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/12/02,13.18890000147499 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/12/10,7.123837493955015 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/12/02,13.18890000147499 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/01/11,8.791737762380944 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/12/26,11.512375 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/01/11,8.791737762380944 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2016/12/26,11.512375 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/02/04,2.4111791750000013 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/02/04,2.4111791750000013 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/03/09,8.478773494109173 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/02/28,14.29177083831332 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/02/21,3.490849999972504 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/03/08,3.126932306666666 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/02/20,5.309180792307684 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/03/09,8.478773494109173 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/02/28,14.29177083831332 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/02/21,3.490849999972504 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/03/08,3.126932306666666 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/02/20,5.309180792307684 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/04/09,3.018339486538462 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/04/02,5.200968189999992 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/04/09,3.018339486538462 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/04/02,5.200968189999992 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/05/03,8.419649992504995 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/05/04,3.3260568202174987 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/05/03,8.419649992504995 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/05/04,3.3260568202174987 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/05/27,5.037900000434993 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/05/27,5.037900000434993 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/06/28,19.66395833463833 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/06/28,19.66395833463833 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/07/31,2.908143180482498 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/07/30,4.322953043123332 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/07/23,22.6705250004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/07/31,2.908143180482498 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/07/30,4.322953043123332 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/07/23,22.6705250004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/08,2.986538633052499 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/01,4.198660618333326 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/08/23,5.193265382988336 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/09,4.8198135 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/08/31,3.542033785769231 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/08/24,7.6075000050275 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/08,2.986538633052499 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/01,4.198660618333326 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/08/23,5.193265382988336 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/09,4.8198135 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/08/31,3.542033785769231 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/08/24,7.6075000050275 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/10/03,3.329061369999996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/24,3.347385448217497 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/10/02,3.1843091038461524 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/25,5.994032726999991 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/10/03,3.329061369999996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/24,3.347385448217497 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/10/02,3.1843091038461524 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/09/25,5.994032726999991 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/11/11,9.56467865799999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/10/27,3.4141476874358943 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/11/11,9.56467865799999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/10/27,3.4141476874358943 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/11/27,11.270220839548342 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/11/28,2.580614037500002 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2017/12/29,9.7203648615436 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/02/08,11.918274999324996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/03/03,11.912375002365016 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/03/11,4.6751948301282 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/05/07,9.827441667091662 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/04/28,4.806370479999995 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/04/21,9.077010606666647 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/07/09,14.174575020700008 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/07/02,2.5577772705075 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/07/10,3.3163783607692285 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/06/24,15.30489999978498 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/08/10,15.257354582953342 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/08/03,3.698872233333327 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/08/02,3.994825000000004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/09/04,4.774149243333323 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/08/26,9.471062500724992 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/09/03,6.442631819999991 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/08/27,10.799283333570829 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/09/27,7.893824992370007 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/10/05,3.0092164000000023 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/11/07,7.866093943478331 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/10/30,2.58851105 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/12/09,9.855683331420842 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/12/08,5.886929168559161 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/12/01,4.3340897833174985 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/11/22,4.165982897435893 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2018/12/25,13.980608333333334 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/01/09,3.807243100119998 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/01/26,14.338710690290824 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/02/10,3.628297277435895 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/01/25,2.818139580769229 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/03/07,7.334431647692302 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/02/26,3.3243985066666646 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/02/19,5.176423969230757 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/04/07,11.25798491107 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/03/30,8.774325005007492 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/05/02,11.56650773244191 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/04/23,19.089475027932515 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/04/24,4.432795454999996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/06/03,13.655879170181686 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/05/25,4.99416666461167 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/06/02,9.024475000289993 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/05/26,7.232025000047495 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/07/05,9.238917084283347 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/06/26,21.42417916875668 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/07/04,9.150302275504991 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/06/27,2.878634230769228 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/07/28,9.310979177931667 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/08/05,9.130635995409166 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/07/29,13.53871166932166 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/09/07,3.516943940724994 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/08/29,16.081691671266686 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/08/22,2.9643636399999997 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/08/30,5.501806820072496 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/09/30,10.062808342785829 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/09/23,3.892337846811664 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/09/22,6.803253181999988 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/11/10,9.27652000225249 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/11/01,7.757584858380824 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/11/09,3.947181819999999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/11/02,2.4112581124999988 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/10/24,4.720181879999996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/12/03,6.7673270826283485 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/11/26,5.354113645237508 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2019/11/25,3.005978600000001 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/01/29,8.562265285315275 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/03/01,7.254886367395 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/02/21,12.774806079480838 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/03/09,6.010481826899993 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/02/29,2.5741545 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/02/22,2.330452675000002 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/04/02,6.880960832318331 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/03/24,12.077787508049996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/04/10,2.350900000000002 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/05/04,9.78918030498667 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/04/25,14.502524012865251 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/05/03,5.580731819999999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/06/04,4.857606492100001 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/06/28,5.684004165451667 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/06/21,5.363036754239164 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/07/06,4.014190799999998 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/06/29,5.353030630769223 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/08/08,6.153441678396672 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/09/09,17.342658333333326 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/08/24,16.870233333333328 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/09/08,6.398561373533328 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/09/25,9.756339583713348 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/10/10,6.412625000000004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/10/03,3.473595114743587 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/11/28,7.170543945281661 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/12/06,2.4613912625000007 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/01/06,3.214535314999998 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/01/07,5.354492931601547 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2020/12/29,3.181097789999999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/01/22,3.7944242638675023 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/01/30,3.9941114923076912 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/01/23,4.414078514230759 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/03/11,10.721799999325004 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/04/05,11.900383340943334 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/03/27,8.364984099014162 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/04/04,16.405433333713333 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/04/21,11.4780625872875 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/05/06,6.9968473495016665 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/06/08,8.232249992597492 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/05/23,4.141645082594168 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/06/07,4.653320152606665 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/06/24,2.074859089999998 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/06/23,12.446356261892513 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/08/11,5.213309091012502 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/08/02,8.309325015329994 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/07/26,17.559291667669175 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/09/03,3.079822744999996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/08/27,4.183047574956661 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/09/11,14.384170833260832 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/09/04,3.5568805057692274 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/08/26,6.769291667426674 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/09/27,3.690391499999997 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/11/06,6.126883991333329 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/11/09,4.436894855333331 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/11/07,4.614030911538461 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/11/04,3.441580673076922 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/10/29,5.992687505017489 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/10/22,4.966083715035831 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2021/11/23,2.5113079375000003 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/02/10,13.324731254617491 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/02/10,11.104774583573356 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/02/02,21.838800000000013 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/04/08,3.710123463333337 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/03/22,7.8596757633333265 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/05/09,5.422946216666669 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/05/10,6.8582188047391535 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/05/09,6.311331845298331 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/05/01,17.02871250159999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/04/24,5.0632356069316655 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/04/23,6.30822273229999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/06/03,5.527089552307684 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/05/25,5.960833339193334 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/07/11,3.658327270362496 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/06/29,3.469958178072496 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/06/24,8.233525000427498 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/07/04,15.817862500505008 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/06/26,5.343395093592498 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/08/02,18.580925000237503 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/07/28,9.584106250237516 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/08/06,10.259725000237497 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/07/29,21.913100000585008 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/08/31,3.6286651517391615 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/08/30,4.847565910217492 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/08/29,3.2367295000000014 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/10/09,8.005062123333337 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/10/09,3.224834280769227 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/10/08,3.027950713380834 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/09/23,3.2183433507692256 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/11/07,6.633150005927507 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/10/26,6.286499998895007 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/11/10,2.982410787499999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/11/09,2.416785992857142 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/11/02,2.464533712499999 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/11/24,8.972581662764158 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/12/04,4.929015079999991 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/11/26,2.450165929807692 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/12/28,3.427275000214997 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2022/12/27,6.007525000264992 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/02/10,13.36458107253334 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/02/05,7.817299992390003 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/02/06,6.17773031340583 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/01/28,3.310365929999996 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/02/27,6.180102499617501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/02/22,3.6876533075375 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/03/09,2.910902250312503 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/04/11,5.007979925237496 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/04/10,3.1141133399999994 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/04/03,3.258229486666665 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/04/02,6.612486376619992 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/03/26,3.3318133349999983 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/04/24,4.477641667009178 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/05/26,6.979112877049168 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/06/06,14.316054165811678 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/06/05,11.769795834360837 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/05/29,6.050508334560828 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/05/28,4.967506819999993 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/07/08,6.2528999671794745 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/07/07,3.590350000000007 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/07/31,2.860775000145 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/07/26,9.817575036952496 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/08/09,6.244358335728341 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/08/08,4.309530784230764 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/08/01,6.363150756739173 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/07/31,17.409275015070026 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/07/24,14.485504166929166 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/07/23,7.26023332977334 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/08/27,2.8271901468116662 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/08/22,5.147837502677501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/09/02,2.8033773499999985 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/09/01,2.71164531153846 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/10/10,6.50582499387501 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/10/04,5.10559332866666 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/10/03,6.4298463819999885 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/11/06,4.152561390047494 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/11/05,3.3961192115384606 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/10/28,7.085264551999988 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/12/06,5.109296630769222 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/11/29,3.477278197435892 +Lake Mahopac,6224916,-73.73912407902117,41.38069185777548,2023/11/28,2.639090080769229 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2014/12/29,8.464599999999988 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/02/24,21.66638333333335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/02/24,21.66638333333335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/05,11.89237500122003 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/04,3.630250000000008 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/05,11.89237500122003 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/04,3.630250000000008 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/05/07,10.728677978490486 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/28,5.485057267932733 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/21,15.030984207892498 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/29,6.668606820000005 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/05/07,10.728677978490486 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/28,5.485057267932733 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/21,15.030984207892498 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/04/29,6.668606820000005 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/05/30,4.803522271274999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/05/23,5.234528793623326 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/06/07,6.420288647269166 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/05/22,6.686683326760839 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/05/30,4.803522271274999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/05/23,5.234528793623326 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/06/07,6.420288647269166 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/05/22,6.686683326760839 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/07/01,5.338349999547497 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/06/24,6.328187880192514 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/07/02,17.84420000040001 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/07/01,5.338349999547497 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/06/24,6.328187880192514 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/07/02,17.84420000040001 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/08/02,5.990968910072499 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/08/10,23.688691679989173 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/08/03,8.76342348906168 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/07/25,14.433383333333309 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/08/02,5.990968910072499 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/08/10,23.688691679989173 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/08/03,8.76342348906168 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/07/25,14.433383333333309 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/09/03,16.248666668226647 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/08/26,21.935666694266693 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/09/03,16.248666668226647 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/08/26,21.935666694266693 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/10/05,8.369174996457499 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/10/06,3.803228033333328 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/10/05,8.369174996457499 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/10/06,3.803228033333328 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/10/30,14.26485657545361 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/10/29,9.479300004599992 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/10/30,14.26485657545361 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/10/29,9.479300004599992 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/12/08,9.75943333333335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/11/23,11.556531789999989 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/12/08,9.75943333333335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/11/23,11.556531789999989 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/01/02,7.978561367512497 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/12/25,4.949626137622501 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/01/02,7.978561367512497 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2015/12/25,4.949626137622501 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/01/25,7.877904180556672 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/02/02,2.457215599999999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/01/25,7.877904180556672 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/02/02,2.457215599999999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/03/06,13.6740823699586 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/02/26,23.087925025395013 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/02/27,5.101842588666663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/03/06,13.6740823699586 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/02/26,23.087925025395013 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/02/27,5.101842588666663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/03/29,9.83025000189751 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/03/30,8.469318179999982 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/03/29,9.83025000189751 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/03/30,8.469318179999982 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/05/09,9.154375018277507 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/04/30,7.939800009347507 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/04/23,6.18232499495001 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/05/09,9.154375018277507 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/04/30,7.939800009347507 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/04/23,6.18232499495001 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/05/25,14.787966666856668 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/06/09,19.552485608523305 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/06/02,18.36310416673916 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/05/25,14.787966666856668 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/06/09,19.552485608523305 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/06/02,18.36310416673916 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/07/03,16.919258333618355 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/06/26,6.349383334343339 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/07/04,4.3881781919999945 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/06/25,6.816084099999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/07/03,16.919258333618355 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/06/26,6.349383334343339 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/07/04,4.3881781919999945 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/06/25,6.816084099999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/08/04,4.426649256811663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/08/05,4.264802299999994 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/07/27,2.59115441153846 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/08/04,4.426649256811663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/08/05,4.264802299999994 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/07/27,2.59115441153846 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/08/29,4.641665001623329 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/08/28,7.592832701999998 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/08/29,4.641665001623329 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/08/28,7.592832701999998 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/10/07,8.607642426739158 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/09/21,20.27433333299834 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/09/22,10.758812291999984 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/10/07,8.607642426739158 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/09/21,20.27433333299834 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/09/22,10.758812291999984 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/11/08,9.579507469047616 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/11/01,12.312132487706103 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/10/23,7.133778035047499 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/10/31,3.603654866666664 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/10/24,5.482800000602496 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/11/08,9.579507469047616 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/11/01,12.312132487706103 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/10/23,7.133778035047499 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/10/31,3.603654866666664 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/10/24,5.482800000602496 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/12/10,5.853974997130007 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/12/02,4.412913647134999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/12/10,5.853974997130007 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/12/02,4.412913647134999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/01/11,16.60014166896667 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/12/26,6.921350005405004 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/01/11,16.60014166896667 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2016/12/26,6.921350005405004 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/02/04,5.885446375333332 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/02/04,5.885446375333332 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/03/09,13.76410001401751 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/02/28,11.678991670986663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/02/21,7.806399999665005 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/03/08,2.3725869499999983 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/02/20,3.9203316288461503 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/03/09,13.76410001401751 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/02/28,11.678991670986663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/02/21,7.806399999665005 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/03/08,2.3725869499999983 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/02/20,3.9203316288461503 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/04/09,3.674803589999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/04/02,5.443896361999992 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/04/09,3.674803589999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/04/02,5.443896361999992 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/05/04,4.621150002300002 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/05/04,4.621150002300002 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/06/29,8.916824989389996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/06/28,6.951750000475013 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/06/29,8.916824989389996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/06/28,6.951750000475013 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/07/31,9.418050000379996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/07/30,4.416940538876659 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/07/31,9.418050000379996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/07/30,4.416940538876659 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/08,9.263425000295 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/01,7.187078763405829 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/08/23,15.78590834253334 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/09,3.642455516666664 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/08/31,6.5995924235508365 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/08/24,8.923410989109177 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/08,9.263425000295 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/01,7.187078763405829 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/08/23,15.78590834253334 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/09,3.642455516666664 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/08/31,6.5995924235508365 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/08/24,8.923410989109177 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/10/10,11.9560625022575 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/10/03,5.478615915167502 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/24,8.84868749666667 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/10/02,6.510924682769222 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/25,7.313324243333327 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/10/10,11.9560625022575 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/10/03,5.478615915167502 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/24,8.84868749666667 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/10/02,6.510924682769222 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/09/25,7.313324243333327 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/11/11,21.98753183380002 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/10/27,6.458553131999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/11/11,21.98753183380002 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/10/27,6.458553131999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/11/27,10.161806247492493 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/11/28,8.019867603666654 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2017/12/29,17.872814166189176 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/02/08,9.207798333048354 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/03/03,8.304958331490848 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/02/24,7.015449990900009 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/03/11,5.098776403846148 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/04/05,3.644000000000008 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/05/07,16.111633333333327 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/04/28,20.82765836783335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/04/21,6.89147499999999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/05/30,15.289016666736666 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/07/09,4.217701496811664 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/07/02,6.245486360287503 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/07/10,5.140015910072495 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/08/10,9.99911666897166 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/08/03,4.162354555942497 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/08/02,4.432158333428336 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/09/04,5.845301518478332 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/08/26,21.169424999737508 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/09/03,9.260721973333336 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/09/27,3.121619696811664 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/10/05,10.102650003449998 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/11/07,8.396700763333328 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/10/30,6.838440268666655 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/12/08,13.236900000000006 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/12/01,4.337546609816663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/11/22,5.777012096666663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/01/01,3.4358068100000008 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2018/12/25,11.589054864793592 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/01/09,2.508406750000004 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/01/26,12.645270008317496 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/02/10,3.884810549999998 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/01/25,3.502524949999999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/03/06,6.674731285442502 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/03/07,7.267845113076917 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/02/26,7.879277269999984 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/02/19,3.5726689088461474 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/04/07,7.580816666284167 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/03/30,6.604142443734999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/05/02,11.891370834693335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/04/23,21.20157501403751 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/04/24,8.307208356380823 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/06/03,13.498702499142516 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/05/25,10.366013265623335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/06/02,3.2342750000000047 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/05/26,17.023450009200012 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/07/05,12.928443333285848 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/06/26,15.294000000094998 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/07/04,10.797663612478608 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/06/27,18.65252505314252 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/07/28,15.437050000094995 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/08/05,7.995401904326669 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/07/29,10.73029791740166 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/09/07,10.630777270000008 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/08/29,24.424941666666665 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/08/22,13.615225000095007 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/08/30,16.29542122126665 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/09/30,29.23856666906168 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/09/23,11.986257916666666 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/09/22,19.06955834333332 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/11/10,13.12949500953249 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/11/01,20.05228333793334 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/11/09,7.089577503666658 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/11/02,10.412002269999991 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/10/24,7.733627269999992 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/11/26,12.702530702921944 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2019/11/25,8.512370831675836 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/01/29,7.029234102490009 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/03/08,5.295664403428334 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/03/01,12.7133875046 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/02/21,14.415721217300018 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/03/09,3.287479966666664 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/02/29,3.294550000000008 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/02/22,4.420719928666665 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/04/02,9.5888250015525 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/03/24,12.992441679819173 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/04/25,11.351354581399995 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/05/03,6.8248083436833324 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/05/27,4.456836002580001 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/06/04,5.2931545468341605 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/06/21,10.171625005177496 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/07/06,14.455081951724432 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/06/29,3.0796750000000106 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/08/08,9.72792916853916 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/08/07,19.31221666870416 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/08/24,9.994824999999995 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/09/25,12.994700037597497 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/10/10,29.554908333333334 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/10/03,11.434241811999982 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/11/03,6.4889749956100085 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/11/28,6.733524993185011 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/12/06,6.601107630333324 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/01/06,4.290176662879163 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/01/07,3.9951318201199975 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2020/12/29,4.827081248666664 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/01/22,9.948097779750263 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/01/30,3.795882177884614 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/01/23,3.1715750000000047 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/04/05,10.838501492557748 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/03/27,22.440525018495 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/05/07,19.61655833563336 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/04/21,9.74728463028582 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/05/06,6.794362894109159 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/05/23,13.711683342605845 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/06/07,6.986702279999994 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/06/24,6.5667393900725 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/06/23,8.155224995874992 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/08/11,5.270741667581672 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/08/02,7.470800000095003 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/07/26,20.387716665901625 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/09/03,21.47812500230001 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/08/27,6.930277270335004 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/09/11,11.306358334435822 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/09/04,13.750242433333325 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/08/26,16.09414166671416 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/09/27,7.51963333333334 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/11/06,11.516023379047615 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/11/09,9.67319924166667 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/11/07,2.588708074999999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/11/04,3.664041048076923 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/10/22,9.888335010397494 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2021/11/23,4.198184931666662 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/01/10,5.8207434852564015 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/02/10,8.554799999667512 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/02/10,19.42829375211501 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/02/02,21.88613333333335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/01/26,4.138982361538462 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/02/26,15.255553221188336 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/02/27,5.239958702564096 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/02/26,4.805237404102557 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/04/08,3.3643000000000027 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/03/22,6.394062876666655 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/05/09,13.572725023 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/05/10,6.51976439833332 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/05/09,4.299634100064995 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/05/01,6.503934853836665 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/04/24,5.795133333480839 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/04/23,3.9888045499999976 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/06/10,20.149666666619154 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/06/03,6.146501784615382 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/05/25,7.410826897660834 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/07/11,10.482468936714174 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/06/29,8.707809466666669 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/06/24,5.906346061695831 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/07/04,12.563616689666675 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/06/26,16.132725011500014 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/08/02,23.14537666666666 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/07/28,7.0994150003000005 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/08/05,11.719687499999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/08/31,7.652728026714174 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/08/30,3.91840783076923 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/08/29,2.7304250000000065 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/10/09,16.65806060666669 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/10/09,3.986505326666665 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/10/08,15.572525000169987 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/09/23,13.642908335418308 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/11/07,6.807024244923335 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/10/26,7.735308331023342 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/11/10,3.2982088399999974 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/11/09,4.151156829999998 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/11/02,5.499354678666662 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/11/24,11.026060418141665 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/12/04,21.16449394229999 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/11/26,12.477270449999985 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/12/28,3.881725000264992 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2022/12/27,5.7712897716550025 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/02/10,11.867014406056658 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/02/05,6.659091657901678 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/02/06,6.614383341714156 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/01/28,4.986942570333329 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/02/27,10.690337503205 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/02/22,5.023476562021678 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/03/09,3.9190709199999954 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/04/11,6.656741669286657 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/04/10,4.734467486666663 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/04/03,3.1641026666666643 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/04/02,7.669191663333321 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/03/26,8.441446966666655 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/04/24,9.531164222399166 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/05/05,4.323986366666662 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/06/07,12.484300000095 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/06/06,11.501937499905017 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/06/05,20.62764166686668 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/05/29,20.973683340305858 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/05/28,2.9156841899999977 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/07/08,6.702684723846152 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/07/07,3.010375000000004 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/06/29,8.1381340902175 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/06/21,13.858674999999987 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/07/31,15.451287500000005 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/07/26,7.155625000000006 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/08/09,19.67707916709415 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/08/08,12.905019696884148 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/08/01,24.632958333523334 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/07/31,3.579473699999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/07/23,17.23598144 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/08/27,24.28569166666669 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/08/22,19.80860000266004 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/09/09,15.01413333288832 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/09/02,11.403613259473325 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/09/01,12.603368179999991 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/10/10,16.313427090233326 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/10/11,16.542279166621654 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/10/04,4.880706829999997 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/10/03,10.323642423333322 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/11/06,9.12520548981684 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/10/28,10.011547769999996 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/12/06,3.2833500000000084 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/11/29,14.290392430375851 +Titicus Reservoir,6225218,-73.62798711200605,41.330344430563486,2023/11/28,9.958235622180837 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2014/12/30,7.971020825848335 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2014/12/30,9.074493746615005 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/01/07,8.635961951895963 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/01/07,4.425897754807692 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/01/23,4.831938263076919 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/01/23,11.565217423405832 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/01/23,4.831938263076919 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/01/23,11.565217423405832 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/04,7.475681816412503 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/04,7.475681816412503 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/07,7.52386666671416 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/07,7.711708333380828 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/28,4.805419358870831 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/21,9.603629220916677 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/21,9.593779223081674 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/29,3.352074430769225 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/29,3.328987420769228 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/07,7.52386666671416 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/07,7.711708333380828 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/28,4.805419358870831 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/21,9.603629220916677 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/21,9.593779223081674 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/29,3.352074430769225 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/04/29,3.328987420769228 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/30,14.393208333523342 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/23,4.497958336373334 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/23,4.901858336278336 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/06/07,4.233901633330714 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/22,8.379600397554164 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/30,14.393208333523342 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/23,4.497958336373334 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/23,4.901858336278336 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/06/07,4.233901633330714 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/05/22,8.379600397554164 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/10,7.305925005797502 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/10,4.253699252899162 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/01,13.67682708879834 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/06/24,2.7127499999999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/06/24,2.9745559279999974 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/02,11.734074999784983 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/02,11.475299999784983 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/10,7.305925005797502 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/10,4.253699252899162 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/01,13.67682708879834 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/06/24,2.7127499999999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/06/24,2.9745559279999974 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/02,11.734074999784983 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/02,11.475299999784983 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/08/02,4.179540151666656 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/26,6.014754167194164 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/26,6.0251791672416655 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/08/03,3.526858060769227 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/08/03,4.0852022899999945 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/25,4.817597724999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/08/02,4.179540151666656 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/26,6.014754167194164 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/26,6.0251791672416655 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/08/03,3.526858060769227 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/08/03,4.0852022899999945 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/07/25,4.817597724999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/09/03,12.503825007089995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/09/11,3.45365 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/08/26,3.231380720769231 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/09/03,12.503825007089995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/09/11,3.45365 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/08/26,3.231380720769231 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/05,3.009124246739168 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/06,3.715246206666667 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/06,3.5419813374358973 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/09/27,12.546824999999991 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/05,3.009124246739168 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/06,3.715246206666667 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/06,3.5419813374358973 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/09/27,12.546824999999991 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/30,2.4030863654749983 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/30,2.1498500000950003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/30,2.4030863654749983 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/10/30,2.1498500000950003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/11/30,5.03065000007249 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/11/23,2.996865499999999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/11/23,3.1269759999999964 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/11/30,5.03065000007249 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/11/23,2.996865499999999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2015/11/23,3.1269759999999964 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/10,5.788424999970007 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/01/25,22.348225000000006 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/02,15.432510417571685 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/10,5.788424999970007 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/01/25,22.348225000000006 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/02,15.432510417571685 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/06,8.13867197330833 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/06,5.833254555525003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/26,9.370359102419998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/27,3.105790777435893 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/27,3.5456116274358958 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/06,8.13867197330833 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/06,5.833254555525003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/26,9.370359102419998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/27,3.105790777435893 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/02/27,3.5456116274358958 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/29,13.475016712404177 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/22,10.40037458257082 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/22,10.030571256137485 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/04/06,15.99632500058999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/30,4.5641349666666615 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/30,4.010045197435895 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/29,13.475016712404177 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/22,10.40037458257082 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/22,10.030571256137485 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/04/06,15.99632500058999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/30,4.5641349666666615 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/03/30,4.010045197435895 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/09,9.680930415806658 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/09,10.382797082473326 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/04/30,6.259863643232502 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/08,10.952241685161662 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/04/22,7.169436753263335 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/09,9.680930415806658 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/09,10.382797082473326 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/04/30,6.259863643232502 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/08,10.952241685161662 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/04/22,7.169436753263335 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/25,8.330400002467492 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/25,8.312800000409993 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/06/09,5.311361769374997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/24,6.92582500205249 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/25,8.330400002467492 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/25,8.312800000409993 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/06/09,5.311361769374997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/05/24,6.92582500205249 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/03,5.479444326094167 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/06/26,21.57284166690416 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/06/26,21.81302500023749 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/11,18.32315833393332 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/04,3.55078621153846 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/04,3.300361211538459 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/06/25,3.5443576033333284 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/03,5.479444326094167 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/06/26,21.57284166690416 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/06/26,21.81302500023749 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/11,18.32315833393332 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/04,3.55078621153846 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/04,3.300361211538459 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/06/25,3.5443576033333284 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/08/04,3.777222740507496 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/27,3.239505124999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/08/04,3.777222740507496 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/07/27,3.239505124999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/08/29,3.948330907999992 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/08/29,3.755230907999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/09/06,3.4999141248717933 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/09/06,3.862377521410252 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/08/28,3.565056869999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/08/29,3.948330907999992 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/08/29,3.755230907999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/09/06,3.4999141248717933 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/09/06,3.862377521410252 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/08/28,3.565056869999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/07,8.983806059999992 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/09/22,13.077746963333311 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/09/22,5.892362261999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/07,8.983806059999992 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/09/22,13.077746963333311 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/09/22,5.892362261999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/11/08,5.261530333333327 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/11/01,9.478338751752494 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/11/01,8.925371142442494 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/23,7.267069698333337 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/31,3.895979137435896 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/24,6.042153192307683 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/24,5.928646694230761 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/11/08,5.261530333333327 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/11/01,9.478338751752494 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/11/01,8.925371142442494 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/23,7.267069698333337 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/31,3.895979137435896 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/24,6.042153192307683 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/10/24,5.928646694230761 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/12/03,4.329866675749996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/12/03,4.320566678629999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/12/02,5.595579018666664 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/12/03,4.329866675749996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/12/03,4.320566678629999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/12/02,5.595579018666664 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/01/11,12.360618398264169 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/12/26,24.44116666666665 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/01/11,12.360618398264169 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2016/12/26,24.44116666666665 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/04,15.955345833333332 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/04,15.955345833333332 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/03/09,6.5886341056449975 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/03/09,6.914334105597499 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/28,10.971608348345836 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/21,9.90453333311834 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/21,8.004108333318335 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/03/08,2.9059384265384605 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/20,4.987931372115376 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/03/09,6.5886341056449975 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/03/09,6.914334105597499 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/28,10.971608348345836 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/21,9.90453333311834 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/21,8.004108333318335 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/03/08,2.9059384265384605 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/02/20,4.987931372115376 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/04/09,2.456503375000003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/04/02,3.949378942307688 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/04/02,4.080340597435893 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/04/09,2.456503375000003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/04/02,3.949378942307688 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/04/02,4.080340597435893 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/05/04,5.278954549999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/05/04,4.632754549999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/05/04,5.278954549999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/05/04,4.632754549999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/06/28,5.312599270488331 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/06/28,5.312599270488331 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/07/31,3.3502227304349965 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/07/31,3.397329550579997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/07/30,3.489055630769228 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/07/31,3.3502227304349965 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/07/31,3.397329550579997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/07/30,3.489055630769228 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/08,7.130162492200007 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/01,3.750143179999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/01,4.607002269999993 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/09,3.6246556807692287 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/09,6.347144081999989 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/08/31,2.5450022500475007 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/08/24,4.137084099999992 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/08/24,3.152475813333331 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/08,7.130162492200007 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/01,3.750143179999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/01,4.607002269999993 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/09,3.6246556807692287 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/09,6.347144081999989 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/08/31,2.5450022500475007 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/08/24,4.137084099999992 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/08/24,3.152475813333331 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/10,15.461887500337486 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/03,3.385350000285 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/24,8.868268180000003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/11,13.050783333118316 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/11,14.784208333118311 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/02,4.735120152769228 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/25,8.273440153333324 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/25,7.021288639999991 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/10,15.461887500337486 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/03,3.385350000285 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/24,8.868268180000003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/11,13.050783333118316 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/11,14.784208333118311 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/02,4.735120152769228 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/25,8.273440153333324 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/09/25,7.021288639999991 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/11/11,12.205819698333334 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/27,5.354648631999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/27,5.386915308666662 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/11/11,12.205819698333334 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/27,5.354648631999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/10/27,5.386915308666662 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/11/27,13.775625003685011 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/11/28,13.755725000784995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2017/12/29,10.271009631348342 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/02/08,22.404625000000006 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/03/03,7.521005475424991 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/03/11,5.757434866153846 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/04/05,3.422675000000004 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/04/05,3.265000000000002 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/04/29,12.382787535075002 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/04/28,4.213300000072502 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/04/21,4.293945464999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/04/21,3.3445368174358943 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/05/30,14.125974999997506 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/05/23,4.126575892307682 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/05/23,4.264262242307683 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/07/09,8.222437501437495 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/07/02,3.9399378773916593 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/07/02,3.9308310573916594 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/07/10,6.570123641999993 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/07/10,5.725227259999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/06/24,3.4416022500000065 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/06/24,7.716150000362497 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/08/03,6.522945828815838 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/08/03,4.949263366811903 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/07/26,13.103433333118312 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/07/26,22.60541666685166 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/09/04,2.742725009999999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/09/04,2.6234340999999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/09/03,6.268218179999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/08/27,12.6252750002625 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/08/27,13.385625000262491 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/10/05,2.7845219724358974 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/11/07,6.639177265000001 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/11/07,8.054431815047504 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/10/30,4.495258985576921 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/10/30,4.005603356730766 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/11/23,6.23542728023751 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/12/08,3.250195180769231 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/12/01,16.75204166705666 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/11/22,3.5597676730769234 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2018/12/24,13.00962500018499 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/01/26,11.008771141135 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/01/26,9.624601143707508 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/02/10,12.801431265855 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/02/03,21.750616666666684 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/02/03,21.750616666666684 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/01/25,6.226304171876657 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/03/07,21.77565833333335 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/02/26,10.300641666144177 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/02/19,14.507949999952505 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/04/07,5.112646484277733 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/03/30,13.38534166685166 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/03/23,3.2703886000725 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/03/23,7.062177249999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/05/02,3.571110825830836 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/05/02,3.652410826260837 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/04/23,8.348769700828331 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/04/24,3.981952279999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/04/24,4.050584099999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/06/03,4.628550001717497 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/06/03,6.023283334385837 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/05/26,2.866155323333331 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/05/26,2.999381397435893 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/06/26,4.1297704499999925 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/07/04,3.756681856666658 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/06/27,4.16121302487179 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/06/27,3.85924380410256 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/07/28,4.69088334348834 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/08/05,12.172266666904166 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/07/29,5.6913000012199975 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/07/29,11.988641671651669 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/09/07,3.461999999999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/09/07,3.492274999999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/08/29,11.34316666903916 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/08/22,3.5161916610149926 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/08/22,3.3135598408699933 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/08/30,3.622320454999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/08/30,2.7008319857692284 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/09/23,4.080390905144995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/09/23,4.074663630144995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/10/01,2.7062750000000046 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/10/01,2.991627250000003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/09/22,4.124516668333327 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/11/01,5.948590915047496 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/11/09,4.4469397840374985 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/11/02,3.206765887499999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/11/02,3.171015097435894 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/10/24,4.407747769999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/12/03,8.543447509889996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/11/26,7.300036377442504 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/11/26,7.029259100214998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2019/11/25,5.10852495 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/01/29,6.829365917822501 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/01/29,6.979177277657498 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/03/01,8.826877090565828 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/03/01,8.12501822827333 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/02/21,5.198128788380837 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/03/09,4.175188278846149 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/03/09,3.953046184615381 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/02/29,5.971754171416659 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/02/22,4.069215548076916 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/02/22,3.586764832307688 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/04/02,13.064899263108348 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/04/02,8.606584877254166 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/03/24,9.626668750009992 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/04/01,5.171079170971662 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/05/04,8.707761671871665 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/05/04,8.958428343185833 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/05/03,6.4088515252758285 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/05/27,4.316103530146899 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/06/04,3.79430000041 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/06/28,6.873743953864173 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/06/21,4.06564999999999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/06/21,3.919192433333324 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/07/06,4.209428180769224 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/06/29,5.773313612820511 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/06/29,5.669948743589739 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/08/08,10.239058399933342 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/08/08,10.50532500375001 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/07/22,4.493388461585958 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/08/24,3.563498361333329 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/08/24,4.251641302564098 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/09/08,4.323354925789999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/09/01,23.96396666666665 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/08/23,5.098700000482492 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/10/10,4.778909089999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/10/03,5.565755451999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/10/03,5.619855451999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/11/28,14.239650003125018 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/11/28,14.86682500332502 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/12/06,3.840293141153843 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/12/06,3.733666401538459 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/01/07,3.9450500003124938 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/01/07,3.774550000312493 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2020/12/29,13.217433333333318 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/03/04,10.04210666638169 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/04/05,8.949012508572496 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/03/27,9.649585626970822 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/04/04,12.995225018400015 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/05/07,11.045774999679995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/05/07,10.598524999705 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/04/28,8.028849992560003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/05/06,9.083175011547484 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/06/08,12.784050001572504 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/06/08,13.268600000897504 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/05/23,7.538495362875355 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/05/23,6.503187507477495 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/06/07,2.7588670307692307 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/06/24,3.025834099999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/06/24,3.331468199999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/07/09,4.84511792268488 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/06/23,10.010241664754176 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/08/11,5.086734091157499 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/08/11,5.404109091157502 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/08/02,5.315190922685006 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/09/03,3.233982421666661 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/08/27,4.072641667029162 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/08/27,3.437410604130828 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/09/04,3.88970313461538 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/09/04,3.122789899999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/08/26,5.256002300072494 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/09/27,3.724835479999992 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/11/06,7.453143959999993 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/10/30,22.47810000000001 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/11/09,8.73195212633333 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/11/07,2.5497404875 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/11/07,2.564349005357144 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/11/04,2.408515412499999 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/10/29,2.96007809576923 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/10/22,16.344116666666654 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/11/23,2.6834022500000057 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2021/11/23,2.5919750000000046 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/01/10,3.3431998115384607 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/01/10,3.30142481153846 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/02/11,14.945200000857518 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/02/11,13.601825000257511 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/01/26,21.77565833333335 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/03/07,4.989820832335833 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/03/07,6.259106440206665 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/02/27,21.18980833328585 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/02/27,21.49830833328585 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/03/22,4.313357578500833 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/05/09,5.564609096811668 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/05/10,3.116386379999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/05/10,4.534681071666659 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/05/09,10.25324169431416 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/05/01,5.305631822734996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/04/24,7.711775000214982 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/04/24,6.464447729356649 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/04/23,20.576758333693338 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/06/03,4.347586965384608 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/06/03,4.871486253205119 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/05/26,11.872925000167491 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/05/26,12.230775000357497 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/07/11,3.1878030334058303 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/06/29,3.814792268289993 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/06/24,3.7009551546666586 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/06/24,3.4955377279999933 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/07/05,6.890550001225007 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/07/05,7.656125003167502 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/07/04,9.066000003594995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/06/26,5.002010238798332 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/08/06,9.942250000309986 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/08/06,10.557366666786653 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/08/05,3.959610607584165 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/08/31,3.748056820072494 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/08/30,14.057258333118307 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/08/30,2.8620750000000026 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/10/09,17.8375000023 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/10/09,3.836265959999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/10/09,3.7355227599999976 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/10/08,6.83925000057749 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/09/23,6.357405401999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/09/23,6.229739541999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/07,8.364521077431187 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/07,8.352133349978331 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/10/26,7.346674996425008 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/10,3.3345234149999983 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/10,3.392727589999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/09,3.820744091999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/02,5.749673621999994 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/02,4.767230471999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/24,7.851490153403342 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/24,7.167734095070005 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/12/04,5.303853786739158 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/12/04,4.166520479999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/26,3.0970796673076904 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/11/26,2.8914245374358973 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/12/28,16.182458343730854 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2022/12/28,5.169533335728335 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/02/10,11.179622955744168 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/02/06,15.672816676944173 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/02/06,30.089158340233343 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/01/28,3.2815622119999954 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/02/27,6.709099994920011 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/03/09,3.6722693666666633 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/03/01,3.5244247740384647 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/04/11,5.259150000474993 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/04/11,3.700950000452496 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/04/10,3.601554294871793 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/04/03,5.2526954549999925 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/04/03,4.6744772849999965 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/04/02,3.585205019999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/03/26,4.006266109999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/03/26,3.930043659999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/05/05,4.777817189230761 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/05/05,5.163813604615374 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/05/26,6.861677271157504 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/06/06,7.388975001762499 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/06/06,7.7776000016174995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/06/05,7.952766203084168 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/05/29,6.20145075765167 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/05/29,7.347358336380844 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/05/28,3.549949994999996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/06/29,12.332699999984987 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/08/05,8.413627270262507 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/07/31,3.612114998434996 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/07/26,2.3641090929 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/07/26,2.3959840928275 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/08/09,3.1691432999999964 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/08/09,3.141227399999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/08/01,3.1064394133333297 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/08/01,3.5076068899999937 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/07/31,3.784175000217493 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/07/24,3.126842030769227 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/07/24,3.998518764102556 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/07/23,3.6788227999999945 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/08/27,3.176497749999997 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/09/02,4.825383941333325 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/09/02,3.491787143333326 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/09/01,3.146695301538458 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/10/11,19.212908333043348 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/10/04,3.401215929999998 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/10/04,2.2669114299999995 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/10/03,4.9966622719999965 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/11/05,3.05251508 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/11/05,2.325565665000003 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/10/28,2.907511456666665 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/10/28,3.8175896307692287 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/12/06,2.606000000000002 +Lake Tiorati,6229626,-74.09118693301791,41.2654670241346,2023/11/28,3.3572250000000063 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2014/12/29,13.794616667666665 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/04/04,17.189558390928344 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/04/04,17.189558390928344 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/04/28,8.118606310744168 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/04/29,6.608922729999989 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/04/29,3.907450009999997 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/04/28,8.118606310744168 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/04/29,6.608922729999989 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/04/29,3.907450009999997 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/05/30,9.210911668681677 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/06/07,5.728961380468327 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/05/22,4.690529569838327 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/05/30,9.210911668681677 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/06/07,5.728961380468327 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/05/22,4.690529569838327 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/08/02,3.740948334666657 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/07/25,2.373031985769231 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/08/02,3.740948334666657 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/07/25,2.373031985769231 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/09/03,13.65232500037999 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/09/11,3.0515000000000003 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/08/26,3.461369144999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/09/03,13.65232500037999 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/09/11,3.0515000000000003 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/08/26,3.461369144999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/10/05,3.7816892496666608 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/09/27,2.722109050000003 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/10/05,3.7816892496666608 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/09/27,2.722109050000003 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/12/08,5.896024999985006 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2015/12/08,5.896024999985006 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/02/10,6.254249995995009 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/01/25,8.087291666106687 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/02/02,11.63867418110917 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/02/10,6.254249995995009 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/01/25,8.087291666106687 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/02/02,11.63867418110917 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/02/26,11.501466673419166 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/02/26,11.501466673419166 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/03/29,18.113383444033357 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/04/06,4.443433333428327 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/03/29,18.113383444033357 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/04/06,4.443433333428327 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/04/30,13.302438669052483 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/05/08,6.984895086614164 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/04/30,13.302438669052483 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/05/08,6.984895086614164 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/06/09,8.87321491641333 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/05/24,13.415724999354984 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/06/09,8.87321491641333 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/05/24,13.415724999354984 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/07/03,6.379749628809172 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/06/25,3.1165215307692278 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/07/03,6.379749628809172 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/06/25,3.1165215307692278 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/08/04,3.542090126666662 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/07/27,2.2089632249999998 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/08/04,3.542090126666662 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/07/27,2.2089632249999998 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/08/28,3.3312886499999985 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/08/28,3.3312886499999985 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/10/07,4.031314997999994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/10/07,4.031314997999994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/11/08,4.622128186999994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/11/01,7.149141658761675 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/11/01,8.085149997452495 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/10/23,7.143120462372503 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/10/31,2.161683749999998 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/11/08,4.622128186999994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/11/01,7.149141658761675 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/11/01,8.085149997452495 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/10/23,7.143120462372503 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/10/31,2.161683749999998 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/12/03,8.072791667189168 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/12/03,6.299068180190004 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/12/02,3.241856820000003 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/12/03,8.072791667189168 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/12/03,6.299068180190004 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/12/02,3.241856820000003 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/01/11,20.22915303396668 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/12/26,24.44116666666665 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/01/11,20.22915303396668 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2016/12/26,24.44116666666665 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/02/04,8.112903557692313 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/02/04,8.112903557692313 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/02/28,16.39120002999501 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/03/08,2.8467613716666667 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/02/20,3.480044514423071 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/02/28,16.39120002999501 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/03/08,2.8467613716666667 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/02/20,3.480044514423071 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/04/09,2.532802026538462 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/04/09,2.532802026538462 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/06/28,4.30519850021833 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/06/28,4.30519850021833 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/07/31,4.055916668044163 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/07/31,4.137966668044163 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/07/22,15.383424999949996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/07/30,3.47969091 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/07/31,4.055916668044163 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/07/31,4.137966668044163 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/07/22,15.383424999949996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/07/30,3.47969091 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/09/08,17.772324999999995 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/09/01,3.803173488333324 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/09/01,3.3425977499999946 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/08/23,4.983658336739165 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/08/31,2.7802750000474994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/09/08,17.772324999999995 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/09/01,3.803173488333324 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/09/01,3.3425977499999946 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/08/23,4.983658336739165 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/08/31,2.7802750000474994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/10/10,5.979006063525837 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/10/03,12.984933333733318 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/10/03,14.859745833425832 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/09/24,3.271592272999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/10/02,4.002741255769226 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/10/10,5.979006063525837 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/10/03,12.984933333733318 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/10/03,14.859745833425832 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/09/24,3.271592272999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/10/02,4.002741255769226 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/11/11,9.539740008072492 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/11/03,19.802050000384988 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/11/11,9.539740008072492 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/11/03,19.802050000384988 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/11/27,6.60644999360001 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2017/12/29,15.027829169959196 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/02/08,12.819933333190834 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/03/03,11.63735958616835 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/03/11,4.851341692820508 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/04/29,8.597075023692504 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/05/07,21.748962500664994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/04/28,5.932536365119998 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/05/30,4.722854376340711 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/07/09,4.54183958686834 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/07/02,3.5823749999999963 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/07/02,3.284649999999997 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/08/10,18.176941666524147 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/08/02,19.17337500040001 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/09/04,3.510868199999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/09/04,3.416470499999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/08/26,7.0270624887275055 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/09/03,3.022971220769226 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/10/05,3.683709280769224 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/11/07,6.399365156786668 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/11/07,6.877702280120004 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/11/23,3.716889507072503 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/12/08,5.722010071999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/11/22,3.655742673076924 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2018/12/24,12.613024999999991 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/01/26,10.745574640709163 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/01/26,10.410154183556674 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/02/10,11.579139584155842 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/01/25,3.2210884615384585 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/03/06,22.348225000000006 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/02/26,13.211208333143334 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/04/07,7.767548742242496 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/03/30,16.79700000019999 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/04/23,8.880336369742501 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/06/03,5.627834091617501 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/06/03,5.509559091715 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/05/25,12.300036669136675 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/06/02,13.551375000262494 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/07/05,14.692687500000003 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/07/05,14.6966625 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/06/26,5.907477654083334 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/07/04,5.940724999999994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/07/28,7.717018180820002 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/08/05,13.467883333333315 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/09/07,2.9280878999999977 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/09/07,4.899282130769228 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/08/29,8.333495455000001 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/08/22,3.518275003804999 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/08/22,3.1172000010549987 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/09/23,3.534921971666661 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/09/23,3.731374999999995 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/09/22,2.775099999999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/11/01,21.79355151793336 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/11/09,8.261524246390838 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/10/24,4.32614169333333 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/12/03,10.24405416993166 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/11/26,6.817779545095004 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/11/26,6.347384085142505 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/12/11,9.095947353614164 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2019/11/25,4.2432865500000005 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/01/29,6.232329545190003 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/01/29,6.039334090120002 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/03/01,4.111325408517501 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/03/01,3.976559860705835 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/02/21,4.742620455000001 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/04/02,5.48605910031 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/04/02,5.063134100310001 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/03/24,11.466414621558329 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/04/01,8.119371213405811 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/05/04,8.110792079200827 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/05/04,9.085900416424163 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/05/27,5.587938104723334 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/06/04,14.414658333103311 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/06/28,8.531149995394996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/06/21,3.5580643886233285 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/06/21,3.9005295450724935 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/07/06,2.769963724999997 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/08/07,5.12580000021749 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/08/24,3.4832363999999942 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/08/24,3.3599272999999954 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/09/08,12.807983333570832 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/09/25,14.565202082655835 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/09/25,11.622339583533336 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/10/10,5.543500000000007 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/11/28,8.475649995950008 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/11/28,7.035724995720004 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/11/27,2.8061022500000057 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2020/12/29,3.3162500000000104 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/01/30,4.403374999999999 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/03/11,10.389399999430022 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/03/03,10.116971978021969 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/04/05,10.642283337513332 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/03/27,12.334241678146665 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/04/04,16.653041684351685 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/04/28,7.262391658226675 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/05/06,8.592550009199991 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/05/23,15.50860833464834 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/05/23,14.226437500995004 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/06/07,4.460821213333327 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/07/10,4.339725006447498 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/07/10,3.7828750051824978 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/06/24,3.64363216410256 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/06/24,4.9399035139194085 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/06/23,2.886425000000001 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/08/11,5.561766669269166 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/08/11,4.3908916687116655 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/08/02,6.705033318375839 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/07/26,8.217737499752504 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/08/27,3.5611841001449926 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/08/27,4.424205952453447 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/09/11,2.8012864550000005 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/08/26,7.3951340902875025 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/09/27,3.954424999999991 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/11/06,8.79499913571428 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/11/09,7.314750758333333 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/11/04,5.189172769999994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/11/04,8.490265161666661 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2021/10/29,4.82277265 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/02/02,22.05378333333335 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/02/19,19.90220416862416 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/02/19,4.337650000830009 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/04/08,3.1518250000000045 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/04/08,2.9173692307692325 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/03/22,4.169300000309997 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/05/09,6.929355310000001 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/05/10,5.184110631666659 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/05/10,7.47629773999999 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/05/09,5.817825009864991 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/05/01,4.526243572003333 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/04/24,7.039158340088332 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/04/24,7.28143334150833 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/04/23,9.21064166671415 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/05/26,13.73412500007249 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/05/26,14.90845000007249 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/07/11,3.5618538334058285 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/07/11,3.4930000000724952 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/06/29,3.0851931799999948 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/06/24,4.742027161538451 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/06/24,4.7208122923076825 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/07/04,11.903208354080832 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/06/26,6.736121598286669 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/08/02,10.487950001012498 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/07/28,8.721175004792498 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/08/05,4.136493179999993 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/08/31,3.0438003115384604 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/10/09,4.036968948333326 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/10/08,2.903375000000005 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/11/07,7.802043896181061 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/11/07,6.034837835880238 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/10/26,11.77945833333334 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/11/09,4.068925158666664 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2022/11/29,6.84769999863501 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/02/10,19.78089171515669 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/02/06,4.236369934615379 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/02/06,4.356733396153839 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/01/28,5.065872110333331 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/02/27,6.202549996455009 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/03/09,5.836518184999991 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/04/10,4.022082686666664 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/04/02,8.979630308333341 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/05/05,6.760029034615378 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/05/05,7.080997373076911 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/05/26,3.602146064739163 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/06/05,4.361375000144994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/05/29,16.312783340305835 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/05/29,17.565708361125843 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/05/28,3.279279554999996 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/07/07,2.6851000000000016 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/06/29,8.798823111328328 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/06/21,18.33656666673916 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/08/05,17.26015626380001 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/07/31,3.2119613700724976 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/07/31,3.9830143985258304 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/07/23,2.9350363499999967 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/08/27,3.0949492468116646 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/09/01,4.774096520769226 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/10/03,5.674370489999994 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/12/06,2.917000000000005 +Mombasha Lake,6244656,-74.2057640813067,41.28105577115252,2023/11/28,3.634338461538462 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2014/12/30,11.211006254392515 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/01/31,22.30574166666668 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/01/31,22.30574166666668 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/04/04,18.20829623536166 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/04/04,18.20829623536166 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/07,8.77844166640417 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/07,9.691250000000002 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/04/28,7.384321837242501 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/04/29,3.738688533333327 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/04/29,4.167568943333329 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/07,8.77844166640417 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/07,9.691250000000002 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/04/28,7.384321837242501 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/04/29,3.738688533333327 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/04/29,4.167568943333329 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/30,3.987536753203336 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/23,3.3079856072466627 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/23,2.9116666857974973 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/06/07,19.55108750019 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/22,7.173191669014164 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/30,3.987536753203336 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/23,3.3079856072466627 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/23,2.9116666857974973 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/06/07,19.55108750019 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/05/22,7.173191669014164 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/10,4.225950003127496 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/10,3.8864750031749953 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/01,8.749160450801662 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/10,4.225950003127496 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/10,3.8864750031749953 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/01,8.749160450801662 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/08/02,4.726778788333323 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/26,14.357775032392505 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/26,6.393344166834163 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/25,3.888099999999992 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/08/02,4.726778788333323 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/26,14.357775032392505 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/26,6.393344166834163 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/07/25,3.888099999999992 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/09/03,13.982549999594996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/08/27,3.61059248166666 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/08/27,4.253428114999993 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/09/11,4.122866419999997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/08/26,2.9725115000000017 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/09/03,13.982549999594996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/08/27,3.61059248166666 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/08/27,4.253428114999993 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/09/11,4.122866419999997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/08/26,2.9725115000000017 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/10/05,23.527108332853345 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/10/05,23.527108332853345 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/10/29,9.58473333362083 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/10/29,9.58473333362083 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/11/23,2.979313273076923 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/11/23,3.397111698076921 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/11/23,2.979313273076923 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2015/11/23,3.397111698076921 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/01/25,5.201119887142507 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/02/02,3.4968157115384617 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/01/25,5.201119887142507 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/02/02,3.4968157115384617 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/06,19.366583334473336 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/06,12.691600003270008 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/02/26,9.493733332680836 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/02/27,2.9936250566666645 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/02/27,4.318313977435893 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/06,19.366583334473336 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/06,12.691600003270008 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/02/26,9.493733332680836 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/02/27,2.9936250566666645 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/02/27,4.318313977435893 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/29,14.228516717266682 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/22,10.651433348800833 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/22,10.492158348800832 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/04/06,3.4925757633333308 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/30,5.348290866666657 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/30,4.675865297435892 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/29,14.228516717266682 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/22,10.651433348800833 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/22,10.492158348800832 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/04/06,3.4925757633333308 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/30,5.348290866666657 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/03/30,4.675865297435892 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/04/30,7.857325002740002 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/05/08,6.452331446301659 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/04/22,6.510859094226654 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/04/30,7.857325002740002 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/05/08,6.452331446301659 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/04/22,6.510859094226654 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/05/25,11.08404999985749 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/05/25,15.094575000237498 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/06/09,4.922080303311661 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/05/24,6.873850000452503 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/05/25,11.08404999985749 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/05/25,15.094575000237498 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/06/09,4.922080303311661 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/05/24,6.873850000452503 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/07/03,16.1203625023 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/06/26,18.385295832950828 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/06/26,19.47323333333332 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/07/11,10.248125007877496 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/06/25,11.741823638795 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/07/03,16.1203625023 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/06/26,18.385295832950828 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/06/26,19.47323333333332 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/07/11,10.248125007877496 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/06/25,11.741823638795 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/08/04,6.571938636884167 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/07/27,2.65212941153846 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/08/04,6.571938636884167 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/07/27,2.65212941153846 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/08/29,18.96818333361832 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/08/29,18.606854166761654 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/08/28,3.13226595 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/08/29,18.96818333361832 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/08/29,18.606854166761654 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/08/28,3.13226595 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/10/07,3.593178791666661 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/10/07,3.593178791666661 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/11/08,5.137864541999996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/11/01,4.340885831355838 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/11/01,3.492874997802504 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/10/23,7.704721222372499 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/10/31,2.45935635 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/11/08,5.137864541999996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/11/01,4.340885831355838 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/11/01,3.492874997802504 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/10/23,7.704721222372499 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/10/31,2.45935635 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/12/03,6.305795467420001 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/12/03,7.557752295554999 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/12/02,2.9645658166666657 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/12/03,6.305795467420001 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/12/03,7.557752295554999 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/12/02,2.9645658166666657 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/01/11,8.475584850072492 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/12/26,24.44116666666665 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/01/11,8.475584850072492 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2016/12/26,24.44116666666665 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/02/04,18.51456249921249 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/02/04,18.51456249921249 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/03/09,5.079572739324164 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/03/09,4.893811372166664 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/02/28,12.119525018147508 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/03/08,2.3647453900000004 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/02/20,5.2844766730769255 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/03/09,5.079572739324164 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/03/09,4.893811372166664 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/02/28,12.119525018147508 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/03/08,2.3647453900000004 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/02/20,5.2844766730769255 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/04/09,2.8657658900000005 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/04/02,3.650033766666664 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/04/02,4.280015397435893 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/04/09,2.8657658900000005 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/04/02,3.650033766666664 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/04/02,4.280015397435893 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/06/29,20.67677500083249 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/06/29,20.516783334070823 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/06/28,4.782400000362495 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/06/29,20.67677500083249 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/06/29,20.516783334070823 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/06/28,4.782400000362495 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/07/31,10.15464166676166 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/07/31,10.7328361113011 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/07/22,16.77248333247332 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/07/30,14.158406827280006 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/07/31,10.15464166676166 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/07/31,10.7328361113011 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/07/22,16.77248333247332 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/07/30,14.158406827280006 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/09/01,4.044394696666661 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/09/01,3.753247729999994 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/08/23,4.1294363649999895 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/08/31,4.877225000072488 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/09/01,4.044394696666661 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/09/01,3.753247729999994 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/08/23,4.1294363649999895 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/08/31,4.877225000072488 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/10,7.291391675961671 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/03,4.366246215507497 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/03,4.098175755217498 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/09/24,3.5112331782174957 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/02,2.983883236538459 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/10,7.291391675961671 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/03,4.366246215507497 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/03,4.098175755217498 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/09/24,3.5112331782174957 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/02,2.983883236538459 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/11/11,11.41336894333332 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/11/03,4.518950008194164 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/27,4.473400961999998 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/27,4.464100961999997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/11/11,11.41336894333332 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/11/03,4.518950008194164 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/27,4.473400961999998 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/10/27,4.464100961999997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/11/27,4.355374999700003 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/01/07,22.34590833333334 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2017/12/29,15.255898067879189 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/02/08,10.141974999715012 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/02/08,10.159274999762513 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/03/03,8.190847143645835 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/03/11,3.998789211538462 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/04/05,3.5245750000000045 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/04/05,3.542850000000008 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/04/28,2.967215909999997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/04/21,4.066568209999997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/04/21,3.778327280000004 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/05/30,5.8576201005025 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/07/09,5.999959090407506 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/07/02,2.7268151480916654 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/07/02,2.3378651484541666 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/08/10,12.61760834203584 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/08/03,7.170824983620004 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/08/03,7.524699984232501 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/08/02,3.2339862499999974 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/09/04,3.105656061666663 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/09/04,3.214056061666663 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/08/26,9.010775000309996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/09/27,7.540774999700011 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/10/05,2.478786775000001 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/11/07,8.285565158623328 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/11/07,7.209972735192493 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/10/30,13.17790833311832 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/10/30,13.514150000217482 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/11/23,6.947786377489995 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/12/08,2.267651825000001 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/11/22,7.415349500000011 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2018/12/24,7.485419042307699 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/01/26,10.376554478485822 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/01/26,12.977148640679992 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/02/10,8.564798354345823 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/01/25,11.288650005850004 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/02/26,9.445583333095833 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/04/07,5.417348332285833 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/03/30,4.986465924646662 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/03/23,5.286850004999991 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/03/23,4.331504549999995 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/04/23,11.246636378942494 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/04/24,3.0521256199999995 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/04/24,3.1465593199999984 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/06/03,17.592583335633343 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/06/03,13.723933333695848 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/07/05,8.45487728671 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/07/05,7.833683526459998 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/06/26,14.84891668046668 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/07/04,5.104002219984996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/07/28,9.69437500301249 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/08/05,18.933358333333345 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/09/07,4.2098780299999925 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/09/07,4.5844992433333225 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/08/29,3.1642446987683286 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/08/22,3.675125009999992 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/08/22,3.433812123333329 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/09/23,5.371221976233338 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/09/23,7.371004166761666 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/09/22,4.128756819999996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/11/01,19.11108335652335 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/11/09,5.877758719226664 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/10/24,4.963584179999993 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/12/03,10.02818085518583 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/11/26,6.125406825284996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/11/26,6.430729555262491 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2019/12/11,13.094299999984983 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/01/29,7.036452260072487 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/01/29,8.192372710144987 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/02/21,16.096643943966694 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/03/09,4.722256839999992 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/03/09,3.9368597507692265 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/04/02,9.539841678759162 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/04/02,10.252925016549996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/03/24,10.95754167375917 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/04/01,7.0950409 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/05/04,12.403553656689994 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/05/04,7.677355311746672 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/04/25,3.470687500322509 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/05/03,6.165484489318319 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/05/27,17.236308333333334 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/06/04,6.419942816055836 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/06/28,8.956574981284986 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/06/21,3.6492681999999927 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/06/21,3.735993199999992 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/07/06,3.1970249999999982 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/08/08,9.541972985484168 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/08/08,6.789793768737502 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/07/23,5.291951518381659 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/07/22,10.167425758478332 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/08/24,4.523420450674997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/08/24,4.849911361062495 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/09/08,12.629883333475828 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/09/25,6.260337499185003 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/09/25,7.687074998617509 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/10/10,3.999763639999993 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/11/28,10.457897094238334 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/11/28,12.8554000261075 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/12/06,3.1576450796153823 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/12/06,3.954132847307685 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2020/12/29,2.695997862499999 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/01/30,8.541889645512834 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/03/11,9.434783333543356 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/04/05,13.314200003717495 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/04/05,14.52450625220249 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/03/27,7.336383324363336 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/04/04,16.094733336878335 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/04/28,9.547624996725007 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/05/06,6.680008339130826 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/06/08,18.115816666999148 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/06/08,16.82521666718915 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/05/23,2.3061250066924965 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/05/23,2.1992500021074983 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/06/07,3.820852299999996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/06/24,3.325686371594997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/06/24,3.3144863716674973 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/06/23,2.9616772500475013 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/08/11,6.107075001157506 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/08/11,6.102600000867506 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/09/03,7.745246971714168 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/08/27,6.212342423785841 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/08/27,4.6796500005475 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/09/11,3.989500000000003 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/08/26,21.929066666714167 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/09/27,3.894029544999993 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/11/06,6.644083958144995 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/11/09,6.623435611666662 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/11/07,5.238139531999995 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/11/07,4.947169539999995 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/11/04,3.0459636399999965 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/11/04,2.755157124999999 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2021/10/29,12.890833333318326 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/02/10,16.542487502329994 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/02/10,7.872144230769242 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/02/19,18.87058517161752 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/02/19,15.751532649214148 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/02/27,21.245233333333356 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/02/26,21.59448333333335 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/04/08,3.461900000000006 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/04/08,3.371725000000006 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/03/22,6.516483344905827 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/05/09,10.89019166906166 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/05/10,3.973665915072495 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/05/10,5.049839403478328 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/05/09,6.269850000639994 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/05/01,5.211321976408327 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/04/24,9.746308333333328 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/04/24,10.259941666666665 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/04/23,4.924763638262494 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/06/03,3.978181013076923 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/06/03,3.878953713076923 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/05/26,7.239761373976663 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/05/26,7.692307203114996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/07/11,3.683784090072493 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/07/11,3.8132500000724936 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/06/29,3.472892267999995 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/07/05,7.329900001027491 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/07/05,9.611508333738316 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/07/04,3.055638583333332 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/06/26,11.006075005822511 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/08/06,11.540425000199988 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/08/06,11.780700000199984 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/08/05,6.03668409350083 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/07/28,13.577141666809172 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/08/31,3.2931454550724952 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/08/31,3.214470455072496 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/08/30,3.653175000144993 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/08/30,4.4023749999999895 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/10/09,3.3461712233333287 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/10/08,3.126891642307692 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/09/23,4.723424169999994 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/09/23,3.5834463107692267 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/11/07,4.871723488743339 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/11/07,4.178187133405837 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/11/10,2.893228950000001 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/11/10,3.12468415 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/11/09,3.3221127799999963 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/11/26,2.4496032500000013 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/11/26,2.970482068269231 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/12/28,5.71451968700416 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2022/12/28,3.985763830769226 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/02/10,17.121686390490026 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/02/06,4.542337886666661 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/02/06,5.209245454999993 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/01/28,4.363976429999996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/02/27,6.444049991925008 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/03/09,3.3399484499999987 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/04/11,4.1535250004549935 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/04/11,4.142575000407493 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/04/10,2.920106990000001 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/04/03,4.065604559999996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/04/03,4.009454549999996 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/04/02,3.689947744999997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/03/26,4.051811069999998 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/03/26,4.601451469999994 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/05/05,7.087975001272488 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/05/05,6.644350001154995 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/05/26,8.755429540264997 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/06/05,2.8771522500000044 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/05/29,17.379816669111683 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/05/29,21.429491669111684 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/05/28,2.793595474999998 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/06/30,8.428325000312492 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/06/30,9.78577500016749 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/06/29,3.094525000000005 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/08/05,16.018941666809166 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/07/31,9.679288256714177 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/07/31,29.671258333570844 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/07/23,9.5276340900725 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/08/27,7.322050000240007 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/09/02,5.3106500004824975 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/09/02,6.6512757588858245 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/09/01,2.9307200649999974 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/10/04,2.466456869999999 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/10/04,4.913777418739161 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/10/03,4.7870772899999965 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/11/11,10.268382013631651 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/10/28,10.618252269999989 +Tuxedo Lake,6244722,-74.2081179878544,41.198161919882224,2023/10/28,10.832302269999982 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/01/05,3.057877250000005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/02/23,22.47810000000001 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/02/22,23.1518 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/02/23,22.47810000000001 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/02/22,23.1518 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/04/04,10.916016666571682 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/04/04,10.916016666571682 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/05/05,3.5405199965725003 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/04/28,7.789313645002506 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/05/06,6.578328033623329 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/04/27,5.088123715384609 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/05/05,3.5405199965725003 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/04/28,7.789313645002506 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/05/06,6.578328033623329 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/04/27,5.088123715384609 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/06/06,6.4958833332358425 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/06/07,9.322054170484172 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/05/29,3.851364730769223 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/05/22,4.7873431902649966 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/06/06,6.4958833332358425 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/06/07,9.322054170484172 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/05/29,3.851364730769223 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/05/22,4.7873431902649966 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/06/22,8.34632499951001 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/06/23,9.07902500029 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/06/22,8.34632499951001 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/06/23,9.07902500029 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/09,4.68327576036 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/02,6.908616687816672 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/07/24,6.000425012587494 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/10,9.284860434966786 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/01,3.1333634999999997 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/07/25,8.806025001052491 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/09,4.68327576036 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/02,6.908616687816672 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/07/24,6.000425012587494 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/10,9.284860434966786 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/01,3.1333634999999997 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/07/25,8.806025001052491 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/25,3.5924690446190466 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/09/11,2.6788022500474984 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/09/02,7.510112430816731 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/26,10.244556320769226 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/25,3.5924690446190466 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/09/11,2.6788022500474984 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/09/02,7.510112430816731 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/08/26,10.244556320769226 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/10/05,4.9823194451619495 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/09/26,15.88185000009501 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/10/04,19.029687499769985 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/09/27,8.246787887004173 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/10/05,4.9823194451619495 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/09/26,15.88185000009501 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/10/04,19.029687499769985 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/09/27,8.246787887004173 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/11/05,5.035004169714163 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/10/29,9.429541667641647 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/11/05,5.035004169714163 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/10/29,9.429541667641647 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/12/08,5.951974999785006 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/11/22,12.771175001257504 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/12/07,5.766422367251978 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/11/30,7.81118113095237 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/11/21,3.859375000964994 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/12/08,5.951974999785006 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/11/22,12.771175001257504 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/12/07,5.766422367251978 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/11/30,7.81118113095237 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2015/11/21,3.859375000964994 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/01/24,3.1673922657692306 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/01/24,3.1673922657692306 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/02/26,7.650491666651668 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/03/05,21.88613333333335 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/02/26,7.650491666651668 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/03/05,21.88613333333335 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/04/05,7.067618369355825 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/04/05,7.067618369355825 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/04/21,4.316394164431671 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/05/08,3.006244230769232 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/04/21,4.316394164431671 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/05/08,3.006244230769232 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/05/23,4.956033334725841 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/06/09,5.35039091052999 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/05/31,4.126575000332495 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/05/23,4.956033334725841 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/06/09,5.35039091052999 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/05/31,4.126575000332495 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/06/24,4.019065914527499 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/07/02,3.519000000000007 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/06/24,4.019065914527499 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/07/02,3.519000000000007 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/11,6.259620869823336 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/04,5.437391666666663 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/07/26,6.164333339333332 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/03,6.29305440153845 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/07/27,9.425763003604036 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/11,6.259620869823336 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/04,5.437391666666663 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/07/26,6.164333339333332 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/03,6.29305440153845 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/07/27,9.425763003604036 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/09/05,4.802468180072499 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/27,2.9892125004800034 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/09/04,9.197615000380004 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/28,9.283410256410251 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/09/05,4.802468180072499 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/27,2.9892125004800034 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/09/04,9.197615000380004 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/08/28,9.283410256410251 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/10/07,7.800306820237506 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/09/28,3.219166666189172 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/09/21,6.5744554520000005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/10/06,10.053841666666663 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/10/07,7.800306820237506 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/09/28,3.219166666189172 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/09/21,6.5744554520000005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/10/06,10.053841666666663 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/11/08,5.504273637145001 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/10/23,3.597698865142506 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/11/07,6.329311708974354 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/11/08,5.504273637145001 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/10/23,3.597698865142506 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/11/07,6.329311708974354 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/12/10,12.22530417239669 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/12/09,13.090100000199987 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/11/23,23.1701750008 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/12/10,12.22530417239669 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/12/09,13.090100000199987 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/11/23,23.1701750008 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/01/11,9.909180419086663 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/12/26,24.44116666666665 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/01/11,9.909180419086663 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2016/12/26,24.44116666666665 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/03,14.350854168236696 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/01/27,8.443979178639164 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/04,2.658525000000006 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/03,14.350854168236696 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/01/27,8.443979178639164 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/04,2.658525000000006 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/19,9.256215703119445 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/03/08,10.410875379838588 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/27,10.178922660512823 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/20,7.24924189799621 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/19,9.256215703119445 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/03/08,10.410875379838588 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/27,10.178922660512823 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/02/20,7.24924189799621 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/04/09,10.43861081461538 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/04/09,10.43861081461538 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/05/03,6.543806246117503 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/04/24,7.92456280833917 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/05/03,6.543806246117503 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/04/24,7.92456280833917 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/06/11,11.839995838700842 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/06/03,8.070791857834408 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/06/11,11.839995838700842 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/06/03,8.070791857834408 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/07/06,15.917595833950845 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/07/05,11.661813159935868 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/06/28,6.006954173076927 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/07/06,15.917595833950845 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/07/05,11.661813159935868 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/06/28,6.006954173076927 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/08/06,9.133779166884164 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/07/30,7.246306804487177 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/08/06,9.133779166884164 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/07/30,7.246306804487177 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/08/30,5.645211533085265 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/08/23,7.212406250432512 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/09/07,2.922925000000005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/08/30,5.645211533085265 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/08/23,7.212406250432512 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/09/07,2.922925000000005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/10/01,3.2035965902375056 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/09/24,5.905453194014444 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/10/02,11.874177564102554 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/09/23,10.025694987435902 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/10/01,3.2035965902375056 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/09/24,5.905453194014444 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/10/02,11.874177564102554 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/09/23,10.025694987435902 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/11/11,7.618580356970357 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/11/10,12.185241667266666 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/10/25,10.95540317199999 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/11/11,7.618580356970357 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/11/10,12.185241667266666 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/10/25,10.95540317199999 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/12/04,12.02866223879418 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/12/29,8.684933332620862 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/01/06,22.115583333333348 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2017/12/28,21.657475000600005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/03/26,8.724187513362496 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/05/05,4.324900000144999 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/05/29,4.990849088362496 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/07/09,3.4890513582174965 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/06/30,2.23116250019 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/07/08,4.86787886741499 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/07/01,16.840875000927493 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/08/09,3.1696750000000047 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/08/25,15.708250017250036 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/10/05,7.699067811226652 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/12/08,21.642310415284182 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2018/11/22,5.980780769230763 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/01/08,12.421899999999988 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/02/09,7.333174999345007 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/02/02,22.539900000000006 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/02/01,21.88613333333335 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/03/05,13.237266666404164 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/02/26,21.867666666666683 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/04/23,8.452071974745833 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/05/08,3.4919500000000063 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/06/09,3.159056819999997 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/07/03,2.5798125002424994 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/06/26,5.382524999237493 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/07/04,5.260495608860833 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/06/25,6.813540216153841 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/07/28,2.7408500005050005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/08/05,7.883288725961531 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/07/27,8.262047737995836 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/09/05,6.185939999620002 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/09/06,5.279618180217495 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/09/21,4.81508242338584 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/10/08,17.654491666474172 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/09/29,9.007369696956664 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/11/08,10.924347915701675 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/11/09,3.4991999999999943 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/10/24,3.5679822015384577 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/12/03,9.939391672876658 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2019/12/11,5.671766882307683 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/02/05,5.186124999770002 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/03/08,9.048953364960818 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/03/07,21.48859166666669 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/02/29,22.689058333333342 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/04/01,6.626564648076911 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/05/02,8.974541797574409 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/04/25,5.844231072933573 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/05/10,8.924168180457496 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/05/03,2.732537191666665 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/05/27,3.7183363605074953 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/06/04,3.2548501807692265 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/05/26,4.415320450144994 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/07/05,4.726469448426071 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/07/06,5.840529000256407 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/08/06,4.57182500064 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/07/22,6.299153267948716 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/08/31,2.880575001532497 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/08/22,6.585383339775826 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/08/30,8.405401923124417 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/08/23,9.86390711410256 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/09/23,6.565474995320013 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/10/10,17.954183335823338 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/10/01,2.972706750000002 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/11/10,9.63894913238095 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/10/25,11.548025089470007 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2020/12/29,5.078665384687875 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/01/29,7.082670862773333 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/01/30,14.495899999999988 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/03/11,8.046583332715855 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/03/03,13.697249999904995 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/04/03,10.183600006947511 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/05/06,3.6281007282051214 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/06/06,4.0911750009924965 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/06/07,4.8788890025640965 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/06/23,4.481425759053327 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/08/09,16.91704166645165 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/08/02,7.820622675278578 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/07/24,3.3713750035625 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/08/10,10.436106646538455 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/08/01,11.487759104028328 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/07/25,6.72760100794871 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/09/10,4.898938461538459 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/09/11,4.6468954700000005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/09/02,3.3838250000000016 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/09/26,5.483114783238331 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/11/06,6.916821551449163 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/10/28,4.850731260525004 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/11/05,3.9799615769230776 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/10/29,3.145340491666665 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2021/11/24,2.912969824999998 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/01/08,5.493163668086071 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/01/25,12.937725000184995 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/02/26,23.77561666666665 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/03/22,18.3878500185425 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/05/09,3.096513222435896 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/05/08,8.135250007219986 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/05/01,7.166304172336659 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/04/30,6.684302277897488 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/04/22,3.7073326923076895 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/05/31,19.891133333643328 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/05/26,5.412088268414168 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/06/10,4.416050000552492 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/05/24,3.78855379166666 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/07/04,7.9927931800725 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/06/29,3.7051939233333298 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/07/11,5.173377307893565 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/07/04,21.59209999980502 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/07/03,7.438904163491674 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/06/26,4.309867427536662 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/06/25,4.563860659294867 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/08/02,4.520098024247557 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/07/28,7.673650000072497 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/09/10,6.8732023643561 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/08/24,6.289299995120013 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/08/29,5.054867744615376 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/08/28,7.633776536789169 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/10/09,3.5490833337158394 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/09/30,23.36968333325834 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/09/21,6.663142177456948 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/11/09,3.588307409615382 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/11/08,3.4054151707692277 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/12/10,3.0780234416666645 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/11/24,6.703591670306656 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/01/11,4.659052289999995 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/12/27,12.359625001122508 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2022/12/26,3.6670937353846087 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/02/04,22.304175000000008 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/01/28,2.851150000000004 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/02/20,9.090285714550715 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/04/10,4.957739099999991 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/04/09,3.740372909999997 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/04/02,4.286179079615377 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/04/01,3.901158336666665 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/05/11,4.402568194999994 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/04/25,2.890275000000005 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/05/31,10.678716666881655 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/05/26,3.1089431807249985 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/06/05,8.40033409059751 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/06/04,2.6022000000000007 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/05/28,5.360072023333325 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/05/27,14.122158333550834 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/07/07,9.951945830080833 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/07/06,5.381159476410248 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/06/21,6.256180313333333 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/08/05,5.381125000200004 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/07/31,3.606850000000001 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/07/30,5.717258333475827 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/07/23,4.351725000047495 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/07/22,7.568633338710827 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/09/06,2.6928374998850004 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/09/01,5.762097619120118 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/09/08,8.27890923076923 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/09/01,7.046263462179481 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/08/31,6.842928645072496 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/08/23,8.273951513405835 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/10/03,10.056318640685 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/10/11,6.29524820538461 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/10/03,5.153419157948715 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/10/02,6.499075 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/11/03,4.418021362217499 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/10/27,23.190533334133324 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/11/28,5.868070241025632 +Otsego Lake,8083243,-74.89701787858628,42.762424629337474,2023/11/27,4.638432930841727 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2014/12/27,4.662928796606664 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2014/12/27,6.812845493295 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/03/02,11.881258333118335 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/03/02,11.881258333118335 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/04/02,13.294491666476668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/04/02,13.294491666476668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/05/04,4.534418199383326 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/05/04,4.7407284260391584 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/05/04,4.534418199383326 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/05/04,4.7407284260391584 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/06,2.8887039781383312 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/05/28,11.660475000735 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/05/28,11.0674000005925 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/05,10.640116670164156 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/05,10.95307500349749 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/06,2.8887039781383312 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/05/28,11.660475000735 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/05/28,11.0674000005925 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/05,10.640116670164156 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/05,10.95307500349749 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/29,8.09821250066252 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/29,2.888866666451672 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/22,20.646725000114994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/07,3.4208567500000027 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/07,3.9073000000000047 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/21,12.62325833549082 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/21,13.033283332975826 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/29,8.09821250066252 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/29,2.888866666451672 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/22,20.646725000114994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/07,3.4208567500000027 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/07,3.9073000000000047 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/21,12.62325833549082 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/06/21,13.033283332975826 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/08/09,12.880241666624174 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/31,12.798583333533337 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/31,12.80116666686667 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/24,13.604575000284994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/08/01,7.7843518730769246 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/23,7.762710622285843 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/23,12.556576898660012 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/08/09,12.880241666624174 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/31,12.798583333533337 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/31,12.80116666686667 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/24,13.604575000284994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/08/01,7.7843518730769246 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/23,7.762710622285843 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/07/23,12.556576898660012 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/08/25,3.706043958333327 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/09/09,13.364283333333336 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/09/09,13.734383333333334 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/09/02,9.899675000435002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/08/25,3.706043958333327 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/09/09,13.364283333333336 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/09/09,13.734383333333334 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/09/02,9.899675000435002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/09/26,11.515375001374991 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/10/11,13.715425000095008 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/10/11,17.245025000095012 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/10/04,13.655158333665812 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/09/26,11.515375001374991 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/10/11,13.715425000095008 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/10/11,17.245025000095012 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/10/04,13.655158333665812 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/11/04,12.32073333355583 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/11/04,11.514033333355828 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/10/27,22.834743751477507 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/11/04,12.32073333355583 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/11/04,11.514033333355828 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/10/27,22.834743751477507 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/12/07,14.892613263124396 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/11/21,4.808333353630832 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/12/07,14.892613263124396 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2015/11/21,4.808333353630832 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/01/07,12.01393334506083 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/01/07,13.203052092778332 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/01/07,12.01393334506083 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/01/07,13.203052092778332 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/04/05,9.44978750395249 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/03/27,6.568785435581665 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/03/27,6.710210435939166 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/04/05,9.44978750395249 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/03/27,6.568785435581665 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/03/27,6.710210435939166 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/05/07,7.364860003677495 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/04/21,6.793709106732496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/05/07,7.364860003677495 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/04/21,6.793709106732496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/05/23,9.058183343793337 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/07,4.860920132260835 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/07,6.396701161075 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/05/31,6.953208333428347 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/05/23,9.058183343793337 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/07,4.860920132260835 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/07,6.396701161075 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/05/31,6.953208333428347 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/07/01,10.87616499981002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/24,6.298493180072512 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/07/09,3.3844250000000007 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/07/09,3.33145 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/23,12.517754166929167 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/23,8.529160992119158 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/07/01,10.87616499981002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/24,6.298493180072512 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/07/09,3.3844250000000007 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/07/09,3.33145 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/23,12.517754166929167 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/06/23,8.529160992119158 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/11,17.822224999047496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/02,8.992275000417518 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/02,11.089241666714171 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/07/26,16.407783335833322 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/11,17.822224999047496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/02,8.992275000417518 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/02,11.089241666714171 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/07/26,16.407783335833322 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/03,10.563391666761664 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/03,11.53516666676167 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/27,7.504033335535829 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/11,16.708100000095 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/11,16.75030909038 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/04,12.021347922416671 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/26,9.34485625512 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/26,13.259700002442504 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/03,10.563391666761664 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/03,11.53516666676167 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/27,7.504033335535829 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/11,16.708100000095 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/11,16.75030909038 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/04,12.021347922416671 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/26,9.34485625512 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/08/26,13.259700002442504 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/10/05,11.30499166640417 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/10/05,11.711191666404169 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/28,12.111943335043325 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/10/06,15.499000000142498 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/27,15.290950000047491 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/27,12.967299999999982 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/10/05,11.30499166640417 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/10/05,11.711191666404169 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/28,12.111943335043325 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/10/06,15.499000000142498 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/27,15.290950000047491 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/09/27,12.967299999999982 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/11/07,12.732450000332484 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/11/07,12.732450000332484 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/11/23,13.378615731585944 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2016/11/23,13.378615731585944 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/01/01,9.675594231179224 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/01/01,4.182076688269227 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/01/01,9.675594231179224 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/01/01,4.182076688269227 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/02/10,22.27547500000001 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/02/10,12.02168333311833 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/02/10,22.27547500000001 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/02/10,12.02168333311833 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/02/26,24.44116666666665 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/02/27,6.161147752859992 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/02/26,24.44116666666665 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/02/27,6.161147752859992 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/04/08,10.363643749785012 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/03/23,13.98381666891916 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/04/08,10.363643749785012 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/03/23,13.98381666891916 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/04/24,10.127425005055 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/05/09,22.954249999907496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/05/09,23.17767499990749 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/04/23,16.607266667426668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/04/23,17.717308333523327 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/04/24,10.127425005055 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/05/09,22.954249999907496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/05/09,23.17767499990749 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/04/23,16.607266667426668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/04/23,17.717308333523327 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/11,9.638150000290016 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/02,12.0607875009025 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/02,12.847904167426684 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/03,4.406508538666662 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/11,9.638150000290016 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/02,12.0607875009025 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/02,12.847904167426684 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/03,4.406508538666662 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/07/04,11.147537497930015 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/07/04,11.068912497740016 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/27,10.31713541745166 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/07/05,12.998891666881663 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/26,12.093247361369995 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/26,11.234375011817496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/07/04,11.147537497930015 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/07/04,11.068912497740016 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/27,10.31713541745166 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/07/05,12.998891666881663 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/26,12.093247361369995 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/06/26,11.234375011817496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/07/29,9.05489624142749 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/08/06,14.23465833248834 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/07/29,9.05489624142749 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/08/06,14.23465833248834 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/08/30,12.029962519687512 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/09/07,10.782402250000002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/08/29,21.17236666608668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/08/29,19.094808333493344 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/08/30,12.029962519687512 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/09/07,10.782402250000002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/08/29,21.17236666608668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/08/29,19.094808333493344 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/08,10.717329168424168 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/08,7.824849988500001 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/01,19.027914166666665 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/09/23,16.463924999952532 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/08,10.717329168424168 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/08,7.824849988500001 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/01,19.027914166666665 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/09/23,16.463924999952532 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/11/09,6.299499994275007 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/24,13.63590834069084 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/24,13.316150007532508 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/11/10,3.1881500000000096 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/25,25.43017500229998 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/11/09,6.299499994275007 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/24,13.63590834069084 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/24,13.316150007532508 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/11/10,3.1881500000000096 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/10/25,25.43017500229998 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/11/25,6.953681241435004 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/12/03,7.664827269999996 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/12/03,6.188490939999998 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/01/05,22.348225000000006 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/12/27,22.37892500000001 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/12/27,22.37892500000001 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2017/12/28,21.75304166666668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/02/06,22.76205 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/01/28,7.42888125003502 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/04/11,6.660174997407513 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/04/02,9.932277517305 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/04/02,9.651258762704998 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/03/26,10.660302100150831 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/03/25,8.517512449743588 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/03/25,6.895312341282041 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/05/05,16.13909166686666 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/05/29,15.378958333428336 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/05/28,10.890875758665832 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/05/28,4.708450000434991 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/07/07,7.397910708800826 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/07/07,7.397819043094159 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/06/30,7.952400000047512 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/06/21,7.479304163224173 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/06/21,7.61120416176667 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/07/08,4.117933518666666 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/06/29,12.798416680566676 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/06/29,12.365133358733342 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/08/09,2.784429500000003 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/07/31,3.096225000000004 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/07/31,9.126150000192498 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/09/02,7.950308334778345 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/08/24,16.134150000189994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/08/24,16.134150000189994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/08/25,21.89474374954001 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/11/04,19.581149999677507 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/12/06,7.749762498112505 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2018/12/06,9.26092708365084 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/01/31,12.524625000047502 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/03/04,22.26459166666668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/03/04,22.26459166666668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/05/08,3.566519230769228 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/06/08,6.006073453424165 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/06/08,6.456613147347497 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/07/10,11.375929166736672 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/07/10,11.517429166736669 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/06/25,3.9262980541025625 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/08/11,14.207200015194994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/08/11,14.677600011169991 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/07/26,16.74975000014249 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/07/26,16.695691666809157 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/08/03,4.413897754807691 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/08/03,13.0170000000725 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/07/27,13.902372916714164 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/09/05,9.8149750306925 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/09/04,16.29852250000001 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/09/04,15.938847499737497 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/09/21,10.28822917121666 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/09/29,6.1340750005550015 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/10/23,12.042592916056668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2019/11/23,7.053986745160828 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/03/07,21.909850000000016 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/02/20,21.48859166666669 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/04/07,14.147206294067496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/04/07,14.353851745532491 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/03/22,14.610844999787489 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/03/22,15.33081999978748 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/05/25,5.498186666714172 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/05/25,5.853003333380837 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/05/26,21.35204166934664 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/07/05,14.619081666166672 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/06/26,23.422375000094995 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/06/26,24.459058333333328 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/07/04,9.246352279999996 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/07/04,9.835827280000002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/08/06,7.696420830613347 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/07/28,12.041305303781671 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/07/28,18.611366668541685 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/08/05,7.638625000217501 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/08/05,8.333625 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/07/29,9.509283333478333 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/08/22,7.847464588503326 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/09/06,18.331225000200003 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/09/06,22.545597916329164 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/08/30,17.300700000427476 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/10/09,8.652677093130825 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/09/30,8.43396250013502 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/09/30,8.426500000135022 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/09/23,9.045420840373325 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/10/01,7.466274999999997 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/09/22,15.805195838810828 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/09/22,18.93986875230002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/11/10,10.0878124999875 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/10/25,6.762049999570008 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/11/09,12.244575001245 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/11/09,13.589533335633332 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/12/03,14.275127122788328 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2020/12/03,17.850641698459192 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/01/28,21.867666666666683 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/01/28,21.791766666666685 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/03/09,8.788533332688345 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/03/09,8.788791666021678 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/03/02,22.090908333333346 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/02/21,23.62966666666665 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/03/10,11.437500004504995 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/04/10,11.535352121563328 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/04/10,11.592752120078323 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/04/03,11.183677084938337 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/04/02,11.499502249999995 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/04/02,3.30003846153846 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/04/26,13.814156299452506 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/04/26,13.717106291810005 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/05/04,3.5449000000000077 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/05/04,3.2412750000000075 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/04/27,17.979550018447505 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/06/06,22.54774166743417 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/06/05,19.48061249999999 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/06/05,20.291062500095 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/06/29,23.553958333523337 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/06/29,23.564958333523336 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/07/07,3.557375000000002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/07/07,3.0324500000000025 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/06/30,7.920104166811667 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/06/21,21.75659999990752 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/06/21,21.96404999926251 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/08/09,15.175150013245007 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/07/31,13.263531257745004 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/07/31,12.913460009660012 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/07/24,16.452331665906666 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/08/08,15.027557506320012 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/08/08,12.888866879775824 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/07/23,14.63615833333333 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/07/23,16.027747916714155 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/09/10,8.144735433686664 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/08/25,8.698374998445004 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/09/09,12.806416666904168 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/09/09,12.63073333357084 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/08/24,14.472712500000002 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/08/24,15.073558333333336 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/09/26,14.259312083495834 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/10/11,3.870450000000008 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/10/11,2.858925000000005 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/09/25,13.731325000142508 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/09/25,14.726100000142496 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/10/28,8.1449150366675 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/11/05,3.032852250047502 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2021/11/24,5.702125776153839 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/01/07,21.779683333333352 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/01/23,10.049308333118349 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/02/09,21.675758333333352 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/01/24,21.75304166666668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/02/24,5.859199997205014 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/02/24,10.77478333333334 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/02/24,10.77478333333334 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/04/05,17.2522000059725 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/04/05,24.37314166915663 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/05/08,19.133275001919998 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/04/30,10.810250004209996 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/04/29,12.362274996967503 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/04/29,12.265308330685832 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/04/22,15.391450008614989 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/06/05,20.820041667094184 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/06/08,5.126177250047489 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/06/08,2.593004499999999 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/05/24,3.912527294999992 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/09,14.76193291681417 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/09,17.081289166766677 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/04,12.394707916666654 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/11,11.019281252024989 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/10,11.68408333862333 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/10,15.924733338328332 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/03,16.564383337933315 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/02,3.3719772500000045 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/02,3.429525000000007 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/06/25,16.71744167332914 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/06/24,9.573031245839992 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/06/24,9.688499997929998 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/26,6.051691681999171 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/07/26,7.5585917167191665 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/11,8.08805834139333 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/11,14.386150011832491 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/04,14.3161000002375 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/03,17.624325000000017 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/03,12.000249999737504 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/09/10,16.36372916562168 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/29,9.582964596553325 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/29,9.94153959655332 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/24,11.999352500047491 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/08/28,10.924382578333327 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/10/06,16.89065000002502 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/10/06,13.894050000100004 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/11/08,15.846809846856656 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/11/07,17.251059584140823 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/11/07,14.170805280047478 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/10/30,16.3233250032225 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/10/30,13.292600014499994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/10/23,15.8247500024425 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/10/22,17.237474999952504 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/10/22,12.897875000047486 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/11/22,10.013660417431668 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/12/10,5.600856852820511 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/12/01,3.668910177884615 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/12/01,5.960339262499989 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/11/23,22.39061666723663 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2022/11/23,16.60060417413666 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/02/03,23.026316666666663 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/03/07,5.8921136 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/03/07,3.394396520914228 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/04/09,26.682536666904188 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/04/08,21.13178333395083 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/04/08,22.37963333409333 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/04/01,27.099016667474125 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/05/09,9.138710416904168 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/04/27,12.997325040394996 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/04/27,13.42975837366083 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/05/11,8.264966666714184 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/05/10,12.030441675866673 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/05/10,14.004291680609173 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/06/10,17.602457916551653 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/06/10,12.754891665816672 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/05/31,12.653549999689988 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/06/04,13.243357649125008 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/05/27,12.657717433405836 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/05/26,8.202119320702494 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/05/26,9.398694319984994 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/07/06,13.278814396761664 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/07/05,3.794075000000003 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/07/05,5.001875000000009 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/06/27,2.8053250000000043 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/06/27,2.63325 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/07/24,25.520924583333343 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/07/24,16.112329167029156 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/08/06,21.988233333333334 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/08/06,16.2885250000475 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/07/22,10.443119444966936 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/09/06,11.201014587715836 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/09/08,3.7510500000000047 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/08/31,20.58733333371332 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/08/22,14.504958349433345 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/08/22,17.04620834253335 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/10/08,9.456355316211663 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/10/03,11.713829170884164 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/10/02,8.752510606666663 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/10/01,14.010397916714153 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/10/01,13.549300756904143 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/11/03,18.11951969910915 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/11/26,4.265750002424992 +Cayuta Lake,8100185,-76.73564765792662,42.36690756756194,2023/11/26,4.387675002017492 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2014/12/27,6.2900749999999865 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2014/12/27,6.524301516714156 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/03/25,8.942614999952518 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/03/25,8.673700000117517 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/04/02,15.52646666685667 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/04/02,16.494650000357506 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/03/25,8.942614999952518 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/03/25,8.673700000117517 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/04/02,15.52646666685667 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/04/02,16.494650000357506 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/05/04,15.689575492348332 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/05/04,9.015991675914158 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/05/04,15.689575492348332 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/05/04,9.015991675914158 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/05/28,5.060816665279169 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/05/28,5.079116664659169 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/06/05,18.870775007232503 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/06/05,21.08616667605668 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/05/28,5.060816665279169 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/05/28,5.079116664659169 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/06/05,18.870775007232503 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/06/05,21.08616667605668 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/07,10.6443750000725 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/07,4.139350000047499 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/07,10.6443750000725 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/07,4.139350000047499 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/31,21.48815833333332 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/31,21.474541666666656 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/23,17.093196973710846 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/23,16.05886292749416 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/31,21.48815833333332 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/31,21.474541666666656 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/23,17.093196973710846 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/07/23,16.05886292749416 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/09/01,12.441686668671666 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/09/01,10.675228336038325 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/09/09,12.314860416524173 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/09/09,11.07045416619166 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/09/01,12.441686668671666 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/09/01,10.675228336038325 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/09/09,12.314860416524173 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/09/09,11.07045416619166 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/03,22.326100000000007 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/11,10.91533289076923 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/11,5.401896268974356 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/03,22.326100000000007 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/11,10.91533289076923 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/11,5.401896268974356 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/11/04,20.66155417596664 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/11/04,17.685806951444444 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/27,20.952591666411667 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/27,17.322741666316656 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/11/04,20.66155417596664 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/11/04,17.685806951444444 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/27,20.952591666411667 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/10/27,17.322741666316656 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/12/06,7.3089499923175 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/12/06,6.859966660324169 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/12/06,7.3089499923175 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2015/12/06,6.859966660324169 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/01/07,10.588059735714282 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/01/07,13.092013194776936 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/01/07,10.588059735714282 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/01/07,13.092013194776936 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/03/27,10.818923429508338 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/03/27,10.901898429513338 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/03/27,10.818923429508338 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/03/27,10.901898429513338 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/06/07,3.053481750047501 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/06/07,3.1965000000000026 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/06/07,3.053481750047501 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/06/07,3.1965000000000026 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/02,5.588054165374172 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/02,5.595083332040836 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/10,4.53700000000001 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/10,2.6936750000000043 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/07/25,17.292175000627513 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/07/25,17.845200010640017 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/02,5.588054165374172 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/02,5.595083332040836 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/10,4.53700000000001 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/10,2.6936750000000043 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/07/25,17.292175000627513 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/07/25,17.845200010640017 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/03,15.449259090000004 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/03,11.327493180000005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/11,3.3080022500000053 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/11,12.760383333118323 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/26,4.287564851333326 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/26,2.769695475 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/03,15.449259090000004 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/03,11.327493180000005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/11,3.3080022500000053 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/11,12.760383333118323 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/26,4.287564851333326 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/08/26,2.769695475 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/10/05,16.252116668966668 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/10/05,16.003691668966663 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/27,9.310309089999986 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/27,9.751170469999993 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/10/05,16.252116668966668 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/10/05,16.003691668966663 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/27,9.310309089999986 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/09/27,9.751170469999993 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/11/06,9.210125011862502 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/11/06,7.756650009230002 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/11/06,9.210125011862502 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2016/11/06,7.756650009230002 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/01/01,15.32860833316586 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/01/01,25.75000833563333 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/01/01,15.32860833316586 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/01/01,25.75000833563333 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/02/10,4.358924999755005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/02/10,4.284674999755005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/02/10,4.358924999755005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/02/10,4.284674999755005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/02/26,24.44116666666665 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/03/06,21.398850014274984 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/03/06,7.497452270072503 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/02/26,24.44116666666665 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/03/06,21.398850014274984 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/03/06,7.497452270072503 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/03/22,7.1321817500724976 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/03/22,4.824263461538458 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/03/22,7.1321817500724976 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/03/22,4.824263461538458 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/05/09,6.030511746085828 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/05/09,5.823561746850831 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/04/23,19.077502279999973 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/04/23,7.365339670769226 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/05/09,6.030511746085828 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/05/09,5.823561746850831 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/04/23,19.077502279999973 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/04/23,7.365339670769226 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/07/04,14.954566691966688 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/07/04,7.891533340568341 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/07/04,14.954566691966688 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/07/04,7.891533340568341 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/10/08,8.327200018052501 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/10/08,9.037575011000005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/10/08,8.327200018052501 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/10/08,9.037575011000005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/11/09,6.7227999964550085 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/10/24,8.002140051287498 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/10/24,10.425337504859996 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/11/09,6.7227999964550085 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/10/24,8.002140051287498 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/10/24,10.425337504859996 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/12/03,22.877208337933325 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2017/12/03,26.968150006899982 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/02/05,11.127374999785005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/02/05,11.395691667051665 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/04/02,13.346696319435011 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/04/02,13.447321328325016 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/04/10,2.843125000000005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/04/10,2.8196250000000056 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/03/25,20.26455833323837 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/03/25,18.18027291745669 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/05/28,16.911625002300024 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/05/28,5.145824243790835 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/07/07,10.90105833800583 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/07/07,10.642591671339163 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/06/21,6.633658328983337 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/06/21,6.515958329055836 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/06/29,7.008270849869166 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/06/29,4.811891071502734 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/08/24,18.592916666739185 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/08/24,18.014383333405853 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/11/04,4.278070083754161 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/11/04,4.379029171499164 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/12/06,4.076794230769231 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2018/12/06,5.077020384615378 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/01/31,12.526791666451665 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/02/08,2.846156423076924 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/02/08,4.094981671153839 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/03/04,22.76551666666667 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/03/04,22.752450000000003 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/02/24,23.96396666666665 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/06/08,21.00341666666668 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/06/08,19.993025000000003 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/05/31,14.23329166685669 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/05/31,13.018916666856692 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/07/10,12.719825017937492 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/07/10,12.593125016307496 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/08/11,14.279525005142498 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/08/11,13.946508333628328 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/07/26,22.365141666714152 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/07/26,21.49759166671416 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/09/04,9.660137738 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/09/04,6.233595509999994 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/11/23,6.377889024898332 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2019/11/23,5.557208340963331 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/01/02,7.704393770265002 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/01/02,12.173077102805832 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/02/03,22.67296666666667 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/04/07,11.241875006797498 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/04/07,11.103950006997495 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/03/22,22.67255002074748 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/03/22,20.44347502318999 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/07/04,3.014050000000004 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/07/04,8.84345000026499 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/07/28,15.613666682581686 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/07/28,16.967316680424187 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/08/05,2.855125000000003 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/08/05,13.556905607760834 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/09/06,7.8204409136775 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/09/06,7.941959472010831 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/09/22,16.903058333333323 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/09/22,15.58371666702416 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/11/09,5.554017747435893 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/11/09,5.454772267435894 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/12/03,14.476606528162764 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2020/12/03,3.751124201739168 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/02/05,22.490608333333338 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/02/05,22.373925000000007 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/01/28,21.77565833333335 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/03/02,12.90036666690417 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/02/21,22.658500000000007 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/04/10,3.649352082113336 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/04/10,3.9358499987800015 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/04/02,17.709758335680814 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/04/02,18.102584090144973 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/04/26,9.510675000175008 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/04/26,6.922000000627503 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/06/29,16.651758333333333 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/06/29,20.621266666761667 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/07/07,10.502433333598336 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/07/07,10.991066666786669 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/08/08,14.889300000119997 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/08/08,15.73735834164584 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/07/23,23.32825910000001 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/07/23,12.24269166671416 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/09/09,6.278024625959152 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/09/09,5.461450000644991 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/08/24,9.886270833333343 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/08/24,11.455591666666669 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/10/11,7.659144324069148 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/10/11,10.414400763335813 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/09/25,6.422435467999998 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/09/25,7.402053648000001 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/11/04,8.173449994387504 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/11/04,7.8109624993475135 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/10/28,14.095313648607492 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/10/27,23.166600007089997 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2021/10/27,21.748391671361677 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/01/07,6.28510833353334 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/01/07,6.28510833353334 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/01/07,4.613263911538459 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/01/07,5.410592299999994 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/02/24,8.177800000400005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/02/24,6.962349999340009 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/04/06,5.861177280692505 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/03/28,6.439333333533341 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/03/28,7.42233333353334 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/04/05,2.9318250000000057 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/04/05,3.098475000000005 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/04/29,6.150039047852499 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/04/29,5.086606852362499 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/06/05,4.008152270434995 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/06/05,4.584702270072496 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/05/31,2.859975000000004 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/05/31,12.573058333503331 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/07/09,6.606213253333335 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/07/09,2.8514015168116664 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/07/10,3.747900458072496 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/07/10,3.806138639999994 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/07/02,17.94053334028085 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/07/02,17.35664167150419 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/06/24,15.496718182299984 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/06/24,8.05353637 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/08/11,16.56699432367752 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/08/11,12.031225001150007 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/08/03,20.039750004932504 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/08/03,19.319075004479995 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/09/10,11.451338253380827 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/08/29,21.522347500000024 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/08/29,21.42589750000002 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/10/06,6.288390531250833 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/10/06,5.780420838904999 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/11/07,9.402585626666667 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/11/07,4.898211610769227 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/10/30,10.174433356380826 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/10/30,11.716625048395008 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/10/22,16.70005833333333 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/10/22,17.1588 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/11/22,14.829657395620009 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/11/22,10.830599055376664 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/12/01,6.958050000047496 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/12/01,3.9456250203624967 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/11/23,27.026291680466677 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2022/11/23,17.754168185633315 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/02/03,22.348225000000006 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/02/20,4.73321874953251 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/03/07,5.12877576666666 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/03/07,4.872700000457493 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/04/08,17.567750002394995 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/04/08,12.665000000332483 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/04/27,8.912733332258336 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/04/27,10.29362500218 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/05/10,14.752333339083355 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/05/10,6.858508337980834 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/04/24,7.409100019999999 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/04/24,10.847781126153842 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/06/10,9.338809090047508 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/06/10,9.137825756714175 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/06/03,18.863225000095 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/06/03,16.0122337498575 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/05/26,6.538475000379991 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/05/26,9.18573106754666 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/07/05,3.6453613799999953 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/07/05,4.262816960769228 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/08/06,10.893187120047513 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/08/06,12.770312119999987 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/09/06,3.622150101602561 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/08/22,15.743424999999991 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/08/22,19.97421666666668 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/10/03,11.1284950007 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/10/01,20.527208335633325 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/10/01,16.144125002299987 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/11/26,4.564883336739163 +Waneta Lake,8118603,-77.10170790760436,42.44495858924085,2023/11/26,10.051798485047488 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2014/12/26,9.676263649417503 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2014/12/27,10.04523027353846 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/03/09,22.177183333333343 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/03/08,21.848774999737515 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/03/08,21.96814999973752 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/02/20,21.867666666666683 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/03/09,22.177183333333343 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/03/08,21.848774999737515 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/03/08,21.96814999973752 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/02/20,21.867666666666683 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/04/02,9.00280833450333 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/04/02,9.00280833450333 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/05/03,4.409372235017504 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/05/11,18.27560000040001 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/05/11,22.82935833393333 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/05/04,10.389091666666662 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/04/25,16.311891675986665 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/04/25,15.25477501030249 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/05/03,4.409372235017504 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/05/11,18.27560000040001 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/05/11,22.82935833393333 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/05/04,10.389091666666662 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/04/25,16.311891675986665 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/04/25,15.25477501030249 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/06/05,5.174904546666658 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/06/05,5.174904546666658 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/06/29,16.67324416788918 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/07,13.832083333500837 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/06/29,16.67324416788918 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/07,13.832083333500837 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/08/07,15.484595832185835 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/31,4.231975000285 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/22,5.147522669511548 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/30,5.989433336440827 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/30,6.143000003202493 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/08/07,15.484595832185835 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/31,4.231975000285 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/22,5.147522669511548 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/30,5.989433336440827 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/07/30,6.143000003202493 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/09/01,16.092076666714153 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/08/23,4.388340542676663 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/09/09,12.23715314230768 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/08/31,15.293416666739173 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/08/31,14.399258333478338 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/09/01,16.092076666714153 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/08/23,4.388340542676663 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/09/09,12.23715314230768 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/08/31,15.293416666739173 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/08/31,14.399258333478338 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/10/10,11.175279173646675 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/09/24,9.18202500230001 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/10/11,2.691405385769229 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/10/10,11.175279173646675 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/09/24,9.18202500230001 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/10/11,2.691405385769229 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/11/04,10.106613198126936 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/10/26,10.884682500532504 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/11/03,14.239384090047482 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/11/03,14.075717423380809 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/10/27,15.528516667056667 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/11/04,10.106613198126936 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/10/26,10.884682500532504 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/11/03,14.239384090047482 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/11/03,14.075717423380809 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2015/10/27,15.528516667056667 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/01/07,9.937872921049172 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/01/06,14.966024999915016 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/01/06,4.919937062499998 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/01/07,9.937872921049172 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/01/06,14.966024999915016 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/01/06,4.919937062499998 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/02/23,13.682324999857506 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/02/23,13.682324999857506 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/04/03,6.235849999985006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/03/27,13.422347976441666 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/03/26,6.50684924089333 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/03/26,6.610549995064996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/04/03,6.235849999985006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/03/27,13.422347976441666 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/03/26,6.50684924089333 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/03/26,6.610549995064996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/04/27,3.7575653286666655 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/04/27,3.1154440366666694 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/04/27,3.7575653286666655 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/04/27,3.1154440366666694 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/07,6.363380253846148 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/07,6.363380253846148 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/22,13.176362501799996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/30,4.092013647119165 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/30,6.9037174511974975 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/23,6.900400001062495 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/22,13.176362501799996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/30,4.092013647119165 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/30,6.9037174511974975 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/06/23,6.900400001062495 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/09,4.623088492336668 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/02,5.481074854884163 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/10,5.396249999999996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/01,2.986752250047501 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/01,3.495629500000004 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/07/25,6.528475000674996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/09,4.623088492336668 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/02,5.481074854884163 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/10,5.396249999999996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/01,2.986752250047501 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/01,3.495629500000004 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/07/25,6.528475000674996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/03,22.87221666666668 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/11,15.466777270142474 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/02,20.490333334045808 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/02,15.642992423855828 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/26,8.678900000479993 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/03,22.87221666666668 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/11,15.466777270142474 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/02,20.490333334045808 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/02,15.642992423855828 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/08/26,8.678900000479993 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/10/05,20.288503611163616 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/26,16.715208333380822 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/27,7.068604549999991 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/10/05,20.288503611163616 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/26,16.715208333380822 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/09/27,7.068604549999991 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/11/06,5.705349998325006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/10/28,13.568175002084995 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/11/05,3.531179500000006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/10/29,23.96396666666665 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/11/06,5.705349998325006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/10/28,13.568175002084995 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/11/05,3.531179500000006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/10/29,23.96396666666665 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/12/08,8.065375000282511 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/12/07,3.644000000000008 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/12/07,2.511975000000001 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/12/08,8.065375000282511 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/12/07,3.644000000000008 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2016/12/07,2.511975000000001 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/03/05,11.004122917739162 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/03/06,14.931633344163338 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/03/05,11.004122917739162 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/03/06,14.931633344163338 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/03/22,11.605667423523323 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/03/22,11.605667423523323 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/05/08,9.568541667324173 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/05/09,17.67960834108831 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/04/30,16.404962500295003 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/04/30,17.306466666666665 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/04/23,14.280418180047468 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/05/08,9.568541667324173 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/05/09,17.67960834108831 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/04/30,16.404962500295003 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/04/30,17.306466666666665 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/04/23,14.280418180047468 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/06/09,17.652816666666673 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/06/02,10.569275009045002 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/06/10,7.031175000739989 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/06/09,17.652816666666673 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/06/02,10.569275009045002 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/06/10,7.031175000739989 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/07/04,3.735138629999993 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/07/03,5.280334844004164 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/07/03,4.351238266412497 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/06/26,4.9791749999999935 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/07/04,3.735138629999993 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/07/03,5.280334844004164 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/07/03,4.351238266412497 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/06/26,4.9791749999999935 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/10/07,13.081633333478315 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/10/07,4.374957337185961 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/09/30,8.73500012916686 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/09/21,14.580699999999984 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/09/21,15.988374999999992 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/10/07,13.081633333478315 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/10/07,4.374957337185961 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/09/30,8.73500012916686 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/09/21,14.580699999999984 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/09/21,15.988374999999992 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/10/31,7.065966658856677 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/11/08,18.32873333577584 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/11/08,20.82277500704252 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/10/31,7.065966658856677 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/11/08,18.32873333577584 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/11/08,20.82277500704252 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/12/03,4.697663058666662 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/11/24,22.552933333355853 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2017/11/24,21.99403958812335 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/02/05,21.867666666666683 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/04/02,8.199183332620848 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/04/10,13.218841675146672 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/03/25,13.01688333323833 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/04/26,15.507275005027498 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/05/28,7.109800000095008 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/07/07,4.363625000284998 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/06/21,10.06538334028084 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/07/06,2.840025000000004 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/07/06,3.030780250000005 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/06/29,2.9209673399999967 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/07/31,17.05582916688415 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/08/24,5.602484090217496 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/08/23,10.62033333338083 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/08/23,5.579583333380832 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/10/10,16.329667425775817 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/10/10,11.381201513380816 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2018/11/04,19.700599999525004 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/01/31,22.26459166666668 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/03/27,14.035027084018354 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/05/06,3.581500002300002 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/05/06,5.640225000000003 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/06/08,18.30775833333332 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/06/07,12.443674999999992 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/06/07,12.067374999999991 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/05/31,19.00676667136168 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/07/10,3.941250000357503 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/07/01,6.705591293515837 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/07/09,15.88875833290585 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/07/09,19.594987500237497 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/07/02,14.528308332903316 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/06/23,16.161508333333344 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/06/23,17.8087 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/08/11,15.2915624999525 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/08/02,9.634025008912497 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/07/26,18.061472500094983 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/08/10,2.979515900000002 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/08/10,3.3190225200000003 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/08/03,16.848158333500827 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/09/03,13.757556666714184 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/09/11,2.9269224999999994 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/09/11,2.61511139 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/09/04,2.838681750000001 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/10/05,8.643819696666664 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/09/28,11.733716250354982 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/09/27,18.095877279999986 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/09/27,18.26913636999997 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/11/06,19.16025500766502 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/10/29,17.88224242577581 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/10/29,15.073745440047484 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/11/30,7.530975000120004 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/11/30,2.743425000145003 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2019/12/24,10.822523333333354 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/02/03,14.068091668919164 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/04/07,9.645550015035004 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/03/22,10.452218773167502 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/04/06,17.264251515775822 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/04/06,24.32593333582336 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/06/10,10.976274999905 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/06/01,4.170100000165008 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/05/25,10.546925041974996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/06/09,4.664030927999994 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/06/09,4.152720470072496 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/05/24,4.759496971675837 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/05/24,4.729092804936671 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/07/03,5.873219157616671 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/07/04,4.292260150769223 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/06/25,6.683195832783331 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/06/25,13.363683332853332 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/07/28,4.599312880287502 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/08/05,2.634160230769232 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/07/27,5.29446666699916 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/07/27,7.1085174259933295 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/09/06,4.998250000507502 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/09/30,9.39926438576562 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/09/21,16.33821894000002 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/10/08,4.634212093846144 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/09/22,15.542466666834173 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/11/08,11.39842569507194 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/10/23,11.729803333530835 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/11/09,4.725820010256404 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/10/31,14.86994319004748 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/10/31,11.293201030769223 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/12/03,11.777025008792506 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2020/12/27,21.88613333333335 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/02/05,22.337341666666678 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/02/04,21.77565833333335 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/01/28,21.66638333333335 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/03/09,11.258433333318337 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/04/01,7.648050026194999 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/03/25,5.277774999282513 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/04/02,23.47970000019 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/03/24,2.7829250000000045 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/03/24,6.11565 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/04/26,14.54105833347582 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/06/04,9.159435603428337 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/06/05,6.173750000452509 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/05/27,10.11616666398918 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/05/27,6.827413636625 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/07/06,8.132368749475022 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/06/29,3.5576715009867264 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/06/28,2.715429500047504 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/06/28,4.437550000047493 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/07/31,9.8547875517275 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/07/22,13.44045839692333 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/08/08,7.079075001352504 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/07/30,3.414025000000005 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/07/30,2.808575000000006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/07/23,4.3315498265384536 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/08/23,6.276250000179994 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/08/31,6.017875000650005 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/08/31,9.383725000435 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/08/24,4.343749899999996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/10/10,6.488249994950012 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/10/11,7.872933335528319 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/10/02,4.474082202402498 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/10/02,3.809804170416663 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/11/04,7.058550001282505 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/11/07,4.602064378333331 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/11/03,3.4981773000724945 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/11/03,2.738278725000003 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2021/10/27,8.478325000290004 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/01/07,10.29975833311834 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/01/30,22.87635 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/01/23,22.539900000000006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/02/07,21.66638333333335 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/03/11,11.927358332658327 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/03/11,11.927358332658327 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/03/03,22.304175000000008 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/03/03,22.304175000000008 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/02/24,5.911699999770005 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/04/05,9.095545001947508 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/05/07,23.61040833265833 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/04/29,9.621193184999996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/04/28,6.385569744565 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/04/28,6.534786782169997 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/05/24,10.622883333428344 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/06/08,7.391150000144995 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/05/31,3.2556250000000064 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/05/30,5.06197556611238 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/05/30,5.451698674323212 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/05/23,4.535210610775828 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/07/09,3.3704348561608284 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/06/27,10.810354166096674 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/06/22,3.7662750013774953 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/07/10,2.9479147307692277 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/07/09,6.151208719051666 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/07/09,5.808269320302499 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/07/01,14.048562500167495 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/07/01,14.377937500167498 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/06/23,6.668010619908334 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/06/23,7.5322397839466655 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/08/11,3.316620579999998 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/08/03,3.6265750000724895 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/08/02,3.5409750000000084 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/08/02,3.032179500000007 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/07/25,7.645421248215006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/07/25,4.994598488760831 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/08/29,7.201875000835002 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/09/03,10.558100000237491 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/09/03,10.312600000237488 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/08/27,3.9865086007692265 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/10/05,5.242602289999999 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/10/05,5.023879539999997 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/11/10,8.001834857372486 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/11/05,11.237525008984996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/10/24,6.7721038083808285 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/11/07,2.8139966365384583 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/11/06,2.8079076923076918 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/11/06,2.802282692307691 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/10/29,4.598925014999997 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/10/29,2.8945484149999974 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/10/22,2.6715368249999987 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2022/11/23,15.684978320816697 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/01/09,3.833995504807695 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/01/09,9.003277272517494 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/02/03,22.404625000000006 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/02/02,22.070833333333347 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/03/07,8.03288028184027 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/02/26,24.16436133999998 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/02/26,22.11505226999999 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/04/10,14.006979169779164 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/04/08,15.62185000071248 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/04/07,9.72861893872918 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/04/07,6.451814769600004 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/03/30,3.0139022500000063 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/03/30,12.379974999984988 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/04/27,10.797712501847505 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/05/10,20.586225000072503 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/05/09,6.320400376960838 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/05/09,6.193073105775833 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/06/10,18.52984791697665 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/05/24,8.489906249130003 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/06/10,18.77369166726667 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/06/10,21.223491665411675 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/06/03,16.118050004599993 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/06/02,21.76013560859583 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/06/02,18.55449394145168 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/05/26,4.128709289999994 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/05/25,16.324874999999988 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/05/25,15.98542499999999 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/07/05,5.243863461538456 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/08/03,24.5444312704375 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/07/24,3.48802500203 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/08/06,5.586750000072493 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/07/28,4.74765 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/07/28,3.2481401571016635 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/08/29,3.877597578333328 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/08/29,6.121143791666666 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/08/22,12.354074999784975 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/10/09,4.11904775 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/10/01,4.793432751999998 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/09/30,3.208181739999998 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/09/30,2.9048131 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/09/22,4.432199999999996 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/09/22,15.704983333380826 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/11/10,19.209233333333337 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/11/01,3.3150999999999997 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/11/01,3.5643692307692305 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/10/25,5.384285606906665 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/10/24,5.472150009999994 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/10/24,5.418938659999992 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/11/26,4.253703886153839 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/11/25,6.296613280096661 +Cuba Lake,8968334,-78.2924778456149,42.24913711876258,2023/11/25,4.840908341796664 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2014/12/26,10.517406566633603 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/02/19,22.76205 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/02/27,21.919450000000012 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/02/20,21.866400000000016 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/02/19,22.76205 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/02/27,21.919450000000012 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/02/20,21.866400000000016 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/05/10,16.260833333143356 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/05/03,9.930430352569166 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/04/24,8.805600002372495 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/05/11,6.571032206601664 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/05/02,6.5112100011974885 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/04/25,5.225815910072496 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/05/10,16.260833333143356 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/05/03,9.930430352569166 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/04/24,8.805600002372495 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/05/11,6.571032206601664 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/05/02,6.5112100011974885 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/04/25,5.225815910072496 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/06/11,16.372474999617484 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/06/03,26.27368333409333 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/06/11,16.372474999617484 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/06/03,26.27368333409333 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/07/05,17.21905000011999 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/07/05,17.21905000011999 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/07,7.120914615335832 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/07/22,18.553524999999983 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/06,13.957325000094992 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/07/30,16.489900002395014 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/07,7.120914615335832 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/07/22,18.553524999999983 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/06,13.957325000094992 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/07/30,16.489900002395014 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/09/08,14.28810001338 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/23,7.895508338218336 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/09/07,13.880408338000828 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/31,8.750020840363323 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/22,16.188400000167505 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/09/08,14.28810001338 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/23,7.895508338218336 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/09/07,13.880408338000828 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/31,8.750020840363323 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/08/22,16.188400000167505 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/10/10,8.7981400850875 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/10/01,8.309499999902505 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/09/24,8.767358332470838 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/09/23,18.810100000095023 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/10/10,8.7981400850875 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/10/01,8.309499999902505 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/09/24,8.767358332470838 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/09/23,18.810100000095023 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/11/02,6.85664582709584 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/10/26,8.82945000687751 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/11/03,11.561393180047482 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/11/02,6.85664582709584 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/10/26,8.82945000687751 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/11/03,11.561393180047482 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/12/05,9.705217704452696 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2015/12/05,9.705217704452696 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/01/05,10.794258333333346 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/01/06,9.62224999898251 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/01/05,10.794258333333346 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/01/06,9.62224999898251 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/01/30,22.47810000000001 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/01/30,22.47810000000001 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/04/03,4.300224999755005 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/04/02,4.6697399300724936 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/04/03,4.300224999755005 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/04/02,4.6697399300724936 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/05/04,2.9951772500000056 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/04/27,4.3672181799999965 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/05/04,2.9951772500000056 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/04/27,4.3672181799999965 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/06/29,8.124850009584991 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/06/22,3.783524999999992 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/06/30,3.2844147407692263 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/06/21,3.343862089999998 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/06/29,8.124850009584991 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/06/22,3.783524999999992 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/06/30,3.2844147407692263 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/06/21,3.343862089999998 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/08/09,6.46664242369084 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/07/31,3.907247914951669 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/08/01,4.70671346871794 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/07/23,8.158308339083327 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/08/09,6.46664242369084 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/07/31,3.907247914951669 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/08/01,4.70671346871794 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/07/23,8.158308339083327 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/09/10,8.760417529894992 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/08/25,9.727432964796655 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/08/24,12.772198867986669 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/09/10,8.760417529894992 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/08/25,9.727432964796655 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/08/24,12.772198867986669 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/10/11,19.805850000065004 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/10/04,15.647031252632482 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/09/25,13.131225002157496 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/10/11,19.805850000065004 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/10/04,15.647031252632482 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/09/25,13.131225002157496 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/11/04,10.224023356593332 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/10/28,3.9913564858185686 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/11/04,10.224023356593332 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/10/28,3.9913564858185686 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/01/08,21.95325833333335 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/12/23,21.77565833333335 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/01/08,21.95325833333335 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2016/12/23,21.77565833333335 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/03/05,8.933720834185824 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/03/05,8.933720834185824 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/03/29,4.429846236666663 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/03/29,4.429846236666663 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/05/08,9.113624999162491 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/05/07,9.939350016147497 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/05/08,9.113624999162491 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/05/07,9.939350016147497 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/05/31,4.292706081666655 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/06/08,2.874476005 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/06/01,12.312050000389984 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/05/23,5.692658333475842 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/05/31,4.292706081666655 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/06/08,2.874476005 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/06/01,12.312050000389984 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/05/23,5.692658333475842 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/07/02,3.481850000025005 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/07/03,14.362891669159188 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/06/24,5.7709651684116645 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/07/02,3.481850000025005 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/07/03,14.362891669159188 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/06/24,5.7709651684116645 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/08/03,6.612585607370842 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/08/03,6.612585607370842 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/09/04,15.745058341585848 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/09/05,11.184029166334176 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/09/04,15.745058341585848 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/09/05,11.184029166334176 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/10/07,14.60437500277 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/09/21,14.246225000000006 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/10/07,14.60437500277 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/09/21,14.246225000000006 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/10/31,12.103900003984997 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/10/22,11.304533332720831 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/11/08,17.01130000225252 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/10/31,12.103900003984997 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/10/22,11.304533332720831 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/11/08,17.01130000225252 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/12/01,3.1316385 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2017/11/24,25.916475002489992 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/01/26,22.309808333333343 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/02/27,7.413012504649997 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/04/01,3.644000000000008 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/03/23,7.377900000585004 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/05/02,5.232225829437733 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/05/27,10.491795839595838 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/06/11,7.0307238889175006 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/07/06,12.753399999569975 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/08/06,13.198641675531684 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/08/23,3.287763600000001 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/10/09,10.701591666914158 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/09/23,19.902335606666664 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/10/10,8.149979168974152 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2018/11/11,12.872037430769216 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/03/11,9.72003333311834 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/04/03,6.620601518260839 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/03/27,12.720483353743337 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/03/26,7.244943189999995 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/05/06,3.862040007999992 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/06/07,13.384533333405832 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/07/08,16.104908343370834 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/07/01,13.99209167356666 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/06/22,9.852354160976668 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/07/09,19.549414775665 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/06/30,6.664794779070003 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/06/23,13.398393034666643 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/07/24,21.37541666681168 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/08/10,6.488896213478328 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/07/25,17.690091666739164 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/09/03,17.329833334378353 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/08/25,7.198549210529169 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/09/11,10.244156249999994 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/08/26,9.61175038362084 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/09/27,16.67815 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/11/06,14.687858332788329 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/10/28,20.4387875008175 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/10/29,2.744025000000004 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/12/08,6.041749997635012 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/11/30,20.77129583371833 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2019/12/23,21.40170833328585 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/04/06,9.689599999999997 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/04/22,2.3817432900000006 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/06/08,3.74367197195666 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/06/01,7.373067423478341 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/06/09,11.238649999999984 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/05/31,3.8131545000475 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/05/24,16.98695001528753 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/07/10,14.768279165521667 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/07/03,15.96047500191748 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/06/24,4.098410616152504 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/07/02,4.878027405969047 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/06/25,4.701128786884164 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/08/11,7.875600002242509 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/07/26,2.5179477328025 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/08/03,7.277298893347496 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/07/27,5.400571530769225 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/08/27,7.252712497630011 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/09/04,19.14145000004748 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/09/28,7.864608368588333 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/09/21,14.500954444444432 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/10/06,17.78629167601166 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/11/08,12.636420840788327 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/10/23,10.55192917086666 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2020/11/24,6.060974997775007 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/02/03,22.30117500000001 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/03/07,22.26459166666668 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/04/08,14.543763020364183 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/03/24,3.4756250000000044 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/05/10,6.764499998300013 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/04/24,8.357645855031668 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/05/02,9.760841672416667 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/06/11,8.041231063623336 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/05/27,6.374725001124996 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/06/27,5.9138829653475 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/07/05,15.255358333333312 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/06/28,2.931102250000001 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/08/07,7.465812498455018 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/07/22,13.27838172150443 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/08/06,16.89005000278 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/07/30,5.881200760043331 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/09/08,7.676331712659175 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/08/30,12.426070839265847 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/08/23,12.360375000147492 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/09/07,16.00839166666666 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/08/22,15.778225000190002 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/10/01,12.610469444634436 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/09/24,17.949544166951668 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/10/02,11.133658333428336 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/11/11,9.886324998085009 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/11/10,13.48972046999997 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2021/11/07,5.7017419608417255 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/02/06,22.47810000000001 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/02/07,21.675758333333352 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/01/29,21.75304166666668 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/03/02,17.46094999995249 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/04/28,5.1307583333333335 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/06/10,20.874441666619138 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/05/29,9.753118180167505 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/05/30,6.674875000987499 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/05/29,3.341551463380833 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/07/02,7.971286668691675 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/06/27,3.2380424342033285 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/07/09,3.021780250000004 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/07/08,12.951050000184996 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/07/01,9.057425000697494 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/06/30,11.104525002255 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/06/23,4.726762287072494 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/06/22,7.021025000310007 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/08/05,11.808649997875 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/08/10,5.092914397439163 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/08/02,5.964841128461532 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/08/01,10.776866666866676 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/07/25,3.662923463333337 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/09/03,13.2351875004275 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/09/02,16.489750019667518 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/08/25,15.291283333690842 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/10/05,13.13946742333331 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/10/04,9.50594239666666 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/11/10,2.789000002032499 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/10/29,16.089391683031668 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/10/24,10.541248612086106 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/11/06,3.216350000000008 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/11/05,5.268928425037497 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/10/29,13.452289390047472 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2022/11/21,14.394372551585931 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/02/02,22.274983333333346 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/02/26,3.578525000000005 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/02/25,17.410883335008336 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/04/10,18.55898338867584 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/04/07,17.122625000719996 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/03/30,10.54807994307692 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/05/09,5.006087126714163 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/05/08,10.085108339083336 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/05/29,14.71118333364332 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/05/24,13.355587502705005 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/06/10,6.475401518019163 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/06/02,5.787450001192496 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/06/01,4.143325000072494 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/05/25,3.3337090903624937 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/05/24,14.574800000072482 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/07/11,7.382025000797504 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/07/04,2.9662112499999997 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/06/25,5.615868006266896 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/08/08,6.100481249965004 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/08/03,20.139324999832493 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/07/28,15.50695833338084 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/09/04,17.601749999854984 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/09/06,11.115688461538465 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/08/29,15.872660001630006 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/10/01,13.785300001820003 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/09/29,5.000502282379163 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/09/22,15.02682083340584 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/09/21,16.149441671049157 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/10/23,7.158375000170009 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/11/01,11.218513937508384 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/10/24,15.610216666714164 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/10/23,3.793175000000009 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/12/03,12.09842423678666 +Findley Lake,9049063,-79.72575583667683,42.10593028742983,2023/11/25,20.09808666728415 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/01/05,2.963125000000007 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/02/06,12.443766666651657 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/02/06,12.443766666651657 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/05/05,6.286307594561674 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/05/05,6.286307594561674 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/06/06,13.905150001302497 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/05/29,3.635775002052498 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/06/06,13.905150001302497 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/05/29,3.635775002052498 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/06/22,3.3672818303624967 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/06/22,3.3672818303624967 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/08/09,3.4580446968116623 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/07/24,11.67829167356667 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/08/01,3.897040910507498 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/08/09,3.4580446968116623 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/07/24,11.67829167356667 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/08/01,3.897040910507498 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/08/25,3.335689404999997 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/09/02,10.20081666855916 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/08/25,3.335689404999997 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/09/02,10.20081666855916 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/10/04,11.83179999996999 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/10/04,11.83179999996999 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/11/21,5.988737503624993 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2015/11/21,5.988737503624993 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/03/04,22.326100000000007 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/03/04,22.326100000000007 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/04/05,7.308895843788329 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/04/05,7.308895843788329 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/04/21,8.146599999642502 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/04/21,8.146599999642502 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/05/23,8.75360000002249 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/05/31,12.23827500479999 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/05/23,8.75360000002249 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/05/31,12.23827500479999 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/06/24,2.5347697144933328 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/07/02,6.766929161671669 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/06/24,2.5347697144933328 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/07/02,6.766929161671669 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/07/26,2.577350002234996 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/08/03,3.0971045 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/07/26,2.577350002234996 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/08/03,3.0971045 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/08/27,4.934953905837742 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/09/04,5.259300000192497 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/08/27,4.934953905837742 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/09/04,5.259300000192497 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/09/28,2.7392619646666656 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/10/06,3.0869929282051283 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/09/28,2.7392619646666656 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/10/06,3.0869929282051283 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/11/07,3.102479503205128 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/11/07,3.102479503205128 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/12/09,9.817625000217497 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2016/12/09,9.817625000217497 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/04/24,9.563858335105838 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/04/24,9.563858335105838 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/06/11,17.058074999952503 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/06/03,7.024324254133331 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/06/11,17.058074999952503 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/06/03,7.024324254133331 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/06/27,6.691375000854996 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/07/05,10.373577279999996 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/06/27,6.691375000854996 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/07/05,10.373577279999996 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/07/29,3.654915162101667 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/07/29,3.654915162101667 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/08/30,7.450171211280001 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/09/07,3.3851195000000005 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/08/22,17.14652083355081 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/08/30,7.450171211280001 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/09/07,3.3851195000000005 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/08/22,17.14652083355081 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/10/01,7.238152270144997 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/09/23,5.137881814999995 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/10/01,7.238152270144997 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/09/23,5.137881814999995 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/11/10,2.8066772500000057 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/10/25,4.033885031999995 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/11/10,2.8066772500000057 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/10/25,4.033885031999995 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2017/12/04,6.924241657211675 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2018/02/06,22.658500000000007 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2018/04/11,22.451158333333343 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2018/05/05,7.808383344833325 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2018/05/29,1.979435613791666 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2018/06/30,10.080625000319994 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2018/07/08,3.568181705769229 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2018/08/09,8.656450000435 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2018/09/02,3.466204166754168 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/01/08,11.937483333333336 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/03/05,21.791766666666685 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/05/08,5.4846250023725 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/06/01,6.778374997115008 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/07/03,3.3850878774641613 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/06/25,2.487502250000007 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/07/27,5.003809099999991 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/09/05,4.036075999999994 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/09/21,2.8891931801449986 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/09/29,4.022146213333332 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2019/10/23,4.374208064975239 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/03/07,21.750616666666684 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/05/02,5.7632500105775 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/06/11,6.389950000507496 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/05/26,6.164416669584171 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/08/06,6.169175003427503 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/09/07,21.217916667044165 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/08/22,3.488975000665001 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/08/30,3.690300000000004 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/10/09,4.672663360719405 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/09/23,8.567291666261667 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/10/01,2.8963250000000045 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/11/10,4.346915915334998 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2020/10/25,10.378484582603337 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/01/29,24.02516666666665 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/04/03,13.216476623241665 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/06/06,13.691658336018348 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/07/08,15.881025001530004 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/07/24,16.216370832808323 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/09/10,20.39093333323584 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/09/02,13.197974999984975 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/09/26,5.532568943695835 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/10/28,6.6712091002150045 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/11/05,3.196685330769229 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2021/11/24,2.9564318000000003 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/02/01,22.070833333333347 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/03/29,7.226124993275 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/05/08,3.757293184999997 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/04/30,4.321100000000001 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/04/22,3.6061 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/06/05,6.563934090625009 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/05/31,4.102700004492498 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/05/24,3.79848333666666 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/07/04,6.825184090862511 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/07/11,3.944300000217493 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/07/03,6.291343336878323 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/06/25,2.719197749999999 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/09/10,3.169209694956662 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/08/24,3.860650000072494 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/08/28,5.275945470072497 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/09/29,7.398250750000005 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/09/21,5.513061359999996 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/11/08,3.7173608774358953 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/11/22,10.081907394095 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/12/10,2.815855622435898 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/11/24,5.468529172444161 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/01/11,15.018550000600008 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2022/12/26,3.3942674623076887 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/02/20,9.135283332458338 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/04/09,4.623564542217498 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/04/01,13.196058337885834 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/05/09,11.477375000075009 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/05/11,4.445125000192507 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/06/05,5.896037498995005 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/05/31,18.713925002395 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/06/04,8.00675000045248 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/05/27,7.288583334368347 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/07/06,4.355674999999992 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/08/05,2.2913500012449988 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/07/30,5.578558333595837 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/07/22,4.027909730769227 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/09/06,3.752336361497496 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/09/01,2.375324089015001 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/09/08,2.911525000000005 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/08/31,3.383226899999995 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/08/23,4.070654499999997 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/10/03,8.064996966666667 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/09/28,4.441656719265112 +Eaton Reservoir,9419507,-75.6993949757621,42.86095570222287,2023/11/03,5.516457712072496 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/01/08,5.872075000000007 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/01/08,6.560849998465006 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2014/12/31,22.35369166619168 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2014/12/31,12.6310249998475 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/02/01,15.673025395643352 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/02/01,13.495496035590005 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/02/01,15.673025395643352 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/02/01,13.495496035590005 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/05,6.8297188131775 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/03/29,10.599913200516946 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/03/29,3.939725235576924 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/06,7.008057580279163 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/05,6.8297188131775 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/03/29,10.599913200516946 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/03/29,3.939725235576924 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/06,7.008057580279163 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/07,5.340883331283335 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/30,10.732241694646673 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/30,6.842113644870011 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/21,10.81909791521168 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/08,10.857034092585 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/08,7.1823681901450005 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/22,7.377342280144998 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/22,7.481992280144999 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/07,5.340883331283335 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/30,10.732241694646673 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/30,6.842113644870011 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/21,10.81909791521168 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/08,10.857034092585 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/08,7.1823681901450005 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/22,7.377342280144998 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/04/22,7.481992280144999 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/23,16.71211250696504 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/24,12.698178517850003 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/24,8.696763644525014 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/23,16.71211250696504 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/24,12.698178517850003 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/05/24,8.696763644525014 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/07/03,7.566363630000007 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/07/03,8.268327270000004 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/06/24,6.2758249948600096 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/07/11,9.128600004632512 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/07/11,6.719741671699162 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/06/25,12.277349254767502 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/06/25,12.043075016290004 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/07/03,7.566363630000007 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/07/03,8.268327270000004 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/06/24,6.2758249948600096 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/07/11,9.128600004632512 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/07/11,6.719741671699162 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/06/25,12.277349254767502 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/06/25,12.043075016290004 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/04,10.062315532436664 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/04,9.730112501819995 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/04,10.062315532436664 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/04,9.730112501819995 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/05,9.346040910147495 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/05,9.0280909100475 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/27,17.684325050700018 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/28,10.599802106227106 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/28,10.52171877289377 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/05,9.346040910147495 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/05,9.0280909100475 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/27,17.684325050700018 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/28,10.599802106227106 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/08/28,10.52171877289377 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/07,7.317971206786671 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/07,7.319321206739172 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/21,8.224454168484161 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/21,7.280986372517498 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/29,11.93045 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/07,7.317971206786671 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/07,7.319321206739172 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/21,8.224454168484161 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/21,7.280986372517498 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/09/29,11.93045 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/11/08,9.419034093437505 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/11/08,9.476646593627503 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/30,9.476778222900828 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/23,8.801810422031673 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/23,8.647360421936671 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/31,9.340824058731664 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/31,8.355967436739167 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/11/08,9.419034093437505 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/11/08,9.476646593627503 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/30,9.476778222900828 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/23,8.801810422031673 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/23,8.647360421936671 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/31,9.340824058731664 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/10/31,8.355967436739167 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/12/10,8.342489586920829 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/12/10,7.861164586625829 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/11/24,7.755580619682771 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/11/24,7.288755619682772 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/12/10,8.342489586920829 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/12/10,7.861164586625829 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/11/24,7.755580619682771 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2015/11/24,7.288755619682772 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/11,8.035928196121937 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/11,8.4451835001936 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/02,7.917182702588613 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/03,7.005521262820508 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/03,10.305169462051278 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/11,8.035928196121937 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/11,8.4451835001936 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/02,7.917182702588613 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/03,7.005521262820508 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/01/03,10.305169462051278 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/06,3.981337883833329 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/02/28,9.914702086393335 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/02/28,10.302952086320836 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/02/20,11.380988640715 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/02/20,9.639040146811672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/06,3.981337883833329 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/02/28,9.914702086393335 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/02/28,10.302952086320836 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/02/20,11.380988640715 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/02/20,9.639040146811672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/31,7.292704166664183 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/31,7.312795833425849 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/22,8.927470487202509 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/23,7.578016792307692 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/23,7.331400882307691 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/31,7.292704166664183 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/31,7.312795833425849 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/22,8.927470487202509 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/23,7.578016792307692 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/03/23,7.331400882307691 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/05/09,4.5942124985900135 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/04/24,7.923779193076921 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/04/24,8.792861013076923 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/05/09,4.5942124985900135 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/04/24,7.923779193076921 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/04/24,8.792861013076923 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/05/25,7.627149999617513 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/05/26,9.141416665079175 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/05/26,5.768547800534168 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/05/25,7.627149999617513 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/05/26,9.141416665079175 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/05/26,5.768547800534168 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/06/26,6.505549994060009 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/06/27,8.295239020775842 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/06/27,11.722925383930844 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/06/26,6.505549994060009 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/06/27,8.295239020775842 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/06/27,11.722925383930844 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/06,10.18088106338084 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/06,9.097866675056672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/07/28,8.691670834173346 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/06,10.18088106338084 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/06,9.097866675056672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/07/28,8.691670834173346 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/29,5.955408328240838 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/22,16.891713692277502 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/22,16.656513692752505 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/30,7.868034883913336 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/30,5.8793686112216665 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/29,5.955408328240838 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/22,16.891713692277502 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/22,16.656513692752505 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/30,7.868034883913336 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/08/30,5.8793686112216665 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/09/23,6.788466668799163 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/09/23,17.26291666866666 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/09/23,6.788466668799163 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/09/23,17.26291666866666 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/11/10,9.735188644875 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/11/10,10.090875004884998 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/10/25,7.279462517047501 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/10/25,8.904581256910003 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/11/02,7.439300000474994 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/11/02,8.025560237390827 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/11/10,9.735188644875 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/11/10,10.090875004884998 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/10/25,7.279462517047501 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/10/25,8.904581256910003 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/11/02,7.439300000474994 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2016/11/02,8.025560237390827 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/01/29,9.591075007087516 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/01/29,7.505737514502506 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/02/06,13.38858057086421 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/02/06,13.6568132632194 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/01/29,9.591075007087516 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/01/29,7.505737514502506 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/02/06,13.38858057086421 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/02/06,13.6568132632194 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/03/09,9.404177085598334 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/03/02,6.855516672331667 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/03/02,6.803741671224168 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/02/21,7.511900029294996 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/03/09,9.404177085598334 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/03/02,6.855516672331667 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/03/02,6.803741671224168 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/02/21,7.511900029294996 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/10,8.370268776912491 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/03,11.164899999827515 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/03,9.555449999922518 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/11,7.83288750531749 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/11,4.494605687278331 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/10,8.370268776912491 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/03,11.164899999827515 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/03,9.555449999922518 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/11,7.83288750531749 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/04/11,4.494605687278331 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/07/08,9.118191685459164 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/07/08,8.96929168283666 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/06/22,7.2912500036375105 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/06/22,8.619000001520014 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/07/08,9.118191685459164 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/07/08,8.96929168283666 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/06/22,7.2912500036375105 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/06/22,8.619000001520014 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/09,10.612518180047504 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/09,10.591618180047506 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/01,9.985346382072503 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/01,10.168508488811666 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/09,10.612518180047504 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/09,10.591618180047506 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/01,9.985346382072503 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/01,10.168508488811666 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/09/10,8.37047194511444 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/09/10,8.887958180142503 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/25,10.308828194686932 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/25,9.968938195114433 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/09/02,10.578425000000008 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/09/10,8.37047194511444 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/09/10,8.887958180142503 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/25,10.308828194686932 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/08/25,9.968938195114433 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/09/02,10.578425000000008 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/10/04,13.855428320816712 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/10/04,12.85103409004748 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/10/04,13.855428320816712 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/10/04,12.85103409004748 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/10/28,10.088791673816672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/10/28,7.538794700338338 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/10/28,10.088791673816672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/10/28,7.538794700338338 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/12/07,10.796175032820502 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/12/07,6.28336262205128 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/11/21,10.164536013076924 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/11/21,9.777520103076924 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/12/31,8.306135001249988 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2017/12/31,8.375922501584988 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/01/24,9.800129193076923 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/01/24,10.698238283076922 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/05/08,8.421691679251678 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/05/08,9.71535005267751 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/04/22,10.2515698895525 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/04/22,10.2478448896475 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/06/09,4.607133331413338 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/06/09,4.690116666556674 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/05/24,6.642702274905003 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/05/24,6.593027274905003 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/07/11,11.379466752606668 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/07/11,9.769825057017506 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/06/25,6.731341095737505 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/06/25,5.545805679798334 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/07/27,9.423844444601938 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/07/27,9.947548611216112 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/08/28,7.221218612713605 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/08/28,7.62690402924777 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/09/05,3.1766045000000087 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/09/05,2.8562000000000056 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/09/29,8.569553195304437 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/09/29,9.015082362261104 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/09/21,6.90320685 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/09/21,6.919466852000002 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/10/31,7.230795450047504 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/10/31,7.148486360047502 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/11/08,6.929075002394993 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/11/08,7.218150000379994 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/12/10,5.638527805384609 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/12/10,5.236870113076924 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/11/24,5.117701923076915 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/11/24,11.913099999999996 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/01/11,16.45247575948916 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/01/11,16.506367426155826 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/12/26,10.691685173637234 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2018/12/26,10.21975964834763 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/02/04,5.816324999555007 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/02/04,5.871974999340007 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/01/27,11.19316418514942 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/01/27,11.48193373307692 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/03/08,8.995186557631664 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/03/08,8.696574055919163 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/02/28,9.815653142450197 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/02/28,10.72990087245019 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/03/24,4.331874816519994 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/03/24,4.332474816412494 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/04/01,7.055775008960012 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/04/01,8.85280000787499 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/05/11,5.20897026302667 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/05/11,5.2093827618816695 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/04/25,9.1053181801425 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/04/25,8.753329540142499 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/05/27,9.404913656097504 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/05/27,8.946263646902507 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/06/04,8.853567065615833 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/06/04,6.496106851066669 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/06/28,3.964918590124172 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/06/28,4.340004567835007 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/07/06,2.7626250000000043 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/07/06,3.023975000000008 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/07/30,6.063390910195007 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/07/30,6.2545611117811095 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/08/31,3.1754049364874977 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/08/31,3.1346361861124983 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/09/08,11.342125002372498 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/09/08,10.6883250023475 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/09/24,9.498670103076924 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/09/24,10.334545103076922 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/11/03,10.946243122520272 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/11/03,8.317769257710266 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/11/11,3.400742300072496 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/11/11,3.365458200072497 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/10/26,10.487552154358973 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/10/26,10.104210372051286 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/12/05,11.50675978971444 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/12/05,11.03253478971444 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/12/29,5.536784371067501 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2019/12/29,5.362356328305834 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/01/22,8.357673428544437 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/01/22,6.767630805214449 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/01/30,11.070494462051268 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/01/30,11.033244462051268 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/03/10,9.61091250061502 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/02/23,8.435435926254435 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/02/23,8.261411529882771 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/03/02,8.314584697076667 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/03/02,8.103384697051672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/04/11,7.329868772874997 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/04/11,7.258093772539999 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/03/26,9.549709034687773 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/03/26,8.909628919592773 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/05/05,6.391691912256667 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/05/05,9.08640881592084 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/06/22,8.685428787196672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/06/22,7.763566676811665 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/08/01,7.026659080000004 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/08/01,7.020609080000003 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/08/09,9.200966671314175 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/08/09,20.1310667485067 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/08/25,7.528189456666667 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/08/25,7.995373556666665 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/10/04,6.088790900000004 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/10/04,6.019172720000004 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/09/26,10.62768581471038 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/09/26,10.26802130245019 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/11/05,7.073350011765008 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/11/05,9.551750003115004 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/11/21,6.77335770480861 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/11/21,6.694393180580006 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/11/29,7.909024474615381 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/11/29,10.376462936153844 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/01/08,10.148745833378348 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/01/08,10.220295832995848 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/12/23,10.626672917409174 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2020/12/23,10.267141667466682 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/01/24,8.912112501749993 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/01/24,10.35574166778416 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/02/25,9.376541700531677 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/02/25,9.405587155341674 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/03/05,10.62741666592916 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/03/05,9.759341666171665 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/03/29,6.39339460567833 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/03/29,6.529894607978333 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/04/06,9.427646361999996 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/04/06,9.499164561999995 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/04/30,5.406241484896658 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/04/30,5.663966490394159 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/06/09,18.51556666686665 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/06/09,17.281441666866655 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/07/27,10.254447147435904 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/07/27,10.148497147435902 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/10/07,5.484009080072496 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/10/07,5.6056409000725 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/09/29,7.554873631999998 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/09/29,8.680455451999995 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/11/08,11.383164132428446 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/11/08,10.087439132428456 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/10/23,9.987658222428456 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/10/23,7.530568069047625 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/10/31,10.399115070512815 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/10/31,9.959083250512824 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/11/24,7.328710045900831 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/11/24,7.331260048700832 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/01/11,6.855818766067501 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/01/11,6.316631267839999 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/12/26,5.451399683076918 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/12/26,8.100410422431667 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/01/11,10.87364014568083 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/01/11,4.37575567996109 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/12/26,6.847455452307685 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2021/12/26,7.133994072525191 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/01/27,7.334753195969439 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/01/27,7.2160418333744385 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/01/27,12.95681678240268 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/01/27,11.041772551728458 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/02/28,9.048045850133338 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/02/28,9.201370843418342 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/03/08,14.870025004742494 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/03/08,17.377833340328316 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/02/28,10.379257865674235 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/02/28,11.949675287483393 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/02/20,12.768891666639169 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/02/20,18.45807500141502 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/04/09,9.83098333301334 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/04/09,13.293133333333316 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/05/11,6.84770833568083 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/05/11,11.33615001844749 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/06/07,8.298316666366672 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/06,19.501075003064965 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/06,19.527675003159967 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/06,5.604697378140836 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/06,4.306875795855832 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/06/28,4.5468084943316605 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/06/28,6.858954204390838 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/08/09,8.819700000047499 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/08/09,9.198390909999995 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/23,6.898082576929173 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/23,3.919669696884166 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/30,6.852784866884163 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/30,7.036316666884165 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/22,9.89662569764694 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/07/22,8.733447780050277 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/08/26,9.694773770769238 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/08/26,6.513864542 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/09/08,6.554721352307682 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/09/08,6.777205442307685 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/08/31,5.464186389999992 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/08/31,5.127486389999991 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/08/23,15.531600000192483 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/09/29,5.392165890119998 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/09/29,7.666827159095123 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/10/10,7.5340590953900035 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/10/10,8.98409622080584 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/09/24,9.473000007617491 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/09/24,4.240770844509999 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/11/02,10.059598614613606 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/11/02,8.632906945111943 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/11/03,8.533777862893766 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/11/03,10.92951696545787 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/11/24,9.813341672374165 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/12/05,9.878797353076925 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2022/12/05,9.023613263171928 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/02/07,16.487500002727494 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/02/07,11.21661791724166 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/02/22,15.15432291876669 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/04/02,11.763108389378331 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/04/02,10.270137544092506 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/04/04,7.540400119264357 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/04/04,7.544253301264357 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/03/27,7.976019092307692 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/03/27,7.799119092307692 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/05/11,11.36891793120665 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/05/11,9.886203763109991 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/04/24,6.283603598450001 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/05/06,7.883756820362495 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/05/06,10.614070457489998 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/06/07,9.828433334820836 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/06/02,8.783481666239167 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/06/02,10.220391666239165 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/06/07,10.093454166404191 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/06/07,10.070504166356692 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/05/30,5.879458335728337 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/05/30,8.146208335680836 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/05/22,14.03655958527335 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/05/22,14.949793750945028 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/06/29,8.632790277930265 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/06/29,9.570979028505263 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/07/01,10.969195834453323 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/07/01,9.267678641647487 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/08/10,5.942510988152495 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/08/10,5.78703901761666 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/08/02,7.749244848666661 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/08/02,8.68237893866666 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/07/25,19.92638334473832 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/07/25,18.980091678119155 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/09/03,8.572675000072506 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/09/03,10.962275000000009 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/10/10,3.876172267508396 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/10/05,5.68286644538461 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/10/05,6.160683627653401 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/10/05,6.725905455128202 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/10/05,6.004658974358972 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/09/27,9.18559177245269 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/09/27,9.305959080145 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/11/06,2.898368715000001 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/11/06,4.737775000337492 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/11/06,6.420295747628387 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/12/08,8.116833337004168 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/12/08,5.247391792380187 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/11/30,8.592525674013652 +Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/11/30,8.562902679911094 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/08,23.241562501877528 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/07,16.025166697089183 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/07,18.40036670973917 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2014/12/31,6.827380798276074 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/31,9.79657293917416 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/31,9.797697933999162 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/02/01,12.73119999985751 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/23,12.237015384615384 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/23,10.242635430426663 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/31,9.79657293917416 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/31,9.797697933999162 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/02/01,12.73119999985751 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/23,12.237015384615384 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/23,10.242635430426663 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/05,6.361048372833334 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/05,6.786898370335833 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/03/29,6.212512962307695 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/05,6.361048372833334 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/05,6.786898370335833 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/03/29,6.212512962307695 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/07,6.117824999855012 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/07,6.942624999855014 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/30,8.548234217174171 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/08,17.562091676531644 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/29,12.488089780238347 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/29,13.285935613571684 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/22,8.2861550012925 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/07,6.117824999855012 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/07,6.942624999855014 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/30,8.548234217174171 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/08,17.562091676531644 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/29,12.488089780238347 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/29,13.285935613571684 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/22,8.2861550012925 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/23,15.266820836540854 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/23,15.478420837173353 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/24,8.728423361115839 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/23,15.266820836540854 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/23,15.478420837173353 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/24,8.728423361115839 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/07/03,17.34248334442834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/24,7.750708331853344 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/24,7.618683331453344 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/07/11,12.68805333535832 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/25,11.623326531004157 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/07/03,17.34248334442834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/24,7.750708331853344 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/24,7.618683331453344 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/07/11,12.68805333535832 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/25,11.623326531004157 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/04,8.773489172656655 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/03,12.4334721664575 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/03,12.608284667027494 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/04,8.773489172656655 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/03,12.4334721664575 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/03,12.608284667027494 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/05,10.83343333887083 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/27,17.787533337265867 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/27,17.6607666661517 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/04,19.594762498860028 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/04,18.91359583238336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/28,18.974316666666667 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/05,10.83343333887083 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/27,17.787533337265867 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/27,17.6607666661517 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/04,19.594762498860028 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/04,18.91359583238336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/28,18.974316666666667 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/07,14.080140913333311 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/21,19.07229999995249 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/06,24.415970416666664 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/06,24.330246166666665 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/29,10.829593350915822 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/07,14.080140913333311 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/21,19.07229999995249 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/06,24.415970416666664 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/06,24.330246166666665 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/29,10.829593350915822 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/08,10.793995836350836 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/30,9.975489583100831 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/30,9.84473958323833 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/23,14.326887504984988 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/31,10.847778391208331 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/22,13.256233335740855 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/22,5.348875000745014 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/08,10.793995836350836 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/30,9.975489583100831 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/30,9.84473958323833 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/23,14.326887504984988 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/31,10.847778391208331 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/22,13.256233335740855 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/22,5.348875000745014 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/10,9.694074174424172 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/24,11.5835187524025 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/09,10.32129887007334 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/09,5.296008757883328 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/23,20.59224168343164 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/23,20.40517502150747 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/10,9.694074174424172 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/24,11.5835187524025 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/09,10.32129887007334 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/09,5.296008757883328 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/23,20.59224168343164 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/23,20.40517502150747 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/11,12.513305618875274 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/02,11.572887502955002 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/02,12.680304926763329 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/03,10.92946308461538 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/11,12.513305618875274 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/02,11.572887502955002 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/02,12.680304926763329 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/03,10.92946308461538 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/11,10.979717424425823 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/11,10.271317424568329 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/11,10.979717424425823 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/11,10.271317424568329 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/06,6.311949994735008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/06,6.39832499495001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/28,10.864783380945834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/27,14.100986740423336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/27,14.118461741278333 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/20,9.52977701427917 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/06,6.311949994735008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/06,6.39832499495001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/28,10.864783380945834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/27,14.100986740423336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/27,14.118461741278333 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/20,9.52977701427917 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/22,12.41048839021584 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/22,14.449002963544167 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/04/08,7.019741822307693 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/30,9.235308333475828 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/30,8.27250000004749 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/23,10.780513248643336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/22,12.41048839021584 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/22,14.449002963544167 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/04/08,7.019741822307693 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/30,9.235308333475828 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/30,8.27250000004749 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/23,10.780513248643336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/09,4.711450000095009 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/09,4.725500000202509 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/10,9.918908331375842 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/04/24,4.037281979999996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/09,4.711450000095009 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/09,4.725500000202509 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/10,9.918908331375842 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/04/24,4.037281979999996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/25,3.266500000095008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/25,3.265000000095007 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/26,5.6760992692175 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/25,3.266500000095008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/25,3.265000000095007 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/26,5.6760992692175 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/06/26,6.509524995260012 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/06/26,7.089887497075012 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/07/04,15.458075000199996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/07/04,12.522750000400013 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/06/26,6.509524995260012 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/06/26,7.089887497075012 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/07/04,15.458075000199996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/07/04,12.522750000400013 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/06,9.150536707039162 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/05,11.352893415904996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/05,13.144414810985834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/06,9.150536707039162 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/05,11.352893415904996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/05,13.144414810985834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/22,16.701100022985017 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/30,30.920845838123327 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/22,16.701100022985017 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/30,30.920845838123327 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/23,6.613575000384986 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/22,24.998566673566717 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/22,10.734786369999988 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/23,6.613575000384986 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/22,24.998566673566717 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/22,10.734786369999988 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/10,21.808370845023315 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/01,11.9189062531275 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/01,11.6209437537075 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/25,10.067888660162506 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/02,13.717062157942491 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/24,16.541143949109152 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/24,11.428036369999989 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/10,21.808370845023315 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/01,11.9189062531275 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/01,11.6209437537075 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/25,10.067888660162506 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/02,13.717062157942491 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/24,16.541143949109152 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/24,11.428036369999989 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/03,5.235149998732501 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/03,6.695168330870835 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/11,9.054824997724984 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/04,8.05186646507692 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/03,5.235149998732501 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/03,6.695168330870835 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/11,9.054824997724984 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/04,8.05186646507692 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/29,6.340749995150008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/06,10.42876250151999 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/28,16.877150000427488 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/28,16.323383333808327 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/29,6.340749995150008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/06,10.42876250151999 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/28,16.877150000427488 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/28,16.323383333808327 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/09,5.425200000259996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/09,5.696325001865001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/02,9.316350012637509 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/21,6.725774993015008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/21,6.832149993415007 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/09,5.425200000259996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/09,5.696325001865001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/02,9.316350012637509 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/21,6.725774993015008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/21,6.832149993415007 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/10,10.022200012392515 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/10,10.784875020132509 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/11,9.295708333225846 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/02,8.274274999995004 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/02,20.844208342723316 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/10,10.022200012392515 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/10,10.784875020132509 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/11,9.295708333225846 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/02,8.274274999995004 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/02,20.844208342723316 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/05/04,11.951820834703335 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/05/04,11.951820834703335 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/22,7.548502896333332 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/21,15.52785416972168 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/21,15.992804170936688 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/22,7.548502896333332 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/21,15.52785416972168 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/21,15.992804170936688 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/09,8.226866678333336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/07/31,6.963190223530233 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/07/31,6.922883972190236 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/01,12.880502083805824 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/09,8.226866678333336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/07/31,6.963190223530233 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/07/31,6.922883972190236 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/01,12.880502083805824 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/10,8.247246213380835 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/01,15.383150000100011 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/01,14.947966666766678 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/25,15.017059850000008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/09,21.97768334023333 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/09,10.712591666666656 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/24,23.96410834262836 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/24,24.569875009200015 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/10,8.247246213380835 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/01,15.383150000100011 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/01,14.947966666766678 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/25,15.017059850000008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/09,21.97768334023333 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/09,10.712591666666656 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/24,23.96410834262836 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/24,24.569875009200015 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/03,12.23097257799998 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/03,12.597859093333314 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/26,6.299174997100007 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/04,34.586412516289954 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/25,14.821908343700832 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/25,14.894908343558336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/03,12.23097257799998 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/03,12.597859093333314 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/26,6.299174997100007 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/04,34.586412516289954 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/25,14.821908343700832 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/25,14.894908343558336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/04,7.788149997197513 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/04,7.7972374993475135 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/28,13.137541668146664 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/27,25.437478338123352 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/27,16.064177279999978 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/04,7.788149997197513 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/04,7.7972374993475135 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/28,13.137541668146664 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/27,25.437478338123352 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/27,16.064177279999978 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/12/07,14.01588741081671 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/28,14.740909090047472 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/28,15.9556555708167 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/21,8.668009645076921 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/02/08,8.9499636407475 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/02/08,8.200862501092502 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/01/31,11.16914341128204 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/01/31,11.444130699743576 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/01/24,17.058175000332483 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/02/24,12.795766667954148 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/02/24,13.01589791790665 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/05,14.661325011417494 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/05,13.022445492410831 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/05/08,8.924688653062505 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/22,10.01349999996751 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/21,7.239681088375835 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/21,5.614782713888332 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/06/09,15.289833338028329 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/05/24,9.430825005240006 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/05/23,9.785950000072516 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/05/23,9.059000000072515 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/11,12.989534167557494 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/02,13.748902087630846 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/02,13.748902087630842 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/06/25,6.584853293019994 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/10,7.994916666521678 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/10,8.005991666521677 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/08/03,10.668975002880003 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/08/03,19.565837500637503 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/27,16.25235000067001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/04,16.176808337563347 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/04,16.00968333756335 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/05,3.460263461538458 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/08/27,10.565555026332492 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/08/27,11.178088364123322 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/10/06,23.63325 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/10/06,23.893808333333325 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/29,20.32736136563332 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/21,11.396175001604991 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/07,8.173020000552503 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/07,8.364245002735 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/08,9.648448107080844 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/23,10.621494183976672 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/10,14.759612410816707 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/01,18.40607500301248 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/01,16.915641674326647 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/24,11.817326542658328 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/10,7.875180450881657 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/10,7.574811696016659 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/25,10.06033126519251 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/25,9.83180001298751 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/11,7.829550013247513 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/26,13.429262410816715 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/26,9.03188750046252 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/26,9.134320833723352 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/02/03,14.332258334190849 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/02/03,13.422333333590844 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/27,13.114059583260833 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/03/08,9.009465043100008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/03/07,14.323025002917491 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/03/07,12.52502291772666 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/03/24,5.883508328478342 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/04/01,12.475095469807505 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/11,11.79697339645084 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/02,6.345420828145849 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/04/25,11.49597500020001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/04/24,10.660689581385848 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/04/24,8.196539580513345 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/03,9.717319166736669 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/03,9.958535833403332 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/27,11.71803333357084 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/04,4.989615546551665 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/26,11.2150999999 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/26,12.329424998089994 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/28,15.837625021742502 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/27,6.954774995165005 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/27,6.900774995165005 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/07/30,11.572925000362495 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/07/29,10.194382074890836 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/07/29,11.783740426901648 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/07/22,22.99856666439417 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/07,18.400906289882517 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/07,16.570472945951675 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/31,5.258670832695839 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/22,11.372350000295006 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/22,13.48974166686667 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/08,11.99590228999999 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/30,19.42420000714252 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/30,17.74571667596169 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/10/02,18.659440153966656 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/23,12.064310471701669 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/23,11.680468796662506 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/24,5.161193179999994 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/10,6.488274994090008 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/03,9.804183760010009 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/11,11.891041666809178 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/02,22.941056250190023 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/02,23.009056250190024 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/10/26,23.9204278011578 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/12/05,7.111281253065003 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/26,7.386072917619167 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/26,8.048652086303337 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/12/28,9.667049588400836 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/12/28,9.766960004672503 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/01/22,9.68158750085751 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/01/30,18.95225000296498 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/01,9.239525794064171 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/01,9.643612165271676 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/02/23,12.677968754127503 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/09,11.03831319662944 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/09,17.475919454119424 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/02,9.458646690366674 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/02/22,15.583768947189151 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/02/22,20.28034166972665 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/04/11,9.775615044300013 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/04/02,10.734131249415013 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/04/02,10.652956249605014 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/26,8.81157670674 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/05/04,10.905390093167505 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/05/04,11.507790100042508 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/05/05,14.449990929232492 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/21,9.359035240524172 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/21,13.311777661011677 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/07/08,8.497173512802496 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/29,23.322425000677505 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/29,5.707879169161656 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/22,10.047926521354167 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/08/01,18.0607848523 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/08/09,14.715031251279996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/08/24,21.95115000953748 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/08/24,21.95267500953748 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/09/01,11.611949998194998 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/09/01,8.381174999755 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/11,7.81410208356335 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/11,7.475702081240849 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/04,27.888655000000025 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/03,14.20641819004748 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/03,16.526245440047468 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/09/26,4.403975767454996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/11/05,8.18840833796834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/11/21,8.52884586336084 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/06,14.885259092869994 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/06,14.976909092965 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/11/29,11.652867823076908 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/08,11.798442426230828 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/23,9.43090833975834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/07,7.154249996410005 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/07,7.016049995395005 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/22,10.638332721999996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/22,15.690243180047467 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/24,9.79151875147249 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/08,9.603086531027763 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/08,8.575667782030271 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/23,9.069875003039996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/23,9.286875002902496 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/25,9.466881263357507 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/03/05,12.903489583475825 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/24,15.080542426060816 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/24,15.282817426060817 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/05,10.81472916602418 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/05,10.908629166024182 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/03/29,7.219375019837503 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/06,11.236400005502494 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/05/07,7.406870262094171 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/05/07,7.406870262094171 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/30,6.525947913764169 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/21,10.581402082265846 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/21,10.556895832170849 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/06/08,5.990445821263341 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/05/23,17.394550002157526 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/05/23,20.414433335688383 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/06/09,11.567228414080832 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/06/24,11.620549999177513 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/06/24,11.493649999430009 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/07/26,6.187595826378347 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/07/27,9.481478361278326 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/08/27,11.445449168556658 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/08/27,11.417270002654996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/04,17.468722916589158 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/04,14.14611458561832 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/07,11.661796963333328 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/28,24.73964166810168 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/28,11.307158337675844 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/29,16.555264583533322 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/08,9.611522287346942 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/23,11.22321462635333 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/07,16.120075757094142 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/07,18.72537500301248 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/31,15.929565280647765 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/22,5.379083334968329 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/22,10.120159091856658 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/12/01,6.008199994490009 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/24,11.31265902997777 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/12/02,13.432474999970005 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/23,21.12880833582332 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/23,24.63584166967913 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/11,6.572848359418334 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/12/26,10.033950007039998 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/11,18.2775958362508 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/10,7.243449998680002 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/10,7.111465148380834 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/12/26,12.775486280585303 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/27,10.179549586088344 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/11,17.516636667284157 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/11,17.15405333395082 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/27,12.301112502452495 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/26,16.193941671789148 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/26,16.789941674041653 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/03/07,7.1325700200175 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/03/07,6.983946267255004 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/28,9.801663644435004 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/19,10.001806677629174 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/19,9.658481677149174 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/03/08,17.149005217576672 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/28,16.165045453760825 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/27,20.301878334045817 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/27,11.65922708406083 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/20,14.196309090474982 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/19,24.27742499999998 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/01,7.676470834055848 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/03/23,5.98574999384501 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/09,22.17366250056002 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/08,9.844425001147496 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/08,9.041020005770006 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/05/10,12.654299998795 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/05/10,13.856099999129995 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/24,21.136885417431667 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/24,16.196850000764993 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/06/07,8.463012512889172 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/06/07,8.341130322967503 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/06/04,7.452900000217496 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/11,28.539149592533374 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/11,27.89934126150001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/06,20.23572500460001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/06/28,13.821518756214989 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/09,18.05923333358084 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/23,9.14042500000001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/07,12.8732750068375 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/06,10.347153146382505 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/06,11.839696683948336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/30,20.62955837952335 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/29,8.372374998999994 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/22,11.834624166734166 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/26,17.947069027872786 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/09/08,8.13296061166666 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/31,28.020740285485232 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/09/29,23.93335075709917 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/10/09,13.042064586393328 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/10/09,18.015150759109147 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/09/23,20.13031002597502 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/09/23,18.87231003057501 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/02,9.14398959123583 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/10,11.452312502129994 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/10,15.453425757094156 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/03,11.580226430512802 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/02,14.467879543380809 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/02,18.25653712014248 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/10/25,11.14652500043751 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/10/25,10.611720833865846 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/24,10.749166669089178 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/24,9.33653333358334 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/05,8.735699996624998 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/04,15.45200909268 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/04,10.296874999909996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/26,12.181450000427494 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/26,12.729175000379996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/28,11.722970834768336 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/28,12.210929168101664 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/05,8.978197916886696 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/05,8.337058332963359 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/07,11.026712413211731 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/22,8.294641666069182 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/22,7.703595833520851 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/10,8.77161249978 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/10,8.789987499577501 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/04/02,8.42227086030833 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/04/03,10.72739000677 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/04/03,17.788859203789162 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/27,11.03940000134999 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/26,20.06055833371331 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/26,20.06410833371331 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/11,13.815608334483338 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/06,16.557325016527496 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/07,9.85039999981 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/07,10.430906253345016 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/02,9.518521555454152 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/07,8.970724999050026 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/06,7.406199999985002 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/06,9.309124999969995 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/30,9.656900010222492 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/29,10.290058338353342 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/29,10.427108339613344 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/22,9.547257501562523 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/29,13.385080416784165 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/08,21.24715000125003 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/08,19.96103750103252 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/01,11.308558348148324 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/30,14.168343749020009 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/30,12.62761874915 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/26,14.079062930326677 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/26,14.069637931709176 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/10,15.594965013590013 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/09,9.56209999965251 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/09,10.703149999472508 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/02,13.802583333390828 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/01,10.321177273855014 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/01,10.885356440521685 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/25,8.705683342555824 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/11,7.231368196295829 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/10,17.591025000200013 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/10,16.918700000200012 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/03,12.017006259414996 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/02,21.45374169886668 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/02,17.56275000218001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/10,3.599396946739166 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/10,10.966395842428334 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/05,7.139165136666662 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/05,16.567529033280277 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/04,18.65635001143249 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/04,13.735625006932487 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/27,5.948875000192496 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/06,9.709151511739158 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/06,15.022811558741653 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/06,8.396212272000003 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/05,21.33658750196001 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/05,21.219908336003343 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/28,21.19034166977416 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/28,12.807508334568327 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/12/08,8.188354371585959 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/12/07,15.486616669156644 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/12/07,10.054060159816087 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/30,13.15505453990498 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/29,5.348161359999991 +Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/29,3.426626650769228 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2014/12/29,11.196999999985003 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/02/06,11.289716666451664 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/02/23,22.373925000000007 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/02/22,21.88613333333335 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/04/04,11.135416667051668 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/05,8.236781567076907 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/06,9.392313645597488 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/06/06,25.95806250038 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/30,7.657391671434169 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/06/07,14.849374999784985 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/29,3.403325330769224 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/22,9.178791680704157 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/06/22,10.394166670196668 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/08/02,9.864849999344996 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/07/24,15.567370834280837 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/08/10,4.695475000362491 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/08/01,3.0091295000000065 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/07/25,8.499141667381645 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/08/25,13.233173332663334 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/09/11,3.1401442307692293 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/09/26,4.4769455043809465 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/10/04,5.823302385959883 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/09/27,3.638352120695968 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/05,2.809066442307693 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/10/29,3.904850000000006 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/29,11.244513651452491 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/22,4.671879545144995 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/30,23.01619166659167 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/21,16.31905833431832 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/01/08,3.3692000000000046 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/02/26,22.451158333333343 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/05,14.258766753804174 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/30,7.901268964999994 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/21,4.163342055190002 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/29,4.8846499999999935 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/22,3.527609 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/05/23,8.616174156066663 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/05/31,5.462188192275001 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/05/24,12.816133333733324 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/03,4.124404171494172 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/06/24,4.302135382625117 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/11,3.7495192307692222 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/02,3.153277250000005 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/06/25,5.019102269999998 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/08/11,7.428066676081674 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/08/04,2.7241696874641663 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/26,4.874235829025838 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/08/03,3.9531970607692246 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/27,4.334475763405829 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/05,3.4718628816666603 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/08/27,3.3348257653624955 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/04,4.128509090289994 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/10/07,5.611072725145001 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/28,3.933141673690834 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/21,3.358506810144996 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/10/06,3.036117467307693 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/29,3.939125004999996 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/11/08,12.21365836563334 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/10/23,4.017617855486903 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/11/07,2.901225723626372 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/12/09,4.7551258924276825 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/11/23,6.716533094871786 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/12/25,24.44946458382836 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/03,22.337341666666678 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/04,22.115583333333348 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/19,11.818683333238326 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/03/08,12.197656249187505 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/27,22.191458333333347 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/20,15.00007499990501 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/03/23,22.26459166666668 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/05/10,11.44726250181501 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/04/24,7.582558337265841 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/06/11,7.021761666616669 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/05/27,4.280287644230761 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/07/05,2.6460181 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/06/28,3.865875000310005 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/07/29,16.700783333333327 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/07/22,14.885229167661674 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/07/30,3.711827849999996 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/08/30,8.532584843405843 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/08/23,5.8619895820008345 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/08/22,3.573675000000004 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/10/10,5.811923485145002 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/10/01,3.699937866666661 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/09/24,3.56357916704667 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/10/02,4.353263797435897 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/11/11,7.068567312380947 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/11/10,2.7786250000000035 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/10/25,3.1174355316666653 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/12/04,8.851845195761786 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/11/26,3.1478250000000094 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/04/11,22.26459166666668 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/05/05,7.36182500459999 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/05/29,8.162177498830003 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/05/30,4.086949999999997 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/07/09,15.337275020700003 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/06/30,17.05432500009502 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/07/08,10.473907951775002 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/06/22,7.363208338420834 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/08/10,2.7393740999999974 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/08/09,3.506004500000001 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/09/03,4.182300000867496 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/08/25,7.105265156666662 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/09/27,3.165416666951669 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/10/05,3.708193814999998 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/12/07,5.325854166451674 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/12/08,4.466466985576924 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/11/22,3.675850000000009 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/12/23,9.627541667076686 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/02/09,15.82964999999999 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/02/10,14.716649999905009 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/01/25,21.84966666666668 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/03/06,22.539900000000006 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/02/26,21.83503333333335 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/04/23,8.126706666289182 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/05/08,3.6276882701608297 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/04/22,22.11379174491417 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/06/10,13.321512499904996 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/06/09,7.252812498130003 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/07/03,2.8570468230724995 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/06/26,17.864600018400008 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/08/04,8.479241667636671 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/08/05,3.230562499999999 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/09/05,3.127470459999998 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/08/29,8.22824583390584 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/09/06,3.6916639307692254 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/09/21,3.7869931800000023 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/10/08,4.615177002769227 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/09/29,2.8968180400000008 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/11/01,6.371833327963347 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/10/23,10.569753337620828 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/12/11,3.855287846153847 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/11/25,2.9760999999999984 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/02/05,11.289158333088332 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/03/08,22.476608333333346 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/02/20,21.66638333333335 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/03/31,10.281557520892491 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/04/01,21.93075834253334 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/05/02,11.534287518137504 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/04/25,4.952175799999995 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/05/03,6.887175000000006 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/04/24,4.004849999999999 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/05/27,7.731695456739166 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/06/11,5.481915640111905 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/06/04,2.952502250000001 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/05/26,3.354975000000005 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/06/28,4.147140154028333 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/07/06,2.80444334 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/08/07,2.735002250000004 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/08/31,3.755023488840828 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/08/30,3.197550000000008 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/08/23,4.892175001594994 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/10/10,16.069125000147505 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/10/01,8.446375000527498 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/09/24,12.659141671339173 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/12/29,21.88613333333335 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/01/30,21.84966666666668 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/03/11,10.248908333190824 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/04/11,14.121150000399997 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/03/26,12.080608333475835 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/05/06,3.8345723631958286 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/06/07,6.197125000264999 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/05/29,9.509250754991667 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/08/02,5.511933279997141 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/08/10,4.47240000007249 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/07/25,15.88313333352332 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/09/11,10.910533333570823 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/09/02,3.20471923076923 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/08/26,3.933824999999992 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/11/06,4.070022402088566 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/11/09,2.7217692307692336 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/11/05,2.9880763461538464 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/10/29,4.180683465293039 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/12/07,2.74074423076923 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/11/24,3.778813461538464 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/12/24,11.65295 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/12/24,22.50665833370333 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/12/23,3.751020633269232 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/01/25,22.34590833333334 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/02/26,10.554416666666684 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/02/26,22.274983333333346 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/03/30,22.34590833333334 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/04/06,8.522366684359165 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/03/29,21.88613333333335 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/03/22,13.350174999762505 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/09,3.1736636549999986 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/09,2.599373175000002 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/08,5.481432578333335 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/01,2.9872510549999998 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/04/30,5.54156667212166 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/04/23,12.95524166666666 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/31,9.569404171004164 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/25,3.856784099999992 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/24,12.497374999999986 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/06/29,4.236076518404165 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/07/11,14.258208333380813 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/07/03,2.925852250000005 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/06/26,3.233862881666667 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/06/25,12.988608333733325 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/07/28,2.3784907500000005 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/07/27,2.8709795 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/08/29,4.017011366134999 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/08/28,6.37931742666667 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/09/22,6.119774994950009 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/10/08,13.29360000052499 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/09/30,5.868270322481685 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/10/31,4.167122395768336 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/11/09,3.042055314102564 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/11/08,2.2946187673076888 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/10/31,6.272374998692498 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/10/23,5.933733333988331 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/12/10,2.9897500000000066 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/12/02,3.392549000000002 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/11/24,2.843634980769232 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/02/21,12.942166666189165 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/04/10,18.78725625020001 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/04/09,11.832899999904994 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/04/02,11.92971667117166 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/04/01,13.147108333190834 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/09,14.141352499592475 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/11,4.782325873166551 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/31,17.9504916666667 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/26,6.239186360144998 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/28,7.1118500001674825 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/27,13.450933333333335 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/06/22,3.882662728217495 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/06,4.2278386662475 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/06/21,3.4024000000000068 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/10,8.368916672374164 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/05,3.5320983846666603 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/31,3.701799999999997 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/30,5.12150428254738 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/23,3.313375000000006 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/22,3.012352250000006 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/01,8.301512876954172 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/27,9.493975000000011 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/09,8.008483333560816 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/01,3.486150000507496 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/31,3.851418943333325 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/24,3.0352386033333314 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/23,3.0825250000000044 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/28,10.916620850275825 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/10/03,4.630241677873332 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/10/02,3.8865674266666654 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/25,3.2398090904824937 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/11/03,5.040152339999995 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/12/06,22.37727499974001 +Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/11/28,3.138075000000006 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/01/05,21.791766666666685 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2014/12/29,10.540224999785009 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/02/23,22.663366666666672 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/05,13.65210002300002 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/06,6.937400000192485 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/06/06,5.963023324780831 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/30,5.4178866072628535 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/06/07,13.034074999784984 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/29,3.803149999999994 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/22,5.303025000047492 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/06/22,6.49135833293834 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/06/30,22.001883333088344 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/08/09,3.352649999999995 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/07/24,16.58368333225832 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/08/10,4.110675000434994 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/03,5.885750000070004 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/08/25,4.132559092027501 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/11,3.187004999999993 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/02,9.625758333523324 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/26,4.793205318021972 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/10/04,5.1893250000000055 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/27,2.7754765000000003 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/12/08,7.376549998635011 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/11/29,4.153890161811659 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/11/22,4.615462767380946 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/11/30,20.82086666620668 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/11/21,20.308508334118315 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/01/08,21.67155833333335 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/01/24,21.967658333333347 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/02/26,22.348225000000006 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/03/05,21.388183333070856 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/03/29,22.34590833333334 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/05/07,9.022266671896675 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/04/30,3.344871230362494 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/04/21,7.139479564999993 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/04/29,6.067282956369987 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/04/22,3.2327772500000047 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/05/23,7.198773331615836 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/05/31,7.099818942571672 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/07/03,7.608808333858331 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/06/24,5.044040927633338 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/07/11,4.443100000144991 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/06/25,2.892439730769228 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/08/11,9.585970835823332 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/08/04,3.483144548144993 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/08/03,2.87323635 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/07/27,3.429792260769227 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/05,3.4026340999999927 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/08/27,15.823691666404152 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/04,3.553409099999996 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/10/07,3.869938619999996 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/28,3.0899310566666656 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/21,3.874568180217494 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/10/06,2.097622674999997 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/29,2.8841241649999976 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/11/08,4.472977166333326 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/10/23,7.059091660746677 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/11/07,2.2692065365384577 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/12/09,21.675758333333352 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/11/23,3.3166795000725 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/01/11,15.039241666571662 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/02/19,22.177183333333343 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/03/08,10.63979166887166 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/03/23,22.34590833333334 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/04/24,12.454075002300003 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/06/11,8.689766664254172 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/05/27,3.6083711538461527 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/07/05,3.84101591 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/07/29,21.58006666699917 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/07/30,2.427879200000001 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/08/30,10.583203786666669 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/08/23,3.699229167141671 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/09/07,17.70581666665166 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/08/31,6.087125000095008 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/10/10,3.5425650129999964 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/10/01,3.0093174366666613 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/09/24,4.860525000309997 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/10/02,2.412490575 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/09/23,8.516050001007482 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/11/11,7.565168938380835 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/11/10,3.4655750000475027 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/10/25,3.617685499999997 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/12/04,3.6234143228550018 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/12/28,22.242050000000013 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/05/05,4.564550000000001 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/05/29,8.610704165019174 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/05/30,3.614224999999992 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/07/09,7.691210616811666 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/06/30,17.704476669351656 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/07/08,17.943481441261664 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/07/01,12.946975000142492 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/06/22,2.3060886 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/08/10,3.684284199999995 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/08/09,10.756183333765826 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/08/02,8.577284090554999 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/09/03,11.721349999784984 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/08/25,3.434388830769225 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/10/05,2.360513350000001 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/12/08,21.88613333333335 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/01/01,24.44116666666665 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/02/09,13.262600000189998 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/02/10,13.180491666404162 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/02/01,21.867666666666683 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/02/26,21.75304166666668 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/04/23,9.591133333743352 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/05/08,5.697296240953327 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/04/22,10.970200004742496 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/06/09,2.487572740000003 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/06/26,8.037599999569997 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/08/04,3.1258250018849982 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/08/05,3.2832749999999966 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/07/27,3.4673840902399955 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/05,3.4145212133333307 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/08/29,5.56428958302833 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/06,3.0422079307692265 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/21,7.010446966739165 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/10/08,3.491237349999996 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/29,6.911150000360007 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/22,12.299024999784988 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/11/01,4.152389579560833 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/12/11,10.984374999857517 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/11/25,3.722900000000006 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/02/05,22.47810000000001 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/03/08,10.153008333118343 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/03/07,21.675758333333352 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/02/29,21.867666666666683 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/02/20,21.88613333333335 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/04/01,13.722908333285837 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/05/02,13.526633374733349 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/04/25,3.747643938333328 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/05/03,5.086649999999998 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/05/27,2.882709091087498 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/06/11,2.5057567500000006 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/06/04,8.89232625165405 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/05/26,4.183075000072495 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/07/05,11.7555999962225 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/07/06,2.8653168633333315 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/06,4.3440128849833375 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/07/30,3.7896942308417256 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/07,3.194816905769227 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/31,6.414750000264995 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/09/08,11.009004166884168 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/30,9.752100008135 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/23,3.4837500021024983 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/10/09,3.693018189999992 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/09/23,12.495918995801656 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/10/10,13.400300005949996 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/09/24,15.351508333955838 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/11/10,3.797377420623332 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/10/25,12.698913223393332 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/12/29,21.750616666666684 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/01/29,22.47810000000001 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/02/06,23.24800833333333 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/03/02,22.407050000000005 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/04/04,14.315974999905013 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/05/06,2.519957249999999 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/06/06,7.863062502964991 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/06/07,8.514902249999999 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/05/29,4.178425000144996 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/07/24,3.986368180362496 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/08/10,3.5061522499999977 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/07/25,2.7612750000475006 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/08/25,13.869983333695838 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/09/11,12.390933333333326 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/08/26,4.854175000457492 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/09/26,3.2862295454349963 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/11/06,10.886414909329435 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/11/05,2.9482433269230763 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/10/29,2.668287322435897 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/12/07,13.614308333533325 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/11/24,2.6234340249999986 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/11/21,2.793299990000001 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/12/24,11.938491666666666 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/12/23,12.46194166660416 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/02/26,13.053891666804168 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/04/06,9.744558335538322 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/03/29,21.791766666666685 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/09,3.202837145144997 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/09,2.824261775000002 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/08,11.017150022999996 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/01,3.829964403333328 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/04/30,8.731191669539157 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/31,12.472375000189995 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/26,9.426500001092505 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/25,3.613659149999998 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/24,4.856100001422502 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/07/04,12.196154167076656 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/06/29,4.045025000072494 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/07/03,4.927496971948335 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/06/26,3.623416060769225 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/06/25,23.797175000792503 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/08/07,9.280508342100836 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/07/28,2.817825000000004 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/07/27,2.546102249999999 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/08/29,4.51025416743916 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/08/28,2.3175452500000024 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/09/22,6.333049997990006 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/09/30,2.302372605769229 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/09/29,3.551 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/09/21,4.7504090999999935 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/10/31,16.577141708066694 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/11/09,2.3682452999999986 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/11/08,2.3144766 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/10/31,16.522766667451652 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/10/24,18.91396666685665 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/10/23,13.230591666866657 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/12/10,7.451693560155836 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/12/02,4.861979170364165 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/11/24,3.2833907500000006 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/02/04,22.18061666666668 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/04/10,11.513308333238326 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/09,15.137875000000005 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/11,15.75881667126667 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/31,4.104711361932499 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/26,2.9361636302899967 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/06/05,13.395916669134165 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/28,5.364500000215002 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/27,13.672854166739164 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/06/22,7.346877270844999 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/07/06,2.8295749999999957 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/06/21,2.7799250000000053 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/10,11.315633343280824 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/05,3.4314000003624976 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/07/30,12.71113334212083 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/07/23,3.479748463380837 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/07/22,2.9791272500000034 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/01,16.857566667101672 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/09,5.447725001179999 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/01,3.1907250013774955 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/31,3.3995765266666638 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/24,2.863186389999996 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/23,2.440540725000001 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/28,9.193347916619173 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/10/03,4.102619109999991 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/10/02,4.362308187999993 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/25,6.587575000505015 +Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/11/03,4.269250919999994 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/01/05,10.870000000185009 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/06,21.848400000000016 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/06,21.848400000000016 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/03/11,20.63073958467336 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/23,22.47810000000001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/22,22.689058333333342 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/03/11,20.63073958467336 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/23,22.47810000000001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/22,22.689058333333342 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/05,14.445883379333344 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/06,7.326358335778326 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/05,14.445883379333344 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/06,7.326358335778326 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/06,8.920789165999171 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/30,21.65369000118501 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/07,13.329799999999985 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/29,4.511375000144997 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/22,2.722327250000002 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/06,8.920789165999171 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/30,21.65369000118501 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/07,13.329799999999985 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/29,4.511375000144997 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/22,2.722327250000002 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/22,14.166837502185007 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/30,11.96779166622165 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/22,14.166837502185007 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/30,11.96779166622165 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/09,2.419916661666667 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/07/24,15.019366675939164 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/10,4.867475000502495 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/01,2.5311772500475 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/09,2.419916661666667 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/07/24,15.019366675939164 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/10,4.867475000502495 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/01,2.5311772500475 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/03,5.666799995395008 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/25,9.299433340423333 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/11,2.862925000000004 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/02,8.790175000507498 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/03,5.666799995395008 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/25,9.299433340423333 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/11,2.862925000000004 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/02,8.790175000507498 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/26,5.024952738919407 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/10/04,5.536100000000008 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/27,2.4968214307692285 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/26,5.024952738919407 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/10/04,5.536100000000008 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/27,2.4968214307692285 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/05,2.2600619874999994 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/05,2.2600619874999994 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/12/08,6.864474996040011 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/29,7.200268072380943 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/22,3.836446997515239 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/30,3.0038500000000066 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/12/08,6.864474996040011 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/29,7.200268072380943 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/22,3.836446997515239 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/30,3.0038500000000066 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/01/24,21.67155833333335 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/01/24,21.67155833333335 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/02/26,22.348225000000006 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/02/26,22.348225000000006 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/07,21.96543750097001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/30,4.134954549999996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/21,8.300598483333335 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/29,5.085933336565832 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/07,21.96543750097001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/30,4.134954549999996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/21,8.300598483333335 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/29,5.085933336565832 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/23,5.585327327979399 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/31,6.854800000352502 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/23,5.585327327979399 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/31,6.854800000352502 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/03,7.6655772819499965 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/06/24,14.12309170116667 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/11,3.934350000072497 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/06/25,2.277202825000003 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/03,7.6655772819499965 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/06/24,14.12309170116667 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/11,3.934350000072497 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/06/25,2.277202825000003 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/11,6.527737495335006 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/04,3.3773468279999945 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/03,2.622484 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/27,3.453770405 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/11,6.527737495335006 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/04,3.3773468279999945 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/03,2.622484 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/27,3.453770405 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/05,3.816586399999991 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/27,7.363325007210001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/04,2.9929795499999994 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/05,3.816586399999991 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/27,7.363325007210001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/04,2.9929795499999994 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/10/07,2.6009718380000004 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/28,11.8939750116675 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/21,3.7456074516666575 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/10/06,2.52110891153846 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/29,2.4784761250000025 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/10/07,2.6009718380000004 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/28,11.8939750116675 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/21,3.7456074516666575 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/10/06,2.52110891153846 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/29,2.4784761250000025 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/08,9.355825634666662 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/07,2.8225349182692283 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/08,9.355825634666662 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/07,2.8225349182692283 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/12/10,10.40219166928916 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/12/09,3.268950000000005 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/23,2.856577250000002 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/12/10,10.40219166928916 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/12/09,3.268950000000005 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/23,2.856577250000002 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/01/02,22.674233333333337 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/01/02,22.674233333333337 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/02/04,21.919450000000012 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/02/04,21.919450000000012 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/03/08,14.087299999905005 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/02/20,20.383683333238366 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/03/08,14.087299999905005 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/02/20,20.383683333238366 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/03/23,22.451158333333343 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/03/23,22.451158333333343 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/04/24,8.071758336714167 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/04/24,8.071758336714167 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/06/11,8.306266662916668 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/06/11,8.306266662916668 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/05,2.326713500000001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/05,2.326713500000001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/29,7.1135791696441695 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/30,2.612317666895605 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/29,7.1135791696441695 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/30,2.612317666895605 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/30,3.729184090144996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/23,7.730483342793332 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/07,3.403752250000005 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/31,8.6065500003625 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/30,3.729184090144996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/23,7.730483342793332 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/07,3.403752250000005 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/31,8.6065500003625 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/10,9.3506125019275 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/01,4.479670519999991 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/24,4.825451516666666 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/02,2.5606691807692283 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/23,9.230575000192482 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/10,9.3506125019275 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/01,4.479670519999991 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/24,4.825451516666666 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/02,2.5606691807692283 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/23,9.230575000192482 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/11/11,22.887968184600027 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/11/10,3.055919230769232 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/11/11,22.887968184600027 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/11/10,3.055919230769232 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/12/04,9.585965846415856 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/04/11,22.337341666666678 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/05/05,5.0254999999999965 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/06/07,7.186524996472511 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/05/29,5.855182800499168 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/05/30,5.117735606906666 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/07/09,4.6026560617391565 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/06/30,15.729133333903327 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/07/08,12.64819999999998 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/07/01,6.0030750018249925 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/06/22,2.6616249499999984 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/08/10,3.4087415616666625 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/09/03,2.668902250000006 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/08/25,3.5761607683333256 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/10/05,2.6106919307692285 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/11/22,21.838800000000013 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/02/09,15.780899999999988 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/02/10,13.338666666404166 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/04/23,13.038933483763346 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/05/08,5.974003808921662 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/04/22,23.165766710556653 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/06/10,11.912033328028338 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/06/09,6.552949811963571 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/07/03,4.553036764039167 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/08/04,13.387025000507514 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/08/05,2.3317704000000026 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/07/27,3.840393200144992 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/05,4.044621996666658 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/08/29,3.926797779999992 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/06,3.790566135769225 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/21,6.56090757333333 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/10/08,2.4450648750000026 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/29,3.820204170731664 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/22,12.771749999354988 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/10/23,6.731124990650011 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/11/09,8.209625000289996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/12/11,11.8503500001375 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/11/25,4.158372754807694 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/03/08,22.451158333333343 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/02/21,22.539900000000006 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/03/07,21.66638333333335 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/02/20,21.919450000000012 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/03/31,9.591350000000013 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/04/01,12.767216666714171 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/05/02,6.638438644999997 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/04/25,7.549409104999996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/05/03,5.055109079999993 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/05/27,2.980249102999997 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/05/26,3.852500000047499 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/07/05,4.962837509550003 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/06/28,16.007741732816665 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/07/06,2.645704350000002 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/07/30,4.141964599999991 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/08/07,2.9403999999999986 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/09/08,7.10050666769666 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/08/30,5.433900000047495 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/08/23,4.028975524999991 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/10/09,4.753959159999989 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/09/23,6.721016657836672 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/10/10,11.797433334630831 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/11/10,24.24757515563336 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/10/25,11.118213330953324 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/12/29,21.75304166666668 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/01/29,22.76205 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/01/30,22.689058333333342 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/03/02,22.373925000000007 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/04/03,22.480808333333343 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/03/26,10.61364166657166 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/05/06,3.4709317949999963 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/06/06,9.63785000249 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/06/07,3.624099999999996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/05/29,12.138108333405828 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/08/02,3.1874483317108333 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/07/24,16.42427500172749 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/08/10,3.314695099999997 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/07/25,5.743598795769225 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/08/25,4.904558335118332 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/08/26,14.789274998679998 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/09/26,9.017066555714289 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/06,14.715503795633344 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/09,2.6303522500000067 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/05,3.215850000000003 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/10/29,2.398568293269229 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/29,3.730846951739166 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/24,5.6725448874358975 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/21,5.126695399999999 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/12/24,24.44116666666665 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/01/08,21.848400000000016 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/12/23,12.500325000337495 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/02/01,22.47567500000001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/01/25,10.017883333333348 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/02/26,22.22352500000001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/04/06,22.249200007089996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/03/22,14.537899999952495 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/09,2.771570331333333 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/09,3.013807625000001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/08,5.154403052201665 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/01,3.0203039999999994 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/04/30,4.318984069999996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/04/23,21.79934166700418 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/31,13.83581669225667 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/26,10.38952500016 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/25,3.083600449999996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/24,6.075630315279163 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/07/04,3.637593180144995 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/06/29,4.54319549999999 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/07/03,6.047975776365819 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/06/26,3.074278513333329 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/06/25,6.399339020850833 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/07/27,3.4535000000000053 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/10,13.817364173566654 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/08/29,6.492729926054994 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/08/28,2.31775675 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/22,11.329900000860016 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/30,3.0555630432692324 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/22,3.71119423076923 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/21,4.440409100144996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/10/31,7.503804550072505 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/11/09,2.8204704307692303 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/11/08,2.4443918307692285 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/10/31,4.835505304886667 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/10/24,4.642125000409993 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/10/23,11.950566666666656 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/12/10,4.167181699999997 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/12/02,13.095908333333323 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/11/24,3.2721942307692298 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/12/27,22.18061666666668 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/02/04,22.18304166666668 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/04/10,12.326266666619158 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/04/09,13.876608333238334 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/04/02,10.977433333143342 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/09,14.085100000000006 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/11,11.638808340328325 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/31,8.5253500000725 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/26,2.5061756246666658 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/06/05,12.24069166913416 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/28,4.419334099999993 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/27,15.25133750016749 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/06/22,7.244722343525831 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/07/06,4.359204539999996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/06/21,3.422675000000005 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/10,17.706383349723342 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/05,4.123879550072493 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/07/23,3.459988105769231 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/06,6.015768940145002 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/01,8.330277270554996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/27,5.7301750004000045 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/09,4.695629927379996 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/01,3.203153792101663 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/31,4.268144701666659 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/24,3.346256623333334 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/23,2.4078885999999997 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/28,11.796989595850828 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/23,8.610918749050022 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/10/03,3.946223495164999 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/10/02,3.252037129999997 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/25,7.23242500070001 +"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/11/03,5.001386344999997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/01/05,21.75304166666668 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/01/29,22.348225000000006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/02/06,21.791766666666685 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/01/29,22.348225000000006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/02/06,21.791766666666685 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/03/11,11.370958333918336 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/03/10,22.231758333333342 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/02/22,22.58308333333334 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/03/11,11.370958333918336 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/03/10,22.231758333333342 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/02/22,22.58308333333334 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/04/03,10.14269166628669 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/04/03,10.14269166628669 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/05,9.802750009594996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/06,14.855108365533354 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/05,9.802750009594996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/06,14.855108365533354 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/06/06,6.334099192482732 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/29,12.432499999999996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/22,3.137150000000004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/06/06,6.334099192482732 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/29,12.432499999999996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/22,3.137150000000004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/08,19.157904167806688 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/06/22,8.480977079853341 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/08,19.157904167806688 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/06/22,8.480977079853341 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/09,3.281774204999996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/24,17.35364166637917 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/10,12.544500000199992 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/01,2.5253840000000007 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/25,5.786375000769998 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/09,3.281774204999996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/24,17.35364166637917 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/10,12.544500000199992 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/01,2.5253840000000007 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/25,5.786375000769998 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/03,4.2202739804977405 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/25,3.025469696666664 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/11,4.2832385 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/02,3.4942045000000004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/03,4.2202739804977405 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/25,3.025469696666664 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/11,4.2832385 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/02,3.4942045000000004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/10/05,3.1589499799999983 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/26,5.12643786968864 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/10/04,9.491825000119984 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/27,3.00916552403846 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/10/05,3.1589499799999983 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/26,5.12643786968864 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/10/04,9.491825000119984 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/27,3.00916552403846 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/29,6.72997499625501 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/22,3.4197318262549987 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/30,2.496954500000003 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/29,6.72997499625501 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/22,3.4197318262549987 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/30,2.496954500000003 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/01/25,22.373925000000007 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/01/25,22.373925000000007 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/02/26,10.081941666451678 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/02/26,10.081941666451678 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/05,8.544363512999997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/03/29,11.25592499957001 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/05,8.544363512999997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/03/29,11.25592499957001 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/07,5.576922499979999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/30,4.2563986419999935 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/21,3.495174097999998 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/29,7.78663257967167 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/22,3.202075000000006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/07,5.576922499979999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/30,4.2563986419999935 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/21,3.495174097999998 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/29,7.78663257967167 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/22,3.202075000000006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/23,13.486841717266673 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/31,4.087164399255829 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/24,13.830300000864987 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/23,13.486841717266673 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/31,4.087164399255829 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/24,13.830300000864987 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/06/24,4.222193179999994 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/07/11,3.261161349999996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/06/25,3.1267939557692315 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/06/24,4.222193179999994 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/07/11,3.261161349999996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/06/25,3.1267939557692315 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/11,13.110816701266677 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/04,2.621275 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/03,2.8604363500000023 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/07/27,15.967850000479997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/11,13.110816701266677 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/04,2.621275 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/03,2.8604363500000023 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/07/27,15.967850000479997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/05,3.1603340999999983 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/27,2.914971505769229 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/04,2.461626875 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/28,3.459519230769222 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/05,3.1603340999999983 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/27,2.914971505769229 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/04,2.461626875 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/28,3.459519230769222 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/07,4.901047771047611 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/28,4.8851185718441705 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/21,2.7587037916666675 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/06,2.772064393269229 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/29,3.0931809615384585 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/07,4.901047771047611 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/28,4.8851185718441705 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/21,2.7587037916666675 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/06,2.772064393269229 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/29,3.0931809615384585 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/08,5.772605354380946 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/23,15.097042366043608 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/07,6.444320028388277 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/08,5.772605354380946 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/23,15.097042366043608 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/07,6.444320028388277 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/10,5.626862143595838 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/09,4.107806750000004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/23,7.859375000507498 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/10,5.626862143595838 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/09,4.107806750000004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/23,7.859375000507498 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/01/11,13.296066666476673 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/01/02,22.34590833333334 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/25,13.317791666404162 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/01/11,13.296066666476673 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/01/02,22.34590833333334 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/25,13.317791666404162 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/02/19,20.94073958629836 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/03/08,19.830541703751663 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/02/20,15.224474999905006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/02/19,20.94073958629836 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/03/08,19.830541703751663 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/02/20,15.224474999905006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/03/23,22.34590833333334 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/03/23,22.34590833333334 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/04/24,17.117817428966685 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/05/11,3.354202249999999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/04/24,17.117817428966685 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/05/11,3.354202249999999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/06/11,5.957384467325832 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/06/11,5.957384467325832 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/05,2.638219730769229 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/06/28,7.719150000144997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/05,2.638219730769229 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/06/28,7.719150000144997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/29,13.442450018617505 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/30,2.7579840750000018 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/29,13.442450018617505 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/30,2.7579840750000018 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/30,5.688119160229167 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/23,3.353777497312505 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/31,8.521402270362495 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/30,5.688119160229167 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/23,3.353777497312505 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/31,8.521402270362495 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/10,3.284122740072496 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/01,5.0090207557692255 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/09/24,2.347489408333333 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/02,3.093932504807691 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/09/23,4.006638625072494 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/10,3.284122740072496 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/01,5.0090207557692255 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/09/24,2.347489408333333 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/02,3.093932504807691 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/09/23,4.006638625072494 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/11,7.304769582380942 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/10,22.476150000355 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/25,10.75150603666666 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/11,7.304769582380942 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/10,22.476150000355 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/25,10.75150603666666 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/12/04,5.204665901805002 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/27,5.739074998035006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/05/05,6.9224250023000025 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/06/07,10.379250231741665 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/05/29,7.225846968333332 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/05/30,6.492250002300002 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/07/09,3.738358182999992 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/07/08,4.953000000644999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/07/01,4.746050000072492 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/06/22,3.372453649999997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/08/10,3.033529275 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/08/09,3.490739999999996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/08/25,3.616617158333329 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/09/27,3.1035415883333344 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/10/05,2.68760175 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/11/22,14.52041666666666 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/12/23,9.871200000000012 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/01/25,13.013266667004167 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/02/26,21.75304166666668 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/04/23,4.1442257733333285 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/05/08,8.829625 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/04/22,5.9284 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/06/01,10.301879166381685 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/06/09,3.4353572699999946 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/07/03,7.328929550435001 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/06/26,3.270941688333329 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/07/04,6.199187885443326 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/08/04,10.758033340473323 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/07/28,6.870302076343348 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/08/05,2.520607542307692 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/07/27,3.747124999999994 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/09/05,3.605187961666657 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/08/29,3.420625015072496 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/09/06,5.422863644999995 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/09/21,9.021715805714289 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/10/08,5.397425841465196 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/11/01,8.629971250667522 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/10/23,12.230521551261656 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/12/11,15.804741669014172 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/11/25,3.0479493115384613 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/03/08,22.309808333333343 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/04/01,11.335341666571669 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/05/02,14.977866708066667 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/04/25,8.625731820000004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/05/03,3.822144549999997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/05/27,3.657826379666664 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/05/26,3.345982299999999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/07/05,6.779145077541668 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/06/28,5.960538808150183 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/07/06,3.220216867307694 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/06,4.55324545984 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/07,3.3892681740384614 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/31,4.281579269871796 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/09/08,6.098357887948708 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/30,2.7677930001675013 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/23,4.615563644999992 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/10/09,5.696167332380947 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/10/10,7.592050000192498 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/11/10,4.995734894380947 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/10/25,12.620334115317965 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/12/29,21.446433333070853 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/01/29,22.76551666666667 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/02/06,21.791766666666685 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/03/02,22.47810000000001 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/04/03,22.29679999935501 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/03/27,22.674233333333337 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/05/06,4.917895444999996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/06/06,6.90778334757333 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/06/07,3.4847522500950068 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/06/23,4.124471321923075 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/08/10,3.1703138249999974 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/07/25,9.178075000192496 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/08/25,19.669224999712515 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/09/11,3.264729764999998 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/08/26,3.166427250000002 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/06,9.26179155571428 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/09,3.859118943846147 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/05,3.949352249999999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/10/29,6.019576413919412 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/29,5.780756250510004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/24,4.402110647435896 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/21,10.543070469999998 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/12/24,24.44116666666665 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/02/01,22.373925000000007 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/01/25,22.658500000000007 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/04/06,8.196008332630857 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/04/06,17.79775836302334 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/09,4.399691821999993 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/09,2.1623474 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/08,6.126108341265824 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/01,2.660181265000004 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/04/30,5.2965000023 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/04/23,18.57850833348584 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/31,6.496949992370011 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/26,6.094075004110005 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/25,3.861193199999994 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/24,6.3971583495483335 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/07/04,5.935084090455008 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/06/29,3.5720310566666598 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/07/04,4.136531066666664 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/07/03,3.776900000000003 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/06/26,3.2584399999999936 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/06/25,4.650535931824162 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/07/28,2.632833999999999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/10,6.0165562486450055 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/08/24,3.510748523333328 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/08/29,11.043008333860827 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/08/28,2.743272665000002 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/08,2.586525000000003 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/30,3.5683908750724966 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/29,3.1294250000000066 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/22,12.288108333733328 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/21,5.048658336143331 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/31,4.967761956618332 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/26,7.467699995865008 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/11/09,6.444143283333327 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/11/08,4.999500997435899 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/31,7.927979165451672 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/24,18.30399999993999 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/12/10,5.529911364999993 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/12/02,8.696125000000006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/11/24,3.1899568499999997 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/12/27,22.169733333333344 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/02/04,22.14189166666668 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/04/10,10.98709166657166 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/04/09,11.151308333238328 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/04/02,11.851066670021662 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/09,14.800716666666682 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/11,7.014409853333334 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/31,4.168162728144996 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/26,3.4470043913333286 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/06/05,18.57558334030585 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/28,3.6544249999999936 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/27,9.208300000552493 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/06/22,7.348903786739165 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/07/06,2.5905022000000013 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/06/21,2.7823250000000046 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/08/05,3.461125000072496 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/07/31,2.673352250000006 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/07/23,18.202950000497484 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/07/22,2.5357022499999986 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/06,4.427861364999995 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/01,6.026534090262505 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/01,10.850627270167504 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/08/31,4.823700000000001 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/08/23,2.79452668076923 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/28,12.497461805337132 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/23,6.674355683548332 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/10/03,4.082994100072494 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/10/02,3.906399169999994 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/25,6.362666667241678 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/11/03,5.449510626666662 +"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/11/28,3.138582692307692 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/01/05,21.838800000000013 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2014/12/29,4.392057697115383 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/02/22,12.64257500050502 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/04/03,9.726166666286687 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/05,5.0536286817760665 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/06,14.222775018472523 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/06/06,4.03103750468 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/30,6.318095823350842 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/06/07,17.92627499999998 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/29,19.053141666739176 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/22,4.181800763550831 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/07/08,10.421833365708324 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/06/22,3.662645517999993 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/06/30,19.308249999999983 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/08/09,3.5179037916666624 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/07/24,13.94170833333332 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/08/10,9.839558339088333 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/08/01,3.2006634615384604 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/07/25,6.919850013252492 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/03,4.672250762780837 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/11,4.455254830769224 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/02,13.24817417865416 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/10/05,4.567781553946548 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/26,4.325452910714279 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/10/04,14.249126670164172 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/27,2.84154001153846 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/11/05,3.688875000265 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/11/29,4.811775801120116 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/11/22,3.3554575986958297 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/11/21,13.444525000072485 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/01/25,9.711783333333347 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/04/05,4.239931068405834 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/05/07,8.072783753890004 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/04/30,10.009778023405827 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/04/21,6.045375004672504 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/04/29,6.203048119340833 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/05/23,5.923109826158575 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/05/31,9.325891302955824 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/05/24,5.618931819999998 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/07/03,3.857234913333327 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/06/24,3.665983333840828 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/07/11,6.71967500579751 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/06/25,2.0970715207692314 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/11,3.6795772770291575 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/04,3.47138470966666 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/07/26,8.66423333436333 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/03,2.9469159149999977 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/07/27,3.8126526939102514 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/05,3.155177299999996 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/27,3.107654541014995 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/04,5.505575743333327 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/28,8.481770845039172 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/10/07,3.8146977152174992 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/28,4.394834475345833 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/21,2.9334201596666656 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/10/06,2.4857885999999985 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/29,3.462950180769227 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/11/08,7.213834101666666 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/10/23,7.091708222380953 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/11/07,2.69525093076923 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/12/10,4.159281375769226 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/12/09,2.981700000000001 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/01/11,12.628966666571662 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/12/25,21.794191666666684 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/02/04,21.791766666666685 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/02/19,11.975608333048337 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/03/08,14.98752499990501 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/02/20,20.28595833323837 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/03/23,22.26459166666668 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/04/24,5.530961365000001 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/05/11,3.911937230769226 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/06/11,6.9766949998550025 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/07/05,5.639600002300003 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/06/28,14.60495833352332 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/07/29,5.83672500033751 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/07/30,3.902076349999995 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/08/30,5.035670455627498 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/08/23,17.061433333795854 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/10/10,7.738354170091671 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/10/01,3.8169350019999913 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/09/24,3.392318180217498 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/10/02,3.0125889173076894 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/09/23,3.621009095145004 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/11/11,8.105869027777766 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/11/10,3.9634750001450025 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/10/25,5.555346366999994 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/12/04,4.2906187499150095 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/11/27,5.049399999985002 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/04/11,11.178724999325004 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/05/05,4.862000000192494 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/04/28,10.06079999964251 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/06/07,10.603412501397523 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/05/29,5.306047671449046 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/05/30,7.120375004935008 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/07/09,2.950849861333331 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/07/08,7.0085750006475065 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/07/01,6.612575001422496 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/06/22,2.7579940557692293 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/08/10,3.510620599999996 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/08/09,3.9307500000000055 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/09/03,12.17297916666667 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/08/25,3.904818184999993 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/09/27,2.938816530000001 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/10/05,2.62280725 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/11/22,12.46132500000001 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/12/23,22.47810000000001 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/02/09,13.964139583285826 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/02/10,21.77565833333335 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/03/06,22.348225000000006 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/02/26,21.848400000000016 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/04/23,4.888984095407497 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/05/08,11.59794169081667 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/04/22,4.141950000000001 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/06/01,10.967879166429189 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/06/09,4.122635999999993 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/07/03,7.480518961829168 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/06/26,7.268625000217506 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/07/04,17.077466667266663 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/08/04,13.168566682839185 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/08/05,3.0386545549999964 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/07/27,6.035725000712505 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/09/05,3.023650604666664 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/08/29,2.9974500006175004 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/09/06,4.284920454999995 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/09/21,6.901751513405836 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/10/08,5.728319071999988 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/10/23,7.473600000000004 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/12/03,10.544725014549996 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/12/11,9.538825023000015 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/11/25,2.934494210769228 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/02/05,22.348225000000006 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/02/21,22.348225000000006 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/02/29,22.68663333333334 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/02/20,21.838800000000013 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/04/01,18.51212291754169 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/05/02,4.08349924862333 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/04/25,2.912241668768329 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/05/03,5.976249241666657 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/05/27,3.3769613608699944 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/05/26,13.981585003807515 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/07/05,12.269637500617502 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/06/28,3.3936992367391614 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/07/06,3.8839121441025592 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/06,5.722025003235007 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/07,4.235359794102557 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/31,2.786284394102566 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/09/08,13.582075000047505 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/30,3.0772772500000025 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/23,7.569968180145 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/10/09,5.151606871047612 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/09/23,6.689270831815842 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/11/10,6.424410618405825 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/10/25,9.898076157015009 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/12/29,21.675758333333352 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/01/29,22.337341666666678 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/02/06,12.7182499995225 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/01/30,21.856800000000018 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/03/02,22.76205 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/04/03,13.30182291819666 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/03/26,7.352775000000003 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/05/06,3.8104462133333294 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/06/06,7.094775002614992 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/06/07,3.43477725 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/05/29,17.945125000400008 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/08/02,6.519849995395012 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/08/10,8.008615910047507 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/07/25,6.649775000602499 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/09/03,6.180199996255007 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/08/25,2.865175001029999 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/09/11,3.275807885769225 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/08/26,5.118275000047492 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/09/26,21.044433334658336 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/06,5.708566073811665 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/05,2.385978395769233 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/10/29,3.1170880284340656 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/29,10.5280300041725 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/24,4.215981839999999 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/21,6.079820603666659 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/12/24,23.10110833333333 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/02/26,23.23219166666666 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/03/30,22.26459166666668 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/04/06,9.898566668966655 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/09,3.845410596739165 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/09,3.660856891999996 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/08,3.717886384999996 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/01,4.990713649999992 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/04/30,11.913450037950009 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/04/23,19.521008333015835 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/31,8.067899999025007 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/26,4.231000001682498 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/25,5.827300005080008 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/24,14.405120835465834 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/07/04,19.198770833380816 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/06/29,4.329968179999989 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/07/04,3.2070545000000017 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/07/03,6.023237504239992 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/06/26,5.269550002632505 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/06/25,15.018025001034976 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/07/28,4.705626881794868 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/09/10,9.377012499307495 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/08/24,22.181662499902504 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/08/28,3.0277500999999973 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/09/22,8.405812501325022 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/09/30,5.513600000120006 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/09/21,2.988327250000006 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/10/31,9.334554168436672 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/10/26,18.013558335518333 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/11/09,3.182025256410256 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/11/08,2.77560250576923 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/10/31,7.300208333143336 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/12/10,5.670625089999996 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/12/02,20.427699999455005 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/11/24,8.047838699999994 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/01/11,4.521336216346154 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/02/04,22.25651666666668 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/04/02,10.893083333143345 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/09,19.27841459023333 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/11,12.879275000192488 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/04/25,4.311710376923072 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/31,4.857236360362496 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/26,2.6858718181449994 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/06/05,18.225575012255003 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/28,9.6231000001925 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/27,8.517675000764996 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/06/22,6.880129540264999 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/07/06,5.283881819999998 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/06/21,7.399415154273323 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/08/05,2.9552646872192287 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/07/23,4.025119167046677 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/07/22,3.6824750000950046 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/06,7.234476513550834 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/01,6.011943183070005 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/01,7.821450002822505 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/08/31,3.7998613649999937 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/08/23,3.0567730057692284 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/28,13.215803653342498 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/23,10.226583340695834 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/10/03,3.9056113999999904 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/10/02,3.530862769999993 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/25,23.416691666666683 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/11/03,6.187959858333329 +Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/11/28,3.616375000000005 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/01/05,3.5529955048076927 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2014/12/29,4.138572754807694 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/07,22.76551666666667 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/01/29,22.26459166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/06,21.750616666666684 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/07,22.76551666666667 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/01/29,22.26459166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/06,21.750616666666684 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/23,22.407050000000005 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/23,22.407050000000005 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/05,5.055623331690841 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/04/28,6.388849991835011 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/06,14.706766685066675 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/05,5.055623331690841 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/04/28,6.388849991835011 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/06,14.706766685066675 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/06,26.152812500760007 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/30,6.238337500962502 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/29,3.181863533333328 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/22,3.930004500000003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/06,26.152812500760007 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/30,6.238337500962502 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/29,3.181863533333328 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/22,3.930004500000003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/07/08,12.601087499235003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/22,5.310167309091068 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/30,6.152335716128207 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/07/08,12.601087499235003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/22,5.310167309091068 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/30,6.152335716128207 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/09,3.041424084999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/10,5.124225000989997 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/01,3.2336795000000005 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/07/25,4.869150000072488 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/09,3.041424084999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/10,5.124225000989997 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/01,3.2336795000000005 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/07/25,4.869150000072488 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/03,5.855949996607507 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/25,6.088135607029175 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/11,4.1563658750474985 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/26,4.022325000964995 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/03,5.855949996607507 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/25,6.088135607029175 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/11,4.1563658750474985 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/26,4.022325000964995 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/10/05,11.414849999999994 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/26,3.490047749999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/10/04,5.218609179999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/27,3.513541339743587 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/10/05,11.414849999999994 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/26,3.490047749999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/10/04,5.218609179999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/27,3.513541339743587 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/05,6.454700002977487 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/05,6.454700002977487 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/12/08,3.8499198919230726 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/29,4.500697840314401 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/22,7.146663635142499 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/30,4.139300135128201 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/12/08,3.8499198919230726 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/29,4.500697840314401 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/22,7.146663635142499 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/30,4.139300135128201 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/01/25,21.69634166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/01/24,21.675758333333352 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/01/25,21.69634166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/01/24,21.675758333333352 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/02/26,22.47810000000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/02/26,22.47810000000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/05,10.35835515471416 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/03/29,6.270324997760008 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/05,10.35835515471416 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/03/29,6.270324997760008 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/07,8.79912500147501 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/30,4.251157731999993 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/21,6.8015529013333245 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/29,22.56938144147416 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/07,8.79912500147501 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/30,4.251157731999993 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/21,6.8015529013333245 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/29,22.56938144147416 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/23,6.055949997990004 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/31,9.40711969796334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/23,6.055949997990004 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/31,9.40711969796334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/03,4.758323112153334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/06/24,13.309333362275831 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/11,8.46742500270748 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/06/25,3.403636989999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/03,4.758323112153334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/06/24,13.309333362275831 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/11,8.46742500270748 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/06/25,3.403636989999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/11,10.038033340280837 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/04,3.206580154666664 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/26,4.91699583504334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/03,2.700290525 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/27,7.371095249999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/11,10.038033340280837 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/04,3.206580154666664 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/26,4.91699583504334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/03,2.700290525 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/27,7.371095249999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/05,3.282943199999993 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/27,2.856711196538458 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/04,2.480831825000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/05,3.282943199999993 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/27,2.856711196538458 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/04,2.480831825000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/07,8.593190141666657 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/28,3.3832324247391625 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/21,2.7786287916666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/06,2.3562587740384604 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/29,5.26182652166666 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/07,8.593190141666657 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/28,3.3832324247391625 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/21,2.7786287916666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/06,2.3562587740384604 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/29,5.26182652166666 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/11/08,5.5639750001925 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/23,8.969938375809283 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/11/07,3.951983397435897 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/11/08,5.5639750001925 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/23,8.969938375809283 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/11/07,3.951983397435897 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/12/09,2.9072272500000014 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/12/09,2.9072272500000014 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/12/25,21.84966666666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/12/25,21.84966666666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/04,21.75304166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/04,21.75304166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/19,10.888574999785003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/03/08,12.46114242338083 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/20,14.718691666571669 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/19,10.888574999785003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/03/08,12.46114242338083 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/20,14.718691666571669 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/03/23,22.44243333333334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/04/09,16.22378125034249 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/03/23,22.44243333333334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/04/09,16.22378125034249 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/04/24,20.745441678166696 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/05/11,5.2687608386666565 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/04/24,20.745441678166696 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/05/11,5.2687608386666565 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/06/11,9.475441666521672 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/06/11,9.475441666521672 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/05,6.940391668306657 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/05,6.940391668306657 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/29,14.608937499235 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/30,4.040740024999993 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/29,14.608937499235 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/30,4.040740024999993 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/30,11.372770450072496 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/23,9.899762501425002 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/31,3.0959407700000003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/30,11.372770450072496 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/23,9.899762501425002 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/31,3.0959407700000003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/10,8.01054167946918 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/01,5.5951056207692265 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/09/24,8.044884090217504 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/02,2.3542066798076906 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/09/23,5.388525000720003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/10,8.01054167946918 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/01,5.5951056207692265 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/09/24,8.044884090217504 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/02,2.3542066798076906 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/09/23,5.388525000720003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/11,17.413575013895002 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/10,3.125900000000008 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/25,5.924721381999994 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/11,17.413575013895002 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/10,3.125900000000008 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/25,5.924721381999994 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/12/04,11.577030488671667 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/26,3.101700000000004 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/01/29,21.75304166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/05/05,10.723966731066673 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/06/07,6.138245500888336 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/05/29,6.4144145875783325 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/05/30,4.908975000217504 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/07/09,5.653600000312505 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/07/08,7.301266668579151 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/07/01,2.322925 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/06/22,2.502375830769229 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/08/10,3.383933299999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/08/09,2.8345682000000005 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/09/03,2.585402249999999 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/08/25,4.592604169099161 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/09/27,16.536399999999993 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/10/05,4.444398349666664 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/12/07,22.76205 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/12/23,10.250150000000014 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/02/09,14.174308333285827 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/02/10,9.526449999595007 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/04/23,7.950802276666661 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/05/08,6.074430693242494 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/04/22,2.0839816249999963 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/06/01,9.338725000370006 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/06/09,2.564924700000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/06/26,16.013033349528346 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/07/04,16.271650000072484 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/08/04,8.511335422989161 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/07/28,9.287787500637512 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/08/05,2.5423791750000007 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/07/27,5.309467108453336 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/09/05,4.204622719999995 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/08/29,3.807217426666661 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/09/06,5.507095464999995 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/09/21,3.709973483478332 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/10/08,5.693048810769224 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/10/23,6.593416657544172 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/12/11,2.3858159000000025 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/11/25,2.5813826682692302 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/02/21,22.451158333333343 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/02/20,10.65350833311834 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/04/01,5.289002359999997 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/05/02,8.510791673639154 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/04/25,8.252557573333334 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/05/03,4.707800019999998 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/05/27,4.591520302999991 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/06/11,8.933150000047508 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/05/26,7.758486367762507 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/07/05,8.804199995004996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/06/28,2.6651265166666662 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/07/06,2.3496655124999988 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/07/30,2.702668060000002 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/07,9.231929500000009 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/31,2.4177182000000013 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/22,9.269279600138336 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/09/08,3.318075000095005 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/30,4.749906820289995 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/23,4.707329550072496 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/10/09,5.356607627714278 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/10/10,12.007858338795836 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/11/10,11.252933982380943 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/10/25,13.596969586738314 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/12/29,21.66638333333335 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/01/29,22.47810000000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/02/06,12.108741666851667 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/01/30,21.66638333333335 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/03/02,22.47810000000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/04/03,12.227995312129163 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/03/27,9.779150000000014 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/04/04,21.97986666665417 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/05/06,6.213198483333319 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/06/06,15.074300018017508 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/06/07,3.187602250000003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/05/29,18.170141666301667 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/06/23,4.300107578846149 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/07/24,9.742008335863332 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/08/10,3.9175590901449935 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/07/25,2.501725000047497 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/08/25,4.961291667941671 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/09/11,12.161984100000002 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/08/26,16.54394791953666 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/09/26,10.829556254450008 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/06,4.349336365142497 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/09,7.607201518333325 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/05,6.032744240769224 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/10/29,2.4697883307692283 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/29,14.284533333333332 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/24,3.418494586721611 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/21,6.625925098666658 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/12/24,24.070899999999988 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/02/01,22.26459166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/01/25,22.47810000000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/04/06,11.39635208855834 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/03/30,22.26459166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/04/06,7.406258347980834 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/03/29,21.75304166666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/03/22,24.115272917104196 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/09,4.194085765333328 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/09,2.530763650000003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/08,8.261408342605824 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/01,2.843682780000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/04/30,3.794206066666663 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/04/23,5.025793189502499 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/26,8.327345841560833 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/25,6.174475002800002 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/24,5.161547732229164 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/07/04,20.269233332598343 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/06/29,4.705534079999994 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/07/03,7.462279166736677 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/06/26,23.18429394137917 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/06/25,14.54595000015499 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/10,8.35488333419834 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/08/24,8.195070831780836 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/08/29,10.98419849170332 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/08/28,3.357617154999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/09,4.801524999325003 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/30,15.079924999999983 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/29,3.291052963500832 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/22,4.706584866859158 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/21,4.100952250047502 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/31,8.31561249893251 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/26,11.650408339400842 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/11/09,3.387937686721612 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/11/08,3.6654862367216112 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/31,21.295625000352505 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/24,7.068450000579994 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/12/10,6.625840989999995 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/12/02,4.533876897883332 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/11/24,4.301711250000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/02/04,22.18061666666668 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/04/01,13.486358333238336 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/09,17.315933347133342 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/31,3.577180907999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/26,3.344076362999997 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/06/05,11.867258333380825 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/28,7.362825000142508 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/27,15.001483333453317 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/06/22,7.923418180144998 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/07/06,2.532797750000001 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/06/21,4.118633254807691 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/10,17.247816667816664 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/05,12.06146875412248 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/07/30,2.791802249999999 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/07/23,10.7071236112761 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/01,6.547762876904169 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/27,7.625412499977515 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/01,3.115718200072497 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/31,3.3108546099999963 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/24,6.29560000106 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/23,2.9765434107692283 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/28,10.427591701881658 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/23,8.815539194904169 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/10/03,6.548474999999996 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/10/02,4.757006959999995 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/25,19.10487083323834 +"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/11/03,5.326881859999994 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2014/12/29,12.38110833347083 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/01/22,23.94899999999999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/06,21.75304166666668 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/01/22,23.94899999999999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/06,21.75304166666668 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/03/11,11.921608333918332 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/23,22.351800000000008 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/22,11.596399999690007 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/03/11,11.921608333918332 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/23,22.351800000000008 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/22,11.596399999690007 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/04/03,10.314208333095849 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/04/03,10.314208333095849 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/05,24.582312500902507 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/04/28,6.041958332830834 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/06,9.68356667586666 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/05,24.582312500902507 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/04/28,6.041958332830834 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/06,9.68356667586666 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/06,4.495785178959048 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/30,9.838399987164996 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/07,13.42323750031 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/29,5.718175000072502 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/22,13.520233375883349 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/06,4.495785178959048 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/30,9.838399987164996 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/07,13.42323750031 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/29,5.718175000072502 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/22,13.520233375883349 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/07/08,15.750704165901668 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/22,7.353731664779165 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/07/08,15.750704165901668 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/22,7.353731664779165 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/09,3.9891265466666574 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/02,9.490350003397484 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/10,6.987450000360005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/07/25,11.562649999999978 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/09,3.9891265466666574 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/02,9.490350003397484 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/10,6.987450000360005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/07/25,11.562649999999978 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/03,8.647437498875014 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/25,3.434506062464161 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/11,2.320580075000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/03,8.647437498875014 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/25,3.434506062464161 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/11,2.320580075000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/26,3.427065059999994 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/10/04,4.496284099999999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/27,2.728406353434067 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/26,3.427065059999994 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/10/04,4.496284099999999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/27,2.728406353434067 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/05,2.9137750000000047 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/05,2.9137750000000047 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/29,5.237488640665007 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/22,7.620554499701902 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/30,12.60755833333332 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/29,5.237488640665007 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/22,7.620554499701902 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/30,12.60755833333332 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/01/24,21.675758333333352 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/01/24,21.675758333333352 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/02/26,11.807208333918332 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/02/26,11.807208333918332 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/05,8.619270316333324 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/03/29,10.998491666286686 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/05,8.619270316333324 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/03/29,10.998491666286686 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/07,11.00930835198584 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/30,4.186823493333325 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/21,7.778073500705834 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/29,18.12966250018999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/22,4.854400000144999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/07,11.00930835198584 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/30,4.186823493333325 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/21,7.778073500705834 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/29,18.12966250018999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/22,4.854400000144999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/23,4.42601669583 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/31,5.955939783184995 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/24,4.417135716688211 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/23,4.42601669583 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/31,5.955939783184995 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/24,4.417135716688211 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/03,5.94427500263751 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/06/24,2.8112159149999973 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/11,7.105854927147487 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/06/25,2.306333965000003 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/03,5.94427500263751 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/06/24,2.8112159149999973 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/11,7.105854927147487 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/06/25,2.306333965000003 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/11,14.79447502530001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/04,2.7799075553571417 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/26,4.536278163268574 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/03,3.5932983549999955 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/27,4.863185564999993 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/11,14.79447502530001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/04,2.7799075553571417 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/26,4.536278163268574 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/03,3.5932983549999955 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/27,4.863185564999993 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/05,3.6657886499999934 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/27,2.971082444666664 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/04,11.51022651666667 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/05,3.6657886499999934 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/27,2.971082444666664 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/04,11.51022651666667 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/07,3.502730318333329 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/28,12.631191696734168 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/21,2.742727881666665 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/06,2.515944180769228 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/29,3.563497729999995 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/07,3.502730318333329 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/28,12.631191696734168 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/21,2.742727881666665 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/06,2.515944180769228 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/29,3.563497729999995 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/11/08,5.594857634380944 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/23,7.203684735714282 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/11/07,2.8297849182692283 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/11/08,5.594857634380944 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/23,7.203684735714282 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/11/07,2.8297849182692283 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/10,6.921295829790852 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/09,2.9860000000000064 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/10,6.921295829790852 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/09,2.9860000000000064 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/01/02,22.34590833333334 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/25,13.032908333238336 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/01/02,22.34590833333334 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/25,13.032908333238336 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/04,11.011849999785005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/04,11.011849999785005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/03/08,15.164218750752507 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/27,13.158183333518329 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/20,15.013224999905008 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/03/08,15.164218750752507 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/27,13.158183333518329 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/20,15.013224999905008 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/03/23,22.30574166666668 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/03/23,22.30574166666668 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/04/24,7.454593943333331 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/05/11,2.2751316250000007 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/04/24,7.454593943333331 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/05/11,2.2751316250000007 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/06/11,4.6348617847598765 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/06/11,4.6348617847598765 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/05,2.8907409500000005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/05,2.8907409500000005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/29,14.485508344905824 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/30,3.1906915025 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/29,14.485508344905824 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/30,3.1906915025 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/08/30,3.711325763840829 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/08/23,2.90394848900083 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/08/30,3.711325763840829 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/08/23,2.90394848900083 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/10,2.8993885013333305 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/01,3.9450879666666583 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/09/24,8.82606514673917 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/02,2.557729311538461 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/09/23,4.703575000047502 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/10,2.8993885013333305 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/01,3.9450879666666583 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/09/24,8.82606514673917 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/02,2.557729311538461 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/09/23,4.703575000047502 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/11,13.579125701534442 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/10,12.56988333353332 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/25,11.75657500062499 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/11,13.579125701534442 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/10,12.56988333353332 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/25,11.75657500062499 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/12/04,3.5232479169616737 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/27,6.47189999605501 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/26,2.3429750000000014 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/05/05,4.957624999999996 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/05/29,7.289170828865831 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/05/30,2.8212901500000003 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/07/09,5.013121400072484 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/07/08,20.612241666666662 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/07/01,6.860675000790001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/06/22,2.852677999999999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/08/10,3.361686652435894 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/08/09,5.447700000072508 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/08/02,6.913225000072498 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/09/03,2.890925000000004 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/08/25,14.172999999354982 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/10/05,2.212665749999997 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/12/07,22.76205 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/12/08,21.791766666666685 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/11/22,2.646225000000004 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/02/01,21.919450000000012 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/01/25,10.97447499926001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/03/06,22.407050000000005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/02/26,21.794191666666684 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/04/23,4.4722803183333255 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/05/08,10.248308358633324 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/04/22,15.523548530366686 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/06/10,9.25617082901333 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/06/01,12.082274999324996 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/06/09,2.870702140000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/07/03,3.5939212249999968 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/07/04,14.45057500007248 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/08/04,7.53736666827167 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/07/28,8.510091859893324 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/08/05,3.583100000000008 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/07/27,3.5428962134058266 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/09/05,4.225165206666656 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/08/29,9.500841668614171 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/09/06,3.931754604999996 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/09/21,6.799525753333331 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/10/08,6.322887460769227 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/09/29,16.231391667466653 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/11/01,7.056070019005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/12/10,6.977724997747514 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/12/11,13.983250001470028 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/11/25,4.033919884615385 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/02/05,22.47810000000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/03/07,21.66638333333335 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/02/20,12.958024999737502 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/03/31,8.287804167424182 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/04/01,10.786731259077508 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/05/02,13.55175836783334 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/04/25,6.471734099999995 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/05/03,3.7187810616666663 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/05/27,2.93114850847833 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/06/04,6.517879173186666 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/05/26,3.005188600000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/06/28,4.2966125049300015 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/07/06,2.6545394490384604 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/06,7.612325001822499 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/07,5.592570454999995 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/22,5.382724251555829 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/09/08,2.775675000000005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/30,2.975377250000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/23,4.222504549999993 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/10/09,5.112884159999988 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/10/10,13.867183336983338 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/11/10,9.828253682380945 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/10/25,13.880110423709151 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/12/29,12.534783333470832 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/03/11,24.44116666666665 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/03/02,22.539900000000006 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/04/03,11.993329167576656 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/05/06,3.90519091 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/04/27,16.994258333503314 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/06/06,11.34746250024 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/06/07,2.754952250000004 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/07/09,13.065250000557496 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/06/23,3.856829591153842 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/08/02,7.854641660931674 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/08/10,7.663511360072498 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/09/10,6.831699992462509 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/08/25,4.620883334800838 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/09/11,2.7518272500000034 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/08/26,3.391277250000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/09/26,11.069783333333325 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/06,11.724441696786672 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/05,4.678221192307692 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/10/29,2.326449436126372 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/29,6.575774996900012 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/12/07,13.433624999784982 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/24,3.566154630769232 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/21,4.428997529999997 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/12/24,12.844333333333337 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/01/25,21.69402500000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/02/02,21.675758333333352 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/01/24,21.75304166666668 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/02/26,23.439241666666657 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/04/06,8.536808332953347 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/04/06,11.55854167196168 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/03/29,21.791766666666685 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/09,2.443945300000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/08,7.48044167816666 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/01,4.910146233333327 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/04/30,8.906833343683328 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/04/22,4.658131000072498 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/31,21.216616666761684 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/26,6.643409093990009 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/25,4.051002299999992 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/04,3.254697729999996 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/06/29,4.5605819000724885 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/11,14.978025000144976 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/03,8.490341678724151 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/08/05,2.806325000000004 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/28,7.46628400000001 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/27,4.282225000362495 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/09/10,8.168262876951673 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/08/24,3.7358795533775 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/08/29,13.295400000499995 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/08/28,2.5710977 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/09/30,9.595275000192482 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/09/29,3.089025000000005 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/10/31,9.434675002640004 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/10/26,15.619750000555 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/11/09,2.597719080769229 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/11/08,2.3463112000000006 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/12/10,4.044761089999998 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/12/02,15.784908333733329 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/11/24,3.982856819999999 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/04/10,12.30624999990499 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/04/09,12.872599999952495 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/04/02,11.492791666476672 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/09,15.039211668249154 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/11,4.909943184999996 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/04/25,3.396925000000006 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/31,2.8775324347391678 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/26,3.2022846949566657 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/06/05,12.784958333380825 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/28,5.217850000550004 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/27,22.28133333342836 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/06/22,2.873527889739167 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/07/06,4.431649999999992 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/06/21,3.1469148249999987 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/08/05,3.951138278823274 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/07/31,7.115450000434997 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/07/23,4.177721213333325 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/07/22,9.932800000214993 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/06,6.555164289047609 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/01,7.453836361012503 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/09,2.888625000000004 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/01,3.775975000144994 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/08/31,4.522197729999991 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/08/23,3.0550386499999966 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/10/03,16.975225009200003 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/28,12.595261805337133 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/23,3.6691128868116607 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/10/03,3.574986349999997 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/10/02,2.9869852999999997 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/25,17.370325000072484 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/11/03,9.729041671266662 +Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/11/28,21.724299999375017 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/01/05,4.19891154679256 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2014/12/29,2.5551374999999994 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/02/07,22.663366666666672 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/02/07,22.663366666666672 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/03/11,11.177549999785006 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/02/23,22.47810000000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/03/11,11.177549999785006 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/02/23,22.47810000000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/04/03,12.225437507257489 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/04/03,12.225437507257489 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/05,9.146891673519177 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/06,6.412575000332489 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/05,9.146891673519177 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/06,6.412575000332489 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/06,4.6154076141518985 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/30,8.914416671314166 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/07,12.746649999784983 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/29,2.584706650000004 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/22,3.157554500000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/06,4.6154076141518985 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/30,8.914416671314166 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/07,12.746649999784983 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/29,2.584706650000004 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/22,3.157554500000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/07/08,19.990083333070825 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/30,4.125683456615713 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/07/08,19.990083333070825 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/30,4.125683456615713 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/09,3.6605605049999927 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/02,21.24009166694916 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/10,3.960768624999994 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/07/25,10.10475000023749 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/09,3.6605605049999927 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/02,21.24009166694916 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/10,3.960768624999994 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/07/25,10.10475000023749 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/25,3.280855154739163 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/11,2.647325000000005 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/02,14.93850000016751 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/26,5.933096213718329 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/25,3.280855154739163 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/11,2.647325000000005 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/02,14.93850000016751 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/26,5.933096213718329 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/05,9.167024993000007 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/26,5.143337869688639 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/04,2.30562354230769 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/27,2.5962105807692293 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/05,9.167024993000007 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/26,5.143337869688639 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/04,2.30562354230769 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/27,2.5962105807692293 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/29,3.003225249999998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/29,3.003225249999998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/12/08,3.228061216974359 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/29,15.81047510120003 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/22,2.9457462533333345 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/12/07,2.7858500000000053 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/30,2.7620612307692314 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/12/08,3.228061216974359 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/29,15.81047510120003 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/22,2.9457462533333345 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/12/07,2.7858500000000053 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/30,2.7620612307692314 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/01/25,11.764849999809998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/01/25,11.764849999809998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/02/26,11.592208332903336 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/03/05,9.278824999212508 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/02/26,11.592208332903336 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/03/05,9.278824999212508 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/05,6.486333338333331 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/03/29,5.628024996345013 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/05,6.486333338333331 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/03/29,5.628024996345013 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/30,3.7211327219999952 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/21,8.0738068246725 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/30,3.7211327219999952 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/21,8.0738068246725 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/05/23,14.028308344308336 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/05/31,6.573660420584405 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/05/23,14.028308344308336 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/05/31,6.573660420584405 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/03,8.873658347468325 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/06/24,4.442029530217495 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/11,3.578871854999991 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/06/25,2.835172389102562 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/03,8.873658347468325 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/06/24,4.442029530217495 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/11,3.578871854999991 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/06/25,2.835172389102562 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/11,9.05265000934499 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/04,4.04660818299999 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/26,4.021648495276668 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/03,2.9792756750000007 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/27,3.8479424466666607 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/11,9.05265000934499 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/04,4.04660818299999 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/26,4.021648495276668 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/03,2.9792756750000007 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/27,3.8479424466666607 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/05,3.3968499999999926 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/27,2.661475758333332 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/04,10.810118180095012 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/28,5.247281824934166 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/05,3.3968499999999926 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/27,2.661475758333332 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/04,10.810118180095012 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/28,5.247281824934166 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/07,4.333559745714277 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/28,2.867874841333331 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/21,2.880067421666664 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/06,2.147713549999997 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/29,4.632510539999991 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/07,4.333559745714277 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/28,2.867874841333331 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/21,2.880067421666664 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/06,2.147713549999997 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/29,4.632510539999991 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/08,3.094309109999999 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/23,3.6805235092316697 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/07,2.5215840182692286 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/08,3.094309109999999 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/23,3.6805235092316697 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/07,2.5215840182692286 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/12/09,16.653594711558327 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/23,6.782610156730758 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/12/09,16.653594711558327 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/23,6.782610156730758 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/01/11,11.189828344590824 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/01/02,9.9973499998675 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/12/25,4.353558777884613 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/01/11,11.189828344590824 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/01/02,9.9973499998675 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/12/25,4.353558777884613 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/04,21.75304166666668 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/04,21.75304166666668 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/19,8.701983332858347 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/03/08,17.841500005074998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/27,11.639408333718327 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/20,14.816216666571677 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/19,8.701983332858347 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/03/08,17.841500005074998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/27,11.639408333718327 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/20,14.816216666571677 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/03/23,22.304499999355013 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/03/23,22.304499999355013 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/04/24,8.191383336714168 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/04/24,8.191383336714168 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/06/11,7.538004160744167 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/05/27,3.79104917884615 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/06/11,7.538004160744167 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/05/27,3.79104917884615 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/05,2.464358975000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/06/28,6.64146923076923 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/05,2.464358975000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/06/28,6.64146923076923 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/29,17.499345832903323 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/22,7.919356664551682 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/30,3.384250356410254 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/29,17.499345832903323 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/22,7.919356664551682 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/30,3.384250356410254 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/08/30,4.010590910217495 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/08/23,10.404083344928338 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/07,20.44492499956998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/08/30,4.010590910217495 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/08/23,10.404083344928338 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/07,20.44492499956998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/10,11.721570833268345 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/01,3.2197892499999954 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/24,4.250123106666669 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/02,2.852022916895604 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/23,4.096279170219164 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/10,11.721570833268345 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/01,3.2197892499999954 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/24,4.250123106666669 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/02,2.852022916895604 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/23,4.096279170219164 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/11,4.804557450714279 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/10,3.1717500000475 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/25,2.7781772500000024 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/11,4.804557450714279 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/10,3.1717500000475 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/25,2.7781772500000024 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/27,9.75147500230001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/05/05,4.764919328422497 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/05/29,4.599025000385 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/05/30,3.976648830769221 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/07/09,4.292950002972503 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/07/08,13.079116665304172 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/06/22,7.739691683621654 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/08/10,3.092559209999997 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/08/09,3.049675000000005 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/09/03,2.9230317500000047 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/08/25,2.903927250000004 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/09/27,3.979320499999994 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/10/05,3.751721213333324 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/12/07,8.037072494362494 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/11/22,3.347175000095005 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/01/01,24.44116666666665 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/12/23,10.315350005967504 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/02/09,15.782599999999988 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/02/10,12.974258333238335 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/01/25,21.750616666666684 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/03/06,9.72751666666668 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/02/26,21.675758333333352 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/04/23,10.476272019798328 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/05/08,5.550009102300002 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/04/22,2.604831749999997 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/06/09,7.1154666737116505 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/06/26,14.610500016172503 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/07/28,7.959102285537499 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/08/05,3.2000023549999974 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/07/27,4.0072795000724994 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/08/29,3.4979431703624964 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/09/06,3.374591230769225 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/10/08,2.5442573365384638 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/09/29,4.473500000072502 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/10/24,3.2879399999999976 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/12/03,9.66349063332812 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/12/11,2.6135059557692286 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/11/25,3.241568653846156 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/02/29,21.75304166666668 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/04/01,10.352216669224171 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/04/25,3.0822916733333288 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/05/03,3.906496233333328 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/06/11,3.542850000000008 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/06/04,6.069833340258324 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/05/26,5.333821213405834 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/06/28,7.140775421051664 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/07/06,2.777184094999998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/07/30,3.317891191895605 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/08/07,3.931069149102561 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/08/31,2.9644435996794885 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/08/30,3.294404500119998 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/08/23,5.040800000217498 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/10/10,13.36300416666666 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/09/24,4.800950000985001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/11/03,6.663049998160008 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/12/29,2.94773052403846 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/02/06,13.556358333285834 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/01/30,21.867666666666683 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/03/27,6.217924995655014 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/03/26,3.827700000000005 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/05/06,2.625973125000004 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/06/07,5.472950000217498 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/05/29,13.057633333533316 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/06/23,3.5517185930769184 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/08/02,3.88825228012 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/07/25,7.868025000217496 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/09/11,4.298699999999991 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/08/26,3.5288841000724926 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/06,3.86964940033333 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/09,3.286437720769227 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/05,2.5812045000000023 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/10/29,2.779524448626372 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/24,2.412564555769228 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/21,2.5060208500000014 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/12/24,12.351041666666664 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/12/23,3.1877420240384606 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/01/25,22.663366666666672 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/02/02,21.83503333333335 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/02/26,23.439241666666657 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/02/26,22.23312500000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/04/06,9.16787210021833 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/03/29,21.88613333333335 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/03/22,16.70456742596585 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/05/09,3.3013925903333297 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/05/09,2.575232225000004 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/05/01,2.667336840000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/04/30,4.452300000000003 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/05/25,3.685847799999993 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/07/04,3.672739393405828 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/06/29,13.730583355880832 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/06/26,2.7923954250000027 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/06/25,5.691198225015707 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/07/28,3.225727250000006 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/07/27,4.126624999999994 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/08/29,6.240902270072497 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/08/28,2.4658703499999994 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/09,7.117749993875006 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/22,6.769464996367508 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/08,2.734352870000001 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/30,2.5965628932692306 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/29,3.2279067500725 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/22,7.090354500047498 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/21,2.876561000000002 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/31,3.6537506547391625 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/26,16.96032500075499 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/11/09,2.9355229486263723 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/11/08,2.417344080769229 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/11/01,22.15308333328585 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/31,4.367714778504997 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/12/10,2.828632250000002 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/12/02,3.951752963380836 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/11/24,2.3505729750000044 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/10,13.274883333333348 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/09,19.38867083549584 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/02,13.03784166657166 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/01,12.076900000142505 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/09,14.13881666666668 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/11,4.301648214515712 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/26,12.652175000145007 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/31,4.277203638289993 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/26,2.6143301447391667 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/06/05,12.88354166695166 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/28,5.729275000192497 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/06/22,8.3777613601925 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/07/07,10.361287500237491 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/07/06,4.861950000672495 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/06/21,3.147629500000002 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/10,16.141679166571656 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/05,2.4856234900733325 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/07/30,4.820131820192494 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/07/23,3.6329250000000046 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/01,6.981013630192499 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/09,3.2521954599999963 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/01,7.328684090842506 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/31,4.820284109999988 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/24,2.9203818499999983 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/23,2.43104535 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/28,9.201395834885838 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/23,5.609454167004169 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/10/02,3.6910712183333287 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/25,12.396933333380815 +Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/11/03,2.794664787499999 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2014/12/29,8.73158473454897 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/06,4.726998869744163 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/06,4.726998869744163 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/30,6.0449968250050015 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/22,4.659329171299167 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/30,6.0449968250050015 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/22,4.659329171299167 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/08/02,17.33874999999999 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/08/02,17.33874999999999 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/03,6.721295817963339 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/11,3.3683725999999985 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/08/26,5.5253522500000045 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/03,6.721295817963339 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/11,3.3683725999999985 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/08/26,5.5253522500000045 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/10/05,4.319625009999992 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/27,3.066248261538458 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/10/05,4.319625009999992 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/27,3.066248261538458 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/11/22,4.964785229816849 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/11/30,4.644175000407498 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/11/22,4.964785229816849 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/11/30,4.644175000407498 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/03/29,9.603366696566688 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/03/29,9.603366696566688 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/04/30,8.368266670861672 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/04/30,8.368266670861672 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/05/24,18.369825001197523 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/05/24,18.369825001197523 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/03,6.110750003020006 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/11,4.259018179999995 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/06/25,5.284609089999998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/03,6.110750003020006 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/11,4.259018179999995 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/06/25,5.284609089999998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/08/04,12.85232500927251 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/27,5.320234092372504 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/08/04,12.85232500927251 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/27,5.320234092372504 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/05,3.146386359999998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/08/28,15.354000000309991 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/05,3.146386359999998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/08/28,15.354000000309991 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/10/07,3.192103806666664 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/21,3.2599553033333284 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/29,3.4473548107692262 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/10/07,3.192103806666664 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/21,3.2599553033333284 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/29,3.4473548107692262 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/11/08,5.004558363333327 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/10/23,3.330777259999997 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/11/08,5.004558363333327 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/10/23,3.330777259999997 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/03/08,2.9888272500000026 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/03/08,2.9888272500000026 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/04/09,15.061758349393337 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/04/09,15.061758349393337 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/06/04,14.219170833855838 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/05/27,4.550350230769222 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/06/04,14.219170833855838 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/05/27,4.550350230769222 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/06,17.90687916671417 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/06,17.90687916671417 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/07,10.911050004814983 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/22,22.717966666809165 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/30,2.419213550000001 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/07,10.911050004814983 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/22,22.717966666809165 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/30,2.419213550000001 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/23,6.4534500002399975 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/31,3.329375000000007 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/23,6.4534500002399975 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/31,3.329375000000007 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/10/10,5.717790831060836 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/09/24,5.334446972099169 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/10/02,3.0435946923076886 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/10/10,5.717790831060836 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/09/24,5.334446972099169 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/10/02,3.0435946923076886 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/11/11,3.982428058333328 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/11/11,3.982428058333328 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/05/30,7.214623507214167 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/07/09,4.56713563324917 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/07/01,13.681133333405828 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/08/10,6.783325000700001 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/09/03,5.817333715300825 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/10/05,2.4633589 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/02/10,10.991791666524175 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/03/06,22.447608333333346 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/02/26,13.572316666571666 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/05/09,6.880364995032501 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/04/23,10.842508337980826 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/06/26,6.759404766274998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/07/28,6.9911000120275055 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/08/05,4.66631212333333 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/09/06,4.441868179999995 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/10/08,4.605767349999994 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/11/01,3.5002417042452345 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/10/24,3.808471541666661 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/12/11,11.847485066015002 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/11/25,3.4295000000000027 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/02/05,23.720699999999987 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/04/01,5.187969269999996 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/04/25,6.841087128478332 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/05/03,5.292925999999994 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/05/27,6.059401513743335 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/06/04,7.728450000144999 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/07/06,2.8283001807692294 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/08/07,2.681985486538461 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/08/31,3.8124621233333262 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/10/10,13.549200001250007 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/09/24,5.282850000792508 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/11/03,6.071645824795848 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/01/06,10.120108333333354 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/12/29,11.65957086795333 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/03/11,10.55460833311834 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/05/06,4.937174999999994 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/06/07,6.441087502059991 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/05/22,11.49220000023749 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/06/23,4.504456819999993 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/08/02,6.981437498410008 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/08/10,16.658833347133342 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/07/25,7.574875000144996 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/09/11,15.11971666665166 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/08/26,8.940400000522502 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/11/06,6.247902281739165 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/11/09,4.077421972149165 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/10/29,2.350137030357141 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/12/24,12.02668333333333 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/01/25,24.072216666666648 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/02/02,21.88613333333335 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/01/25,22.23439166666668 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/03/30,9.578849998830025 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/03/23,6.015474995837515 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/03/22,8.170918754897498 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/05/09,8.406587876666666 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/05/09,4.893613639999993 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/05/01,3.349366834999999 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/04/23,4.55995417045416 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/06/10,2.676506749999998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/05/25,8.233966667984143 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/06/29,10.81972500529998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/07/04,2.8098022500475004 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/06/26,9.635182589717486 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/07/28,3.595753033478326 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/07/28,6.2833000000725 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/08/31,2.9262083116666635 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/08/29,8.198325001532483 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/10/09,6.38617499840501 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/10/04,18.26326666665165 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/10/08,2.842758249999997 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/09/30,5.909500000647503 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/09/22,2.6192817500000016 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/11/09,2.767524249999998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/02/27,22.507050000000007 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/04/10,11.802029174011665 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/04/26,10.672833337558329 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/05/26,7.917302270964998 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/06/05,18.91272499989248 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/05/28,3.754200000409994 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/07/04,3.874428200797493 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/06/21,5.177816669299167 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/08/05,7.060299986395003 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/07/23,14.596416671576684 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/09/01,8.517258333888343 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/08/22,2.7943809080724997 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/09/01,4.152961364999993 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/08/24,5.719700000072505 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/09/23,10.970379168729169 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/10/03,3.402343943333331 +Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/11/28,7.540954500000005 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2014/12/29,11.646349999985 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/02/07,22.674233333333337 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/02/07,22.674233333333337 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/06,13.065075011499998 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/06,13.065075011499998 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/30,9.604854169349158 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/22,7.313434000000005 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/30,9.604854169349158 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/22,7.313434000000005 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/08/02,9.804225005612482 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/08/02,9.804225005612482 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/03,11.074868334568343 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/11,3.265725000000008 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/03,11.074868334568343 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/11,3.265725000000008 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/10/05,12.608850000145004 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/27,3.064226236538461 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/10/05,12.608850000145004 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/27,3.064226236538461 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/11/30,2.9013750000000056 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/11/30,2.9013750000000056 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/02/02,2.7883750000000047 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/02/02,2.7883750000000047 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/02/26,13.15727499932499 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/02/26,13.15727499932499 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/03/29,10.311691675914153 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/03/29,10.311691675914153 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/04/30,5.464421979039165 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/04/30,5.464421979039165 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/05/24,18.05396667126668 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/05/24,18.05396667126668 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/03,4.968592103842735 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/11,8.498920837310825 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/06/25,5.1397462135008345 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/03,4.968592103842735 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/11,8.498920837310825 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/06/25,5.1397462135008345 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/08/04,3.736761360434992 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/27,2.536599380000002 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/08/04,3.736761360434992 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/27,2.536599380000002 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/05,3.788190146884161 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/08/28,12.141387500237498 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/05,3.788190146884161 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/08/28,12.141387500237498 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/10/07,3.575496213333328 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/21,3.483499241666661 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/29,12.6703500008125 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/10/07,3.575496213333328 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/21,3.483499241666661 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/29,12.6703500008125 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/11/08,4.0839016603333285 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/10/23,6.580724996485008 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/11/08,4.0839016603333285 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/10/23,6.580724996485008 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/03/08,19.95060625020001 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/03/08,19.95060625020001 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/04/09,3.952181722499997 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/04/09,3.952181722499997 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/05/03,6.554745462609998 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/05/11,2.560302250000007 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/05/03,6.554745462609998 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/05/11,2.560302250000007 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/08/07,8.315769166384184 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/07/30,4.542733289999994 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/08/07,8.315769166384184 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/07/30,4.542733289999994 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/08/23,8.269347726884167 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/08/23,8.269347726884167 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/09/24,5.531534090047505 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/10/02,3.234875267490843 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/09/24,5.531534090047505 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/10/02,3.234875267490843 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/11/11,9.78208258830915 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/11/11,9.78208258830915 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/04/28,2.751425000000001 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/05/30,9.365266670201647 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/07/09,3.2989856137683296 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/07/01,9.63446666681166 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/08/10,6.315432578478334 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/09/03,5.62314583816999 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/10/05,2.504440825 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/11/22,13.828008333838351 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/02/10,11.263166666571676 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/03/06,22.47810000000001 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/02/26,20.867908333285857 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/04/23,4.714983335848332 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/08/05,3.761381819999995 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/08/29,6.54321895393918 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/09/06,12.926008333318316 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/10/08,3.5729615307692253 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/10/24,5.736238639999999 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/12/11,5.0117795 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/11/25,15.070241670116678 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/02/05,22.50608333333334 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/03/08,22.30029999935501 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/04/01,10.126006271797497 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/04/25,7.234231825072496 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/05/03,3.418400000000001 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/05/27,3.681853030652495 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/07/06,3.6837286999999934 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/08/07,14.992474999769982 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/09/08,4.863705304028333 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/08/23,4.226211360072495 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/10/10,14.92342500345 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/09/24,7.263739776907499 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/05/06,5.094699999999994 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/06/07,7.0736750002175 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/06/23,5.126775000192492 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/08/10,4.800825000502509 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/07/25,2.7578750000000047 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/09/11,3.2183918719999958 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/08/26,6.111675000310002 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/11/06,4.3338636473475 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/11/09,4.779923498333325 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/11/04,4.1558250001675 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/11/04,14.045250000144984 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/10/29,2.51660438076923 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/12/24,12.02668333333333 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/12/24,10.633891666666685 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/02/02,21.67155833333335 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/03/30,27.2744999999525 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/03/22,24.28491668046668 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/05/09,3.568165751405831 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/05/09,5.499063679999993 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/05/01,5.2802077799999925 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/06/10,3.1890750000000048 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/05/25,9.768741667936649 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/06/29,3.5892954499999963 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/07/04,5.864900000362496 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/06/26,4.855335729518211 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/07/28,4.173186399999991 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/07/28,3.7947840999999936 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/08/31,3.031647749999996 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/08/31,3.479685444871791 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/08/29,5.262175000312505 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/09,10.045434167431669 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/04,2.943924781538461 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/04,3.2856416739743577 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/08,2.5353023900000013 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/09/30,13.828841666666651 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/09/22,2.737002250000006 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/26,8.006777499464995 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/11/09,2.8627707057692287 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/02/21,10.65365833311834 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/04/10,12.232416666571655 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/04/26,5.402034474323332 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/05/26,6.456611360407501 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/05/28,15.11436666681167 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/07/04,3.64406061210166 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/07/04,3.9587000102899914 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/05,7.886033529722499 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/07/31,5.278875000185003 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/07/23,3.3328234633333333 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/01,10.405681709047622 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/27,6.63104999172501 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/22,9.459429177141663 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/22,8.808766670574164 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/09,4.095834099999997 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/01,3.844520449999997 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/24,5.406568200072496 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/28,11.2326500001625 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/23,3.7547908750724974 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/10/03,3.5134916733333266 +Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/11/28,3.1768250000000022 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2014/12/29,3.921702250000005 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/02/23,22.47810000000001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/02/23,22.47810000000001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/04/28,8.929083332130842 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/05/06,4.890774999999999 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/04/28,8.929083332130842 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/05/06,4.890774999999999 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/06/23,3.533900000119992 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/06/23,3.533900000119992 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/02,6.386825003265005 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/10,12.6109250002375 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/02,6.386825003265005 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/10,12.6109250002375 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/03,16.116912500745 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/11,2.64704504 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/26,4.466658401602558 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/03,16.116912500745 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/11,2.64704504 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/26,4.466658401602558 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/10/05,3.0890272699999963 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/27,3.172218972115383 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/10/05,3.0890272699999963 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/27,3.172218972115383 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/06,5.718099999210011 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/06,5.718099999210011 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/22,8.884570832673333 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/30,6.81587466153845 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/22,8.884570832673333 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/30,6.81587466153845 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/10,22.337341666666678 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/02,2.6597795199999994 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/10,22.337341666666678 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/02,2.6597795199999994 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/26,11.38622291732419 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/26,11.38622291732419 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/03/29,7.44453334622584 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/03/29,7.44453334622584 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/04/30,5.132426518668333 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/05/08,5.526102270747498 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/04/30,5.132426518668333 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/05/08,5.526102270747498 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/03,12.94536250690001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/11,4.181100000072495 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/06/25,4.016950044999996 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/03,12.94536250690001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/11,4.181100000072495 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/06/25,4.016950044999996 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/08/04,3.4156401740583293 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/27,3.736475571153848 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/08/04,3.4156401740583293 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/27,3.736475571153848 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/05,4.249207563333327 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/08/28,4.271700000797497 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/05,4.249207563333327 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/08/28,4.271700000797497 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/10/07,5.102493072380945 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/21,3.185629403333332 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/29,3.420134260769225 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/10/07,5.102493072380945 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/21,3.185629403333332 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/29,3.420134260769225 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/11/08,4.069668328666664 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/10/23,3.229423488695829 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/11/08,4.069668328666664 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/10/23,3.229423488695829 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/12/10,9.109504167926666 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/12/10,9.109504167926666 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/12/26,23.10539166666666 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/12/26,23.10539166666666 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/02/28,6.476999996240011 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/03/08,2.7584522500000066 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/02/28,6.476999996240011 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/03/08,2.7584522500000066 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/04/09,2.627274125000001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/04/09,2.627274125000001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/05/03,8.91911667236667 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/05/03,8.91911667236667 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/07,5.428911360965002 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/07/30,2.9206623798076925 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/07,5.428911360965002 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/07/30,2.9206623798076925 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/09/08,4.184623222226903 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/23,5.208024996187505 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/31,6.247000001160003 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/09/08,4.184623222226903 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/23,5.208024996187505 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/31,6.247000001160003 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/10/10,4.4510500133050055 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/09/24,4.087539393550829 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/10/02,2.957065235576921 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/10/10,4.4510500133050055 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/09/24,4.087539393550829 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/10/02,2.957065235576921 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/11/11,4.353155334999993 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/11/11,4.353155334999993 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/04/28,2.5906750000000005 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/05/30,9.51420492579249 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/07/09,4.817825000407499 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/07/01,6.910900759028327 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/08/10,3.312374999999994 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/08/26,7.299474988035004 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/09/03,4.79747502499999 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/09/27,3.4222772901449985 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/10/05,2.8566426851648345 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/12/08,3.612778230769231 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/11/22,4.1070179999999965 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/04/23,14.476441694266668 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/06/10,19.712362499617477 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/06/26,4.341509860072492 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/07/28,6.163750001297501 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/08/05,3.357493955769228 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/08/29,7.060715833093329 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/09/06,3.8942442307692233 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/09/30,3.3638431799999955 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/11/09,4.574916674834168 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/10/24,3.030890940000001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/12/03,9.864745847900824 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/12/11,3.5209400961538484 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/11/25,3.494306750072499 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/02/05,6.396699996885012 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/02/29,6.875024999785001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/04/01,3.5341366307692272 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/04/25,5.472565915072497 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/05/03,4.2080795 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/05/27,14.41580833352334 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/06/04,11.03395835226666 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/07/06,4.885681109615383 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/08/08,2.9713992466666665 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/07/30,8.260055497940822 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/08/07,2.838279350000002 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/08/31,2.4232613699999974 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/09/08,10.306400000237494 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/08/23,4.510159099999992 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/10/11,2.3500666634058334 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/10/10,5.800175000405004 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/09/24,12.504270833595836 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/10/27,9.875275000000014 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/12/29,18.53020833247335 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/01/22,11.434191665791666 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/03/04,9.012333333190824 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/04/05,9.590836369699993 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/05/07,9.53522337571428 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/05/06,5.0032000024899945 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/06/07,15.908079939027514 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/07/10,3.116599999999997 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/06/24,3.4464058948717917 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/06/23,5.637824742307687 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/08/11,7.402717273854986 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/08/02,4.841876515870834 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/07/26,5.050884101522495 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/09/03,3.189051992536629 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/09/11,3.389425000000008 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/08/26,4.407518200072492 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/11/06,18.157925016385025 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/11/09,5.153358341739159 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/10/29,3.141617754807692 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/01/25,11.518008333190842 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/03/23,6.411174994245013 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/03/22,14.690358342723366 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/09,6.871571966666665 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/09,3.197184189999997 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/01,2.7499201400000004 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/26,6.872752660433333 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/06/10,7.317575000434994 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/06/02,3.369404913333326 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/25,5.623521215013327 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/07/11,3.6396431799999966 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/06/29,3.549053786811664 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/06/26,5.789275000284991 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/08/02,6.549658321908343 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/07/28,3.2688127279999977 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/07/28,8.19159756180345 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/08/31,6.344171981782494 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/08/29,4.176724999999996 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/10/09,3.079736350000001 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/10/04,7.514941657901672 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/10/08,9.350225001007493 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/11/09,2.7281833999999985 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/12/27,6.748851278846139 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/02/27,10.305458333333352 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/04/07,3.634762143405829 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/04/10,3.351121458205126 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/04/02,2.3787081025000005 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/04/26,3.439074246739163 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/05/26,8.165186360240002 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/06/05,5.856025000214994 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/05/28,7.511659090572507 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/06/21,4.159799999999997 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/08/05,6.876379166976675 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/07/31,18.1779250597138 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/07/23,6.468425000240006 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/09/01,8.3702272700475 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/08/22,4.371773495217493 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/09/01,2.11294788576923 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/10/03,3.489420464999992 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/09/25,11.355174999999976 +Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/11/28,3.094322625 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2014/12/26,11.286546528015265 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/02/27,21.919450000000012 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/02/27,21.919450000000012 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/10,10.000790060970004 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/04/24,9.278700003215 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/02,4.986988278897498 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/02,4.776234420894993 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/04/25,12.473608370133343 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/10,10.000790060970004 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/04/24,9.278700003215 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/02,4.986988278897498 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/02,4.776234420894993 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/04/25,12.473608370133343 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/11,8.653337499262513 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/03,11.603650007640011 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/03,13.551400011772522 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/11,8.653337499262513 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/03,11.603650007640011 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/03,13.551400011772522 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/05,16.9720874992875 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/05,17.06460416595417 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/05,16.9720874992875 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/05,17.06460416595417 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/07,9.327174999682512 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/29,22.62150833357084 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/22,8.80960398738417 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/06,12.25019999999999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/06,12.591058333333324 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/30,9.110108351780823 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/07,9.327174999682512 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/29,22.62150833357084 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/22,8.80960398738417 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/06,12.25019999999999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/06,12.591058333333324 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/30,9.110108351780823 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/08,12.872047361111097 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/30,13.741506530125273 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/23,8.789400000300006 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/07,3.5084000000000053 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/07,3.037599999999998 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/31,10.29350753 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/22,25.08106667126667 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/22,26.119350004600005 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/08,12.872047361111097 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/30,13.741506530125273 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/23,8.789400000300006 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/07,3.5084000000000053 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/07,3.037599999999998 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/31,10.29350753 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/22,25.08106667126667 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/22,26.119350004600005 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/10/10,13.240339861158605 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/24,13.001958348688335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/23,15.285434089999978 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/23,14.510184090047485 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/10/10,13.240339861158605 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/24,13.001958348688335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/23,15.285434089999978 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/23,14.510184090047485 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/11/02,6.270042799054165 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/10/26,11.37108522064896 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/11/03,4.171003184615383 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/11/02,6.270042799054165 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/10/26,11.37108522064896 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/11/03,4.171003184615383 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/01/06,9.0208000004075 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/01/06,9.0208000004075 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/03/26,5.78434129927833 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/03/26,5.78434129927833 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/04/27,3.799827450769228 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/04/27,3.799827450769228 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/05/28,9.84467406221166 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/05/28,9.84467406221166 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/08,6.303799992555011 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/29,8.701983332678344 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/22,7.422450002085001 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/07,2.795502250000006 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/07,2.698075000000004 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/30,3.739584109999996 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/21,6.627708342580829 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/21,6.835541680466661 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/08,6.303799992555011 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/29,8.701983332678344 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/22,7.422450002085001 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/07,2.795502250000006 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/07,2.698075000000004 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/30,3.739584109999996 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/21,6.627708342580829 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/21,6.835541680466661 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/09,12.985410428369171 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/08,5.86962499999999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/08,9.495675000119997 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/23,12.23340416699915 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/23,12.740662500237484 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/09,12.985410428369171 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/08,5.86962499999999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/08,9.495675000119997 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/23,12.23340416699915 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/23,12.740662500237484 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/25,7.094349993430009 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/09,13.335992423665816 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/09,14.352141667046649 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/24,6.699335607685836 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/24,7.0683624970125 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/25,7.094349993430009 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/09,13.335992423665816 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/09,14.352141667046649 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/24,6.699335607685836 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/24,7.0683624970125 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/10/04,13.06468239820511 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/25,16.683741666809166 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/25,15.75497500018998 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/10/04,13.06468239820511 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/25,16.683741666809166 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/25,15.75497500018998 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/11/04,8.674813647187513 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/10/28,14.312572041393349 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/11/04,8.674813647187513 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/10/28,14.312572041393349 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/12/07,10.22763333311834 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/12/07,10.22763333311834 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/01/08,21.77565833333335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/12/23,21.67155833333335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/01/08,21.77565833333335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/12/23,21.67155833333335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/05,7.14442084735333 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/02/24,5.712324994947512 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/04,5.704153076923071 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/04,5.874766676923072 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/05,7.14442084735333 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/02/24,5.712324994947512 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/04,5.704153076923071 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/04,5.874766676923072 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/29,3.8283750000000074 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/29,3.8283750000000074 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/08,8.873266666334173 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/07,7.199611364634999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/07,5.462466674936662 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/08,8.873266666334173 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/07,7.199611364634999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/07,5.462466674936662 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/08,5.729400000500002 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/08,7.377916667429166 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/01,3.374252250000006 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/23,16.222275000720018 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/23,16.366025000420017 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/08,5.729400000500002 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/08,7.377916667429166 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/01,3.374252250000006 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/23,16.222275000720018 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/23,16.366025000420017 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/07/03,15.41640834943336 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/24,2.3991157500000027 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/24,4.4681885 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/07/03,15.41640834943336 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/24,2.3991157500000027 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/24,4.4681885 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/08/03,12.99164583526334 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/08/03,12.99164583526334 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/04,10.100166300934998 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/05,8.465224999955002 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/04,10.100166300934998 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/05,8.465224999955002 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/07,14.442525000379987 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/21,10.53009166973416 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/07,14.442525000379987 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/21,10.53009166973416 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/31,3.548147000344403 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/22,19.11509166800668 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/11/08,7.233387955641023 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/31,3.548147000344403 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/22,19.11509166800668 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/11/08,7.233387955641023 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/11/24,6.18815452 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/01/03,22.373925000000007 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/02/27,13.260333333095836 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/04/01,12.901683333570835 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/03/23,21.66638333333335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/05/02,3.9285624955374976 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/05/27,7.315041653326672 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/06/11,16.493475000310017 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/06/11,10.670012500914993 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/07/06,3.73553846153846 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/08/06,3.875104169561667 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/08/23,2.8957999999999977 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/10/09,11.915689582358334 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/09/23,31.324958335633355 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/10/10,12.070070480047486 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/11/11,10.810471910512812 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/01/06,2.9428000000250063 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/03/11,14.073725000657516 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/04/03,5.123654161851667 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/03/26,10.726116666924169 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/05/06,5.931214561999991 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/07,6.013522692307695 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/08,20.03596666661916 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/01,10.775281442346666 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/22,11.79855000294501 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/09,21.233383333238315 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/30,17.51852500031002 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/30,14.594491669426676 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/23,3.788715909999991 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/02,19.62277083333334 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/24,18.985761666809168 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/10,4.524188461585959 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/01,2.7205772500000065 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/01,12.986625000522492 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/25,10.807575002202489 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/09/10,20.88194333830584 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/09/03,8.103037506780003 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/25,5.686405308739169 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/09/11,4.561810439999997 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/10/05,23.540266669256667 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/09/27,11.58876818999998 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/11/06,16.613213618343607 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/10/28,16.71663112093362 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/10/29,4.013831829999996 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/12/08,6.248424994532512 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/11/30,8.258725001222487 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/12/24,11.467600001095024 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/12/23,3.845475000000005 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/12/23,3.1694000000000058 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/04/06,10.20872821199999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/08,4.444538629999992 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/01,7.9232833357283425 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/09,3.506845804102558 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/05/31,8.67456249988001 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/05/31,8.186808333510845 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/05/24,11.32959167356668 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/10,12.330375002010005 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/03,6.1457526577633335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/24,4.842291667044173 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/02,10.735466668329163 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/02,10.053741668234158 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/25,3.13947725 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/08/11,10.507837499317509 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/26,3.331628331470833 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/08/03,12.303733333333325 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/08/03,14.275766666951668 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/27,4.067000000072498 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/09/04,7.59767728999999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/09/04,4.997322789999996 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/09/28,7.695499999347513 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/09/21,22.09971166935166 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/10/06,10.601864797647496 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/10/06,13.117666666856657 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/11/08,11.206499027825265 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/10/23,10.588563752577503 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/10/31,8.657799998052495 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/01/11,6.461670432219162 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/01/10,2.693819230769235 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/02/11,21.867666666666683 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/02/11,21.867666666666683 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/04/09,8.349749998464995 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/05/11,3.527175000000005 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/05/02,4.229034013473334 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/05/02,4.601622800686665 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/06/04,2.772471982609164 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/05/27,5.432500000652493 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/07/05,19.08779166685668 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/07/05,19.106025000095 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/06/28,4.537675000047495 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/07,17.077605834630816 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/07/22,11.535112361783607 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/06,6.463411443270834 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/06,5.594126566927498 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/23,16.59359777807277 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/09/07,22.25543334023333 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/09/07,22.898108340233332 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/22,17.160908335728347 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/22,7.666000000095008 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/10/02,12.366475007069992 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/11/11,7.25249582736333 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/11/10,5.411487335333331 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/11/10,3.631933941666664 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/11/07,6.100051526153839 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/12/04,2.884875000000004 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/12/04,3.133994230769232 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/02/07,21.66638333333335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/01/29,10.568349999785006 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/01/22,21.66638333333335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/03/03,12.727616666189167 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/04/04,9.103983333623336 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/04/28,5.861750018447501 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/10,9.81627918255167 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/29,9.25662878347834 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/24,3.800010606739164 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/30,4.1036295 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/29,2.5688044999999984 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/29,2.749050000000001 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/02,12.502762499592498 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/27,4.10869851681988 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/09,12.908894705280836 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/08,12.22501458429084 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/08,12.542183334665838 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/01,4.640716672159166 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/30,8.178369558000002 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/30,4.764811365072493 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/23,6.416155308405833 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/22,6.572137495507508 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/22,6.507321587095005 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/05,11.562800006157504 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/10,16.968149999987503 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/09,3.2723000000000035 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/02,3.229665749999999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/25,2.616977250000005 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/09/02,13.566533349680851 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/09/02,13.236383345080853 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/25,14.00127500345 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/25,16.459225 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/09/25,24.44116666666665 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/05,23.182517916666665 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/04,11.326125 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/04,11.342775000000008 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/11/10,17.010642705948598 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/29,28.327374587933367 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/24,15.649022361158591 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/29,9.59061136333333 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/11/22,3.421150000000008 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/11/21,6.301390083918648 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/11/21,9.586389789743588 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/02/26,3.886574504615378 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/04/10,5.323584097347499 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/03/30,7.535631846153841 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/09,6.9045810617866685 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/08,3.9308583335233305 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/08,8.666805314519996 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/29,20.88090625016748 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/24,11.020845833453336 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/06/02,5.950950002632506 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/06/01,12.492458335728347 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/06/01,8.036175756761676 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/25,3.761293180144997 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/24,19.24534166648416 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/07/11,6.453505304611664 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/07/11,5.947345831710831 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/07/04,7.726747789999996 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/03,17.728856250127482 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/04,6.117520826545834 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/04,8.48581249999751 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/07/28,4.205606081739162 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/30,6.006558330308349 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/06,6.333909042307684 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/05,3.3701442307692298 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/05,3.5028552899999976 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/29,5.645708333333343 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/28,4.112711389999999 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/28,4.378212961538458 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/21,6.725449994320012 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/29,3.751900000000002 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/22,4.530430472072493 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/21,21.74790833333333 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/21,19.90625833333335 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/10/23,24.471000912300013 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/11/01,3.4439750000000062 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/10/24,6.376262301999994 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/10/23,21.03311666708668 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/10/23,16.422725000769994 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/12/03,3.856412897029165 +Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/11/25,4.424783248333326 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/05,21.856800000000018 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2014/12/29,12.405250000137496 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/07,22.373925000000007 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/29,22.26459166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/22,22.451158333333343 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/06,12.957299999737502 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/07,22.373925000000007 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/29,22.26459166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/22,22.451158333333343 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/06,12.957299999737502 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/23,22.348225000000006 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/22,11.197308333718336 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/23,22.348225000000006 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/22,11.197308333718336 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/05,7.921226541357504 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/06,8.206435004672485 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/05,7.921226541357504 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/06,8.206435004672485 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/06/06,6.818933333283338 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/30,20.031933333333345 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/29,3.080276370000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/22,4.103170000072498 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/06/06,6.818933333283338 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/30,20.031933333333345 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/29,3.080276370000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/22,4.103170000072498 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/09,7.760620832110838 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/10,14.219858333743332 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/01,3.5608500000000065 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/07/25,13.547158333333316 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/09,7.760620832110838 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/10,14.219858333743332 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/01,3.5608500000000065 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/07/25,13.547158333333316 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/25,3.583862896884167 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/11,2.171776975000005 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/25,3.583862896884167 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/11,2.171776975000005 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/26,5.04398786968864 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/10/04,5.947186751620836 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/27,3.482560193910252 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/26,5.04398786968864 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/10/04,5.947186751620836 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/27,3.482560193910252 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/05,3.542850000000008 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/05,3.542850000000008 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/12/08,5.96427499733001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/29,2.986405318954169 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/22,6.548664408261671 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/30,22.57349999952501 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/21,14.399966668466655 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/12/08,5.96427499733001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/29,2.986405318954169 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/22,6.548664408261671 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/30,22.57349999952501 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/21,14.399966668466655 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/01/08,12.54129166665166 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/01/08,12.54129166665166 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/02/01,9.037275000155011 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/02/01,9.037275000155011 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/03/04,11.613400000385 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/02/26,22.34590833333334 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/03/04,11.613400000385 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/02/26,22.34590833333334 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/05,18.251058402333356 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/03/29,10.059283335775826 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/05,18.251058402333356 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/03/29,10.059283335775826 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/30,3.528780451999998 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/21,7.994201148030839 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/29,2.7204517500000027 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/30,3.528780451999998 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/21,7.994201148030839 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/29,2.7204517500000027 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/23,7.825841666284171 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/31,2.706302250000003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/24,4.098499999999999 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/23,7.825841666284171 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/31,2.706302250000003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/24,4.098499999999999 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/03,4.538475809229399 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/06/24,19.781787500955 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/11,3.2698909549999997 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/06/25,3.059166994102562 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/03,4.538475809229399 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/06/24,19.781787500955 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/11,3.2698909549999997 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/06/25,3.059166994102562 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/11,12.941100064512488 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/04,4.354818199999985 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/03,3.0345356266666634 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/27,2.3714340500000053 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/11,12.941100064512488 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/04,4.354818199999985 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/03,3.0345356266666634 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/27,2.3714340500000053 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/05,2.936349999999998 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/27,3.478435606666666 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/04,11.255225000000005 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/05,2.936349999999998 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/27,3.478435606666666 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/04,11.255225000000005 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/07,6.378955341047611 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/28,6.29684621833333 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/21,2.690305923000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/06,2.66479180576923 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/29,4.015441591666657 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/07,6.378955341047611 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/28,6.29684621833333 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/21,2.690305923000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/06,2.66479180576923 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/29,4.015441591666657 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/11/08,10.138313644999997 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/23,6.359279166041671 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/11/07,3.091314354807692 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/11/08,10.138313644999997 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/23,6.359279166041671 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/11/07,3.091314354807692 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/01/11,9.959149999762497 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/01/11,9.959149999762497 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/03,22.30574166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/04,21.75304166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/03,22.30574166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/04,21.75304166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/19,11.749383333143326 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/03/08,12.527740000500003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/27,10.633216667251672 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/20,14.858841666571674 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/19,11.749383333143326 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/03/08,12.527740000500003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/27,10.633216667251672 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/20,14.858841666571674 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/03/23,22.26459166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/03/23,22.26459166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/04/24,6.993071224999997 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/04/24,6.993071224999997 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/06/11,7.966312497707507 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/05/27,3.4972987692307664 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/06/11,7.966312497707507 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/05/27,3.4972987692307664 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/05,2.474673601126374 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/06/28,7.47675000007249 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/05,2.474673601126374 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/06/28,7.47675000007249 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/29,5.046246223485833 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/22,17.97181666609417 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/30,2.462399850000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/29,5.046246223485833 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/22,17.97181666609417 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/30,2.462399850000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/30,3.7521181799999943 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/23,12.823187502552516 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/31,3.294002250000006 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/30,3.7521181799999943 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/23,12.823187502552516 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/31,3.294002250000006 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/10,4.000060596666659 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/01,3.2966236319999944 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/09/24,5.424823483333332 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/02,3.5347138335622685 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/09/23,18.248504166906667 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/10,4.000060596666659 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/01,3.2966236319999944 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/09/24,5.424823483333332 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/02,3.5347138335622685 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/09/23,18.248504166906667 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/11,10.189154439047613 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/10,2.9389 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/25,13.163408333533326 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/11,10.189154439047613 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/10,2.9389 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/25,13.163408333533326 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/12/04,12.315880315 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/27,5.743299996085007 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/26,2.7111612500000035 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/05/05,5.680133335823324 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/05/29,8.616616664111671 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/05/30,2.645410000000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/07/09,2.846252310072499 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/06/30,12.118075000347494 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/06/22,6.28530833812332 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/08/10,3.731745343333324 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/09/03,3.162100000000005 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/08/25,4.066050006899996 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/09/27,8.862717917611683 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/10/05,2.5697264932692288 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/12/07,12.642135016895006 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/11/22,18.96637500040001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/02/10,14.897291670069167 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/01/25,21.66638333333335 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/03/06,22.752450000000003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/04/23,11.112491699854171 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/05/08,3.706777281357496 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/04/22,4.252423533333329 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/06/10,13.85515833328582 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/06/09,2.3964952500000023 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/06/26,13.945136742605836 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/08/04,4.445044057819881 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/07/28,13.943997992359156 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/08/05,2.562502355769232 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/09/05,3.023790007999997 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/09/06,2.24534535 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/09/21,8.321584090072502 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/10/08,3.878312233974356 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/09/29,2.9860862000000004 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/11/08,6.1553499962525136 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/11/01,6.263949997945009 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/10/23,9.92667405420416 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/11/09,15.27850000039999 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/12/11,14.733929180969174 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/11/25,3.2775750000000063 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/02/05,22.76205 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/03/08,22.451158333333343 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/02/21,22.67296666666667 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/03/07,21.67155833333335 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/02/20,21.867666666666683 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/04/01,3.633652389423078 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/05/02,18.18991670346668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/04/25,8.647227275000006 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/05/03,3.287476203333332 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/04/24,10.660591694366662 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/05/27,5.865171213405835 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/06/11,3.545500000000008 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/05/26,4.869411249999999 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/07/05,5.5861911316825 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/07/06,2.6579791000000013 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/06,4.674146232342501 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/07,3.12492494326923 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/31,6.718089997610005 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/09/08,3.285577250047502 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/30,3.223050000000008 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/23,3.5258772500000037 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/10/09,4.59107955999999 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/10/10,5.518708333333348 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/10/01,3.382043125 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/09/24,3.7323772500725 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/11/10,10.09614686238094 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/10/25,7.293176710414161 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/01/29,22.76205 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/03/02,22.451158333333343 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/04/11,17.80643333553332 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/04/04,23.106891671409176 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/04/28,8.772489580828335 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/05/06,4.099227250119999 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/06/06,5.086779769697503 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/06/07,3.3134067500000004 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/05/29,12.477783333333328 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/08/02,3.2957538249735694 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/07/24,14.19574169433917 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/08/10,3.3271772999999967 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/08/25,10.332279176274158 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/09/02,3.612300000000007 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/08/26,4.328286216346156 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/09/26,3.4746591049999958 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/11/06,6.833024999770009 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/11/05,4.37675929326923 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/10/29,3.489962903434064 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/11/29,5.812152902380945 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/12/07,2.9297149999999976 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/11/24,3.1062315298076904 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/12/24,11.205441666666678 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/12/24,9.47913333353335 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/02/01,22.26459166666668 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/01/25,23.612166666666656 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/02/26,22.658500000000007 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/04/06,9.48137291667418 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/03/30,22.451158333333343 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/04/06,15.428164972138354 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/03/29,21.48859166666669 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/03/22,17.86544791683418 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/09,3.678982736999996 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/09,2.5659322000000038 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/08,9.006853033333336 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/01,3.00434625 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/04/30,5.062733342533328 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/04/23,19.908674999952485 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/31,12.842120834988334 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/25,2.8936840500000023 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/24,6.202337503552501 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/06/29,3.1047651723666663 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/07/04,2.617125000000004 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/07/03,8.256500001924984 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/06/26,3.801706819999996 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/06/25,3.04834226 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/08/07,11.279366689954168 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/07/28,3.5699749999999955 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/07/27,3.5941862500000004 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/09/10,5.6727791669291765 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/08/29,10.834358333910837 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/08/28,4.238973493333329 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/10/08,19.873233332988335 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/09/30,3.5582132085622677 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/09/21,2.670605000000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/10/31,5.685929173066674 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/11/09,2.92460385576923 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/11/08,2.39273625535714 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/10/31,4.176079169381665 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/10/23,17.81566666647416 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/12/10,3.589861350000003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/12/02,3.4020555807692303 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/11/24,5.2126886 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/12/27,22.68484166666667 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/02/21,12.769374999984992 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/04/10,13.37012500000002 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/04/09,12.63627708357084 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/04/02,12.668024999952491 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/04/01,14.725249999905008 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/09,10.7938500031925 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/11,5.97086591000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/31,2.892712727999999 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/26,3.8111075783333286 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/06/05,15.109510608048346 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/28,3.623621213333324 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/27,10.232000000072489 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/06/22,3.5239363650724944 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/06,2.1540725750000003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/10,7.911927270312504 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/05,6.597000004255001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/31,2.347875000000002 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/30,3.563577250000003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/23,3.433706820000003 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/22,4.913975000119993 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/01,5.676734091132505 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/09,4.110292426739163 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/01,15.270308335848346 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/31,7.114775000000006 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/24,2.199329325000001 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/23,3.1473673798076938 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/28,6.789974994735012 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/10/03,5.790477249999994 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/10/02,4.784685606666663 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/25,3.444077289999994 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/11/03,4.792725069999997 +Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/11/28,3.491325000120001 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/01/05,21.88613333333335 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2014/12/29,13.042208333190835 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/02/06,12.522983333470831 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/02/06,12.522983333470831 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/02/22,12.19241666652417 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/02/22,12.19241666652417 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/05,8.496776132082495 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/06,8.988100760430827 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/05,8.496776132082495 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/06,8.988100760430827 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/06,6.820208331135835 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/30,7.671737504385005 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/07,13.29163333333332 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/29,2.7362361500000025 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/22,2.4662512500000013 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/06,6.820208331135835 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/30,7.671737504385005 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/07,13.29163333333332 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/29,2.7362361500000025 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/22,2.4662512500000013 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/23,13.55910000016751 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/23,13.55910000016751 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/09,7.834662508985007 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/07/24,19.99798333307082 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/10,3.5460977719999947 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/01,3.4191750000000054 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/07/25,14.796918339415834 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/09,7.834662508985007 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/07/24,19.99798333307082 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/10,3.5460977719999947 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/01,3.4191750000000054 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/07/25,14.796918339415834 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/10,8.680599991264994 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/03,10.905241668764177 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/11,3.830322699999998 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/02,12.689950000262506 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/10,8.680599991264994 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/03,10.905241668764177 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/11,3.830322699999998 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/02,12.689950000262506 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/10/05,5.852549993245005 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/26,3.184133326666664 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/10/04,4.697190989999997 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/27,2.8796070647435896 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/10/05,5.852549993245005 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/26,3.184133326666664 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/10/04,4.697190989999997 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/27,2.8796070647435896 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/05,11.126977250072487 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/05,11.126977250072487 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/29,6.25047499430501 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/22,13.907241672074164 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/21,19.217766667056665 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/29,6.25047499430501 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/22,13.907241672074164 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/21,19.217766667056665 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/02/01,15.3169791672092 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/02/01,15.3169791672092 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/02/26,22.26459166666668 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/02/26,22.26459166666668 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/05,10.169458335370846 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/03/29,7.597618829214998 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/05,10.169458335370846 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/03/29,7.597618829214998 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/07,4.451364481470235 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/30,6.355174248380829 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/21,14.80872500460002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/29,3.9701250093833305 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/07,4.451364481470235 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/30,6.355174248380829 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/21,14.80872500460002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/29,3.9701250093833305 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/23,8.697533333188337 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/31,4.633529168894167 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/24,13.51847501380002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/23,8.697533333188337 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/31,4.633529168894167 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/24,13.51847501380002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/03,12.649941678166677 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/06/24,11.937612502795002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/11,3.8251223249999935 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/06/25,4.332425000000007 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/03,12.649941678166677 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/06/24,11.937612502795002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/11,3.8251223249999935 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/06/25,4.332425000000007 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/11,14.020283342653324 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/04,13.413991666904176 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/03,3.0264768865384624 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/27,3.4299000469999954 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/11,14.020283342653324 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/04,13.413991666904176 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/03,3.0264768865384624 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/27,3.4299000469999954 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/05,4.380804549999996 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/27,3.87690757333333 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/04,5.629777279999996 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/05,4.380804549999996 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/27,3.87690757333333 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/04,5.629777279999996 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/07,5.726869693405842 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/28,6.44496060666667 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/21,7.082477275652504 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/06,2.796409075 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/29,3.5682212333333267 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/07,5.726869693405842 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/28,6.44496060666667 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/21,7.082477275652504 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/06,2.796409075 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/29,3.5682212333333267 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/08,3.957408450478336 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/23,6.257824997545007 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/07,2.5091150057692304 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/08,3.957408450478336 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/23,6.257824997545007 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/07,2.5091150057692304 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/23,2.803925000000006 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/23,2.803925000000006 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/12/25,21.791766666666685 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/12/25,21.791766666666685 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/02/04,22.05378333333335 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/02/04,22.05378333333335 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/02/28,18.509400002162497 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/03/08,12.341965004645008 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/02/28,18.509400002162497 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/03/08,12.341965004645008 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/04/24,10.353174999999975 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/04/24,10.353174999999975 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/06/11,9.147999997325003 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/05/27,2.66132725 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/06/11,9.147999997325003 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/05/27,2.66132725 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/05,2.4212450000000034 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/05,2.4212450000000034 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/29,5.021225015560001 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/22,8.940518948816663 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/30,3.4791954699999947 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/29,5.021225015560001 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/22,8.940518948816663 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/30,3.4791954699999947 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/08/30,10.09896969666667 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/08/23,2.28979696681167 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/08/30,10.09896969666667 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/08/23,2.28979696681167 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/10,7.7637060567391645 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/01,7.961157583333335 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/09/24,6.212788259014173 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/02,3.681376386538457 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/09/23,4.575358337990831 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/10,7.7637060567391645 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/01,7.961157583333335 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/09/24,6.212788259014173 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/02,3.681376386538457 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/09/23,4.575358337990831 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/11/11,6.134040910095004 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/11/10,2.981075000000005 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/25,14.507633333933322 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/11/11,6.134040910095004 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/11/10,2.981075000000005 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/25,14.507633333933322 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/12/04,10.501019592380942 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/05/05,3.623602671066664 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/04/28,5.770077815384609 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/06/07,9.289174987214995 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/05/29,8.431524997707506 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/05/30,5.250000002299995 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/07/09,6.682325000407505 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/06/30,11.7759250000725 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/07/08,4.917996991025834 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/07/01,12.32692500043499 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/06/22,2.093695374999997 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/08/10,3.7812060616666594 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/08/09,11.74141668851668 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/08/02,14.174841669039145 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/09/03,4.365774999999994 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/08/25,5.049560606666663 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/09/27,7.841545823328338 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/10/05,4.946917239999995 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/12/07,22.34590833333334 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/11/22,21.919450000000012 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/02/09,14.89319166661916 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/01/25,21.794191666666684 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/02/26,21.51594999973752 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/04/23,5.210796250007504 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/05/08,5.149325404925829 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/04/22,3.126769230769229 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/06/10,10.463374998867494 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/06/09,3.462661379999994 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/07/03,18.0013000012925 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/06/26,8.257079173351666 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/08/04,8.992595461949168 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/07/28,9.975417855567851 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/08/05,2.427554563333333 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/07/27,6.161768189999999 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/09/05,8.714292040000004 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/08/29,6.598121966884171 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/09/06,7.01368182 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/09/21,4.514756820000006 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/10/08,3.0171727249999987 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/09/29,4.052537123333325 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/10/23,18.35486470691084 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/11/09,14.647250000399993 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/12/11,17.01482500285752 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/03/08,11.94520833391833 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/02/21,23.228724999999997 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/02/29,21.791766666666685 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/02/20,21.791766666666685 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/05/02,12.176808346608349 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/04/25,10.748702275095004 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/05/03,4.963618943333329 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/04/24,5.189408336298327 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/05/27,8.562426513768335 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/06/11,4.786352250047496 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/05/26,3.830224999999993 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/07/05,5.556078632920002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/07/06,2.374401762500001 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/06,9.373039598733342 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/07/30,2.720706860000001 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/07,2.9375947224358976 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/31,3.911573490217492 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/22,2.754726546811666 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/09/08,8.612175000217501 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/30,3.3080192307692307 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/10/09,4.569532727072498 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/10/10,16.109425003597497 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/10/01,12.025433333333336 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/09/24,18.58087500177501 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/11/10,8.442114404999991 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/10/25,5.836420864790828 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/12/29,21.75304166666668 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/02/06,12.10808333331833 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/03/02,22.309808333333343 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/04/04,9.516524998352509 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/05/06,3.8882681250475017 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/06/06,5.072211375890003 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/06/07,6.1168000003600085 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/05/29,6.375881454456664 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/06/23,3.3103050499999984 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/07/24,15.25260000072 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/08/10,7.606100003067509 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/07/25,2.762425000000004 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/08/25,12.0504837494775 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/09/11,2.781774729999999 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/08/26,3.9873727999999926 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/09/26,5.679244696739167 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/11/06,3.302681821362498 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/11/05,4.011750000000004 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/10/29,2.7598026057692304 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/11/29,6.511934559396943 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/12/07,4.582825000072492 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/11/24,2.647398918269228 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/12/24,12.276149999999996 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/12/24,14.472633333333349 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/12/23,17.29277917647916 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/01/24,21.867666666666683 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/02/26,23.02285 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/02/26,13.112766666851662 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/04/06,7.8832333326308515 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/03/30,22.451158333333343 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/04/06,10.200431249440012 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/03/29,21.750616666666684 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/03/22,13.117916666381673 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/09,8.714770476666665 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/09,2.589593550000004 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/08,5.599450002300002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/01,2.780337250000001 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/04/30,4.3905439470641605 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/04/23,21.776716666271664 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/31,18.277358335800827 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/06/10,4.436156066786668 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/25,3.6926381999999935 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/24,14.106424999784988 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/04,17.799466691966668 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/06/29,3.3899045601449966 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/04,10.155408341620822 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/03,7.250608332713342 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/06/26,4.565899999999998 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/06/25,2.6945672500000013 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/08/07,14.148466696039158 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/28,3.0602382730769238 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/27,6.657908337020827 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/09/10,7.491450002595001 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/08/24,6.417210607918334 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/08/28,3.793357379999997 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/10/08,3.309152250120003 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/09/30,3.09253729903846 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/09/21,5.07962725007249 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/10/31,4.601311800103566 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/11/09,2.4039799749999986 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/11/08,4.606542274999996 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/10/31,5.18134584477583 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/10/23,4.143452281284997 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/12/10,11.9034250006 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/12/02,7.343886224999997 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/11/24,4.286086216346156 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/02/21,21.88613333333335 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/04/01,10.118483332975844 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/09,10.453533334048338 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/11,6.2640420447250085 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/04/25,14.636883333140826 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/31,8.103477270312503 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/26,7.893318556786668 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/06/05,8.524558334483327 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/28,4.105477275000002 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/27,18.514975000000003 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/06/22,7.659543180144998 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/07/06,4.8742704899999945 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/06/21,3.2867567500000066 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/10,21.254626669184187 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/05,4.338825000072493 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/07/31,3.2240360230769234 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/07/23,3.3403984633808363 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/07/22,2.481675000000004 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/06,8.06410378673916 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/01,6.751709090842509 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/09,5.3329469737541615 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/01,14.914875000072511 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/31,4.350262871666659 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/24,3.972270489999992 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/23,2.947204950000001 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/28,12.176789182751664 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/10/03,5.193406072294997 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/10/02,10.725041668966648 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/25,6.537214394203331 +Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/11/03,5.671408386666661 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2014/12/29,13.829549999905014 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/01/22,22.373925000000007 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/01/22,22.373925000000007 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/03/11,12.26709166645166 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/02/23,22.64890000000001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/02/22,22.69252500000001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/03/11,12.26709166645166 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/02/23,22.64890000000001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/02/22,22.69252500000001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/05,9.77937501075 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/06,5.983983333548323 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/05,9.77937501075 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/06,5.983983333548323 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/06,7.69718333295084 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/30,8.76492274172084 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/07,13.01719999998499 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/29,3.9689000001449934 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/06,7.69718333295084 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/30,8.76492274172084 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/07,13.01719999998499 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/29,3.9689000001449934 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/22,11.341799997662504 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/22,11.341799997662504 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/10,4.042199999999991 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/01,17.799700000137513 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/10,4.042199999999991 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/01,17.799700000137513 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/03,5.866420821995839 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/25,2.7718000002375 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/11,5.852025000744999 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/02,8.640425000289996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/03,5.866420821995839 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/25,2.7718000002375 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/11,5.852025000744999 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/02,8.640425000289996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/10/05,6.439174999280007 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/26,3.3038446866666638 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/10/04,3.472145717490841 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/27,2.886768967307692 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/10/05,6.439174999280007 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/26,3.3038446866666638 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/10/04,3.472145717490841 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/27,2.886768967307692 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/05,12.35728333333332 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/05,12.35728333333332 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/29,6.942124997760015 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/22,3.0446736183333347 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/21,5.509724248788335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/29,6.942124997760015 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/22,3.0446736183333347 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/21,5.509724248788335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/01/08,21.77565833333335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/01/08,21.77565833333335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/05,10.153011370000002 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/03/29,13.405025844530828 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/05,10.153011370000002 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/03/29,13.405025844530828 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/07,13.81681673478 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/30,16.47429173586669 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/21,8.015640156666663 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/29,6.627154551974999 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/07,13.81681673478 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/30,16.47429173586669 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/21,8.015640156666663 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/29,6.627154551974999 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/23,5.630319992127506 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/31,7.9817928028066705 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/24,8.762483335895817 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/23,5.630319992127506 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/31,7.9817928028066705 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/24,8.762483335895817 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/03,6.086675000577507 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/06/24,4.615967439917503 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/11,3.0297000999999995 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/06/25,6.726343179999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/03,6.086675000577507 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/06/24,4.615967439917503 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/11,3.0297000999999995 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/06/25,6.726343179999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/11,6.74533409057751 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/04,3.4964722642475574 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/26,5.997960611566664 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/03,2.3050224900000025 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/27,2.328655175000003 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/11,6.74533409057751 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/04,3.4964722642475574 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/26,5.997960611566664 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/03,2.3050224900000025 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/27,2.328655175000003 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/05,4.952063630289993 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/27,11.37940208390335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/04,3.052002279999998 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/05,4.952063630289993 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/27,11.37940208390335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/04,3.052002279999998 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/07,8.87420670904762 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/28,16.3894000000475 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/21,5.441625000477502 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/06,4.808971530769228 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/29,5.082689541999996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/07,8.87420670904762 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/28,16.3894000000475 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/21,5.441625000477502 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/06,4.808971530769228 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/29,5.082689541999996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/11/08,3.8629395522899994 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/23,10.1430347500711 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/11/07,2.351724880769228 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/11/08,3.8629395522899994 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/23,10.1430347500711 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/11/07,2.351724880769228 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/12/25,21.919450000000012 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/12/25,21.919450000000012 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/03/08,11.775849999999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/02/20,16.18829999999999 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/03/08,11.775849999999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/02/20,16.18829999999999 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/03/23,22.348225000000006 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/03/23,22.348225000000006 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/04/24,12.440534101541672 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/04/24,12.440534101541672 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/06/11,7.266170825688332 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/06/11,7.266170825688332 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/05,2.567101350000001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/05,2.567101350000001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/29,5.56239698969417 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/06,6.294653029150828 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/30,3.656368749999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/29,5.56239698969417 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/06,6.294653029150828 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/30,3.656368749999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/30,4.908700000217494 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/23,9.109660660128338 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/31,5.340924999999996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/30,4.908700000217494 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/23,9.109660660128338 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/31,5.340924999999996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/10,7.953713640072492 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/01,3.224562886666661 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/09/24,4.996509092300004 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/02,4.021867630769226 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/09/23,7.854050002734991 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/10,7.953713640072492 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/01,3.224562886666661 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/09/24,4.996509092300004 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/02,4.021867630769226 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/09/23,7.854050002734991 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/11/11,8.215487005714287 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/11/10,2.935150000000007 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/25,7.199583326666662 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/11/11,8.215487005714287 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/11/10,2.935150000000007 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/25,7.199583326666662 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/12/04,3.796908951846071 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/12/28,21.867666666666683 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/05/05,6.868208341430824 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/06/07,7.779349986277493 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/05/29,8.270674999427506 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/05/30,3.1519364999999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/07/09,3.5382068351449982 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/07/08,7.3178875035574995 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/07/01,9.004750000289993 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/06/22,2.4808555557692293 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/08/10,3.84561060666666 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/08/09,3.267050000145 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/09/03,3.545602250047504 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/08/25,6.1954674266666645 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/09/27,9.768187500502515 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/10/05,3.3508264 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/11/22,21.66638333333335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/12/23,12.219650000000003 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/02/10,13.050608333238332 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/01/25,21.67155833333335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/02/26,22.09913333333335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/04/23,9.122782588451658 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/05/08,6.691841676056655 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/04/22,3.026475 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/06/10,16.467883333333326 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/06/09,3.6106719999999934 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/07/03,20.10680833285335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/08/04,14.66552500697249 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/07/28,6.965266666596665 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/08/05,3.0173001499999974 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/07/27,7.799525011324995 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/09/05,3.442521966666661 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/08/29,14.221466789679162 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/09/06,4.328873483333328 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/09/21,7.17232196671417 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/10/08,3.04324565 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/09/29,4.153698870334166 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/11/01,10.208566677939162 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/11/09,4.451897754807692 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/11/25,14.680441669941686 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/02/05,22.539900000000006 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/02/21,22.00959166666668 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/03/07,22.113474999737512 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/02/29,21.848400000000016 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/02/20,21.88613333333335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/05/02,8.994762504170001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/04/25,4.663336367419998 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/05/03,5.527304549999992 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/04/24,6.261271218836669 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/05/27,2.687160604058332 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/06/11,2.562875000000001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/05/26,3.924274999999992 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/07/06,2.86338099 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/06,4.1238037933333285 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/07/30,3.6017000007649984 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/07,3.3077826764651985 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/07/29,6.653625001502496 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/31,3.1589643934058302 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/30,4.454025000047497 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/23,12.226225000199982 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/10/09,3.8070721353333306 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/09/23,13.317175000164998 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/10/10,13.810000005850004 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/10/01,9.284600000382497 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/09/24,10.23959166896666 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/11/10,10.05453095238094 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/10/25,14.40671731885356 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/12/29,21.856800000000018 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/01/29,23.486291666666656 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/02/06,11.634999999984997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/03/11,11.51895833333334 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/03/02,22.26459166666668 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/04/03,13.935933333238331 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/03/26,23.13685075673918 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/05/06,3.166525000000002 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/06/06,14.555864999620006 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/06/07,15.384175016195025 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/05/29,7.667766209609168 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/06/23,3.8044545 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/08/02,6.958845824553346 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/07/24,15.43035 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/08/10,7.621143180335001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/07/25,7.889125000290002 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/08/25,5.318333334780833 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/09/11,3.4345636249999933 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/08/26,4.525559099999993 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/09/26,3.5196098485508283 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/10/04,13.32843333333332 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/11/06,3.8882158849999966 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/11/05,12.285375000189989 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/10/29,2.2379232249999976 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/11/24,5.339447961538463 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/12/24,11.289925000000006 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/12/24,3.2449250000000056 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/12/23,16.13326666657166 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/02/26,23.228724999999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/02/26,11.162191667051667 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/04/06,11.502375001210034 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/03/30,22.34590833333334 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/04/06,7.828112498245 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/03/30,22.274983333333346 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/03/29,21.66638333333335 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/03/22,12.705312500780009 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/09,3.645312439999996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/08,6.540178033333337 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/01,3.632534858333329 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/04/30,6.759991670924158 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/04/23,17.81424166693165 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/31,10.4851875050775 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/25,3.966395504999996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/24,4.79294811049583 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/07/04,19.711325000060015 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/06/29,3.1018681899999967 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/07/03,5.9232147813449965 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/06/26,3.963931820145002 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/06/25,4.9138568351733305 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/08/07,3.167739409275833 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/07/28,2.8241590000000003 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/07/27,16.018275000262477 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/09/10,8.331509093145007 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/08/24,2.6167356 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/08/28,5.065872016666661 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/09/22,11.803937511367517 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/09/30,2.332905205769228 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/09/21,3.378300000047499 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/10/31,3.5012524986450004 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/11/09,2.567498224999998 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/11/08,2.725680791666666 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/10/24,7.621275000362498 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/10/23,12.158016666866654 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/12/10,4.745703033333324 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/12/02,20.62124166741168 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/11/24,3.4442000000000035 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/12/27,22.14189166666668 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/02/04,22.24565000000001 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/04/10,10.152799999904987 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/04/09,10.317408333238326 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/04/01,18.307631250332506 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/09,16.536358333355835 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/11,10.136916669014152 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/04/25,5.164158332713331 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/31,6.806640146786666 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/26,2.974425605004166 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/06/05,17.63957000005999 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/28,3.9612500001449966 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/27,20.00123333295082 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/06/22,3.0582740888699997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/07/06,3.0857749999999964 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/06/21,2.559299999999996 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/10,14.655766675986673 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/05,3.202755308333329 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/07/30,7.197860606956666 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/07/23,3.509527249999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/07/22,2.7990112499999977 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/06,6.301826513598336 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/01,17.84446666685918 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/09,5.114054930014998 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/01,19.608233333405853 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/31,4.845799999999997 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/24,7.050825000432504 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/23,2.630320324999999 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/10/03,9.783837502600004 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/28,11.834814593218326 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/10/03,5.943333337933337 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/10/02,8.953591675866662 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/25,22.007333335705844 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/11/03,4.234676354999995 +Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/11/28,4.239324999999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/01/05,21.838800000000013 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2014/12/29,21.66638333333335 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/03/10,21.67155833333335 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/02/22,21.84966666666668 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/03/10,21.67155833333335 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/02/22,21.84966666666668 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/04/03,13.267133333190833 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/04/03,13.267133333190833 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/05,11.218287513272504 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/06,8.45521000016748 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/05,11.218287513272504 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/06,8.45521000016748 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/06/06,24.35793750131501 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/29,2.5374975883333333 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/06/06,24.35793750131501 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/29,2.5374975883333333 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/08,8.662645830893348 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/06/22,4.74978870007249 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/08,8.662645830893348 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/06/22,4.74978870007249 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/24,12.114174996055 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/10,2.4735521 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/01,12.623350000047497 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/25,12.272050000239997 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/24,12.114174996055 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/10,2.4735521 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/01,12.623350000047497 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/25,12.272050000239997 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/25,5.997408754685 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/11,3.176329500000002 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/25,5.997408754685 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/11,3.176329500000002 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/10/05,5.891299992815005 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/26,3.399236434999993 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/10/04,2.432613500000002 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/27,2.2884999499999976 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/10/05,5.891299992815005 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/26,3.399236434999993 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/10/04,2.432613500000002 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/27,2.2884999499999976 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/11/29,8.618899995565007 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/11/22,7.98636874199 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/11/29,8.618899995565007 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/11/22,7.98636874199 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/01/08,22.231758333333342 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/01/08,22.231758333333342 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/02/01,5.57389999820501 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/02/01,5.57389999820501 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/02/26,22.674233333333337 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/02/26,22.674233333333337 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/03/29,13.977339584673324 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/03/29,13.977339584673324 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/07,5.052439661516068 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/30,5.094004559999994 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/21,7.25557879166667 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/29,6.049746973848317 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/07,5.052439661516068 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/30,5.094004559999994 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/21,7.25557879166667 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/29,6.049746973848317 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/23,6.702878009361779 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/31,5.17857614707333 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/24,13.668508333733314 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/23,6.702878009361779 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/31,5.17857614707333 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/24,13.668508333733314 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/03,3.3572981915384594 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/06/24,20.107658333580844 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/11,2.8325817150000017 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/06/25,2.518743700000003 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/03,3.3572981915384594 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/06/24,20.107658333580844 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/11,2.8325817150000017 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/06/25,2.518743700000003 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/04,3.849510607076658 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/03,9.835175000072503 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/27,3.111123854999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/04,3.849510607076658 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/03,9.835175000072503 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/27,3.111123854999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/05,3.753054599999992 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/27,3.600017426666663 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/04,3.9553136200474968 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/28,3.4455250000000057 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/05,3.753054599999992 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/27,3.600017426666663 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/04,3.9553136200474968 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/28,3.4455250000000057 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/10/07,3.3542151516666605 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/28,6.736325753333332 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/21,4.229261389999992 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/10/06,2.244065849999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/29,2.4785430500000016 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/10/07,3.3542151516666605 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/28,6.736325753333332 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/21,4.229261389999992 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/10/06,2.244065849999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/29,2.4785430500000016 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/11/08,9.722350626333329 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/11/07,2.448482730769228 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/11/08,9.722350626333329 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/11/07,2.448482730769228 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/12/25,21.791766666666685 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/12/25,21.791766666666685 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/04,22.05378333333335 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/04,22.05378333333335 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/19,14.87969166661916 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/03/08,14.737474999905006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/20,20.365858333238364 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/19,14.87969166661916 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/03/08,14.737474999905006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/20,20.365858333238364 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/03/23,22.348225000000006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/03/23,22.348225000000006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/04/24,8.634483336714164 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/04/24,8.634483336714164 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/06/11,8.878470825520829 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/06/11,8.878470825520829 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/06,8.622150000235006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/05,2.3958726000000024 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/06/28,4.257189186803462 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/06,8.622150000235006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/05,2.3958726000000024 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/06/28,4.257189186803462 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/07,13.3080875173325 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/29,12.875725002444987 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/22,16.27432916657165 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/06,3.113681750047501 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/30,2.9678981599999976 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/07,13.3080875173325 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/29,12.875725002444987 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/22,16.27432916657165 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/06,3.113681750047501 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/30,2.9678981599999976 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/30,3.4686750001449957 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/23,5.978024998527509 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/30,3.4686750001449957 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/23,5.978024998527509 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/10,3.3771749549999943 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/01,4.348181869999992 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/09/24,6.306700000000009 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/02,2.3845735423076904 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/09/23,13.634412500047508 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/10,3.3771749549999943 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/01,4.348181869999992 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/09/24,6.306700000000009 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/02,2.3845735423076904 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/09/23,13.634412500047508 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/11/11,6.7269431823474966 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/11/10,13.190349999999976 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/25,4.770136349999994 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/11/11,6.7269431823474966 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/11/10,13.190349999999976 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/25,4.770136349999994 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/12/04,10.139585417819198 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/05/05,4.451725000072497 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/05/29,4.518677692979876 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/05/30,5.001100000217496 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/07/09,3.335875763913332 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/07/08,13.008962500072496 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/07/01,6.974550000867497 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/06/22,6.908375000000006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/08/10,3.008793974999999 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/08/09,3.530054500047502 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/09/03,2.975575000000006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/08/25,4.021280313333328 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/10/05,2.142904499999997 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/12/07,22.76205 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/12/23,9.24768333311834 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/02/09,14.010749999952496 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/02/10,10.982666666476678 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/02/01,21.867666666666683 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/03/06,11.472424999785003 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/02/26,21.675758333333352 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/04/23,7.9934283694958435 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/05/08,5.562555331818327 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/04/22,8.369443755357496 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/06/10,16.82089999961748 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/06/09,9.10666834258082 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/07/03,8.890000000047504 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/06/26,7.414319548972494 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/08/04,15.070741692039157 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/08/05,3.716310180769225 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/07/27,3.3262340700000004 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/09/05,3.442219696666659 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/08/29,4.359795454999988 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/09/06,4.288777299999994 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/09/21,7.315812876666663 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/10/08,2.8840725500000004 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/09/29,11.284000000410002 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/10/23,11.60722167497666 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/11/09,2.3584750000000008 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/12/11,12.549683333118324 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/11/25,4.468776408653848 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/02/05,22.47810000000001 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/03/08,22.451158333333343 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/02/21,22.451158333333343 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/02/29,21.848400000000016 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/02/20,21.67155833333335 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/03/31,5.317474996497513 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/05/02,13.138025018400006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/04/25,3.7759477499999936 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/05/03,3.659871203333328 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/04/24,4.888125000072499 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/05/27,7.587941673781675 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/06/04,6.687775000362496 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/05/26,4.026503199999994 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/07/05,13.119982204252496 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/07/06,2.3761020750000013 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/08/06,8.039725002612505 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/08/07,2.521986100000001 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/07/29,11.81195833288833 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/08/31,4.09649622061417 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/09/08,10.944375000362497 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/08/23,3.768548200144992 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/10/09,4.67648415999999 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/10/10,8.49837500014249 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/09/24,9.23717500467249 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/11/10,8.439021233333326 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/10/25,8.522867800096664 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/12/29,12.923783333518326 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/01/29,24.072216666666648 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/03/02,22.30574166666668 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/04/03,13.071639999857505 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/04/04,11.094675000124994 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/03/26,16.926920836153336 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/05/06,2.416402250000004 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/06/06,8.37125416955416 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/06/07,2.645229499999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/05/29,6.0716341059975 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/06/23,7.59945000029 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/08/02,7.35140833911583 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/07/24,10.054274999199995 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/08/10,4.047379545167496 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/08/25,6.156825001279997 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/09/11,3.453090099999995 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/08/26,3.4083945 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/09/26,8.175806066666668 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/10/04,13.408749999984984 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/11/06,6.471774995610009 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/11/05,2.565300000000001 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/10/29,2.298842911538458 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/12/07,21.66638333333335 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/11/24,2.702046430769229 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/12/24,11.377766666666671 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/02/26,22.304175000000008 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/06,11.02021666786418 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/06,17.127570835733337 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/03/29,21.675758333333352 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/03/22,20.40315833323837 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/09,4.0281157613333285 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/09,2.671639100000001 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/08,7.329175002300004 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/01,3.4249337333333325 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/30,7.9563583356333245 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/23,14.785966666856664 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/22,3.751533673076919 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/31,14.865066682839169 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/25,3.130093139999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/24,13.372666667286664 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/06/29,3.6911962138883303 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/07/11,11.289058330753337 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/07/03,7.473044166834174 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/06/26,3.1762875633333283 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/06/25,2.7630641375000007 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/09/10,15.80760444453943 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/08/24,2.396145475357144 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/08/28,2.721365850000002 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/09/30,2.654285805769229 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/09/21,5.151350000289996 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/10/31,4.845540003972505 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/11/09,2.382014392307689 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/11/08,2.3912452000000006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/10/31,11.899991667066656 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/10/23,3.7893916686641655 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/12/02,2.436477250000004 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/11/24,3.3672000000000013 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/12/27,22.22352500000001 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/02/04,22.25651666666668 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/10,11.792783333238326 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/09,12.328683333238324 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/02,11.570958333238329 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/01,11.083958333333342 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/09,16.232700002322495 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/11,12.206441687366665 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/25,2.770925000000006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/31,7.342702270290002 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/26,3.1077453163333315 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/06/05,18.449916666666677 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/06/04,2.7320567500000044 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/28,3.208095459999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/27,17.635925000405 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/06/22,2.6883309081450006 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/06,3.785528430769223 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/10,16.67333333369584 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/05,4.010743199999991 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/31,2.678254499999998 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/30,12.112250005339996 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/23,3.400625000000007 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/22,2.3141250000000024 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/06,3.538666678333328 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/01,7.402631057414166 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/09,5.022950760135831 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/01,5.989775000482501 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/31,4.231944701666658 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/24,3.6534250899999936 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/23,3.132081750000001 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/28,12.998456279092496 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/10/03,2.9570652500000008 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/10/02,10.076200001222478 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/25,7.669534090167506 +Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/11/03,3.352955724999997 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/01/05,21.75304166666668 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/01/29,22.26459166666668 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/01/29,22.26459166666668 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/02/23,22.404625000000006 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/02/23,22.404625000000006 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/05,13.825700048132513 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/06,7.491575000072487 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/05,13.825700048132513 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/06,7.491575000072487 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/06/06,4.493331420332616 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/22,4.665133340233328 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/06/06,4.493331420332616 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/22,4.665133340233328 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/06/22,5.872513634692503 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/06/22,5.872513634692503 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/07/24,21.17782499991001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/10,13.69757499999999 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/01,7.343752249999999 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/07/25,5.622100000915 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/07/24,21.17782499991001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/10,13.69757499999999 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/01,7.343752249999999 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/07/25,5.622100000915 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/03,6.731470826748344 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/25,6.961043749145001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/11,2.714419375000001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/02,8.6881250005075 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/03,6.731470826748344 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/25,6.961043749145001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/11,2.714419375000001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/02,8.6881250005075 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/10/05,14.579800014065007 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/26,4.802355318021972 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/10/04,3.492747589999999 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/27,3.3150828659340648 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/10/05,14.579800014065007 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/26,4.802355318021972 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/10/04,3.492747589999999 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/27,3.3150828659340648 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/05,2.9427000000000043 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/05,2.9427000000000043 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/29,6.912529539999991 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/22,10.832025040722504 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/29,6.912529539999991 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/22,10.832025040722504 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/01/08,21.66638333333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/01/08,21.66638333333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/01/24,21.77565833333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/01/24,21.77565833333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/03/05,21.66638333333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/03/05,21.66638333333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/05,9.543703367495828 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/05,9.543703367495828 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/07,6.4820625848677365 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/30,7.510977284999996 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/21,5.828899871333327 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/29,4.3989750000724985 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/07,6.4820625848677365 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/30,7.510977284999996 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/21,5.828899871333327 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/29,4.3989750000724985 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/23,9.069577795104156 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/31,8.157745079814168 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/24,4.580462767999991 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/23,9.069577795104156 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/31,8.157745079814168 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/24,4.580462767999991 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/03,8.903124999952501 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/06/24,4.462929172969169 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/11,3.6882295 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/06/25,6.483725000095001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/03,8.903124999952501 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/06/24,4.462929172969169 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/11,3.6882295 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/06/25,6.483725000095001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/11,9.988700017087492 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/04,3.920863461610956 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/03,2.5996770000000016 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/27,3.4115093307692264 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/11,9.988700017087492 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/04,3.920863461610956 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/03,2.5996770000000016 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/27,3.4115093307692264 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/05,4.967063649999994 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/27,7.233075001512499 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/04,8.879825000047509 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/28,3.1078772500000054 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/05,4.967063649999994 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/27,7.233075001512499 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/04,8.879825000047509 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/28,3.1078772500000054 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/07,6.578618943333331 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/28,18.482783344833333 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/21,13.45065833810084 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/06,3.682190711538464 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/29,3.4317908249999967 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/07,6.578618943333331 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/28,18.482783344833333 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/21,13.45065833810084 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/06,3.682190711538464 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/29,3.4317908249999967 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/11/08,4.089137168333327 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/23,9.377987780100264 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/11/07,2.5646629932692293 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/11/08,4.089137168333327 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/23,9.377987780100264 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/11/07,2.5646629932692293 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/12/09,21.77565833333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/12/09,21.77565833333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/12/25,21.867666666666683 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/12/25,21.867666666666683 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/03/08,14.767999999905005 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/02/20,15.281924999905009 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/03/08,14.767999999905005 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/02/20,15.281924999905009 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/04/24,13.79220836093334 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/05/11,2.943456749999998 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/04/25,4.439024999999994 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/04/24,13.79220836093334 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/05/11,2.943456749999998 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/04/25,4.439024999999994 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/06/11,6.991391661371665 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/06/11,6.991391661371665 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/06,8.989962492272497 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/05,2.369974950000001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/06,8.989962492272497 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/05,2.369974950000001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/29,9.090268758879995 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/22,15.960200002157483 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/06,6.022500449999998 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/30,3.0021557625 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/29,9.090268758879995 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/22,15.960200002157483 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/06,6.022500449999998 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/30,3.0021557625 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/30,3.7802090901449934 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/23,2.728455319178332 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/30,3.7802090901449934 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/23,2.728455319178332 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/10,7.971746241739168 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/01,2.903069706666664 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/09/24,7.200445450000011 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/02,2.81975068076923 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/09/23,5.376150000000004 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/10,7.971746241739168 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/01,2.903069706666664 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/09/24,7.200445450000011 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/02,2.81975068076923 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/09/23,5.376150000000004 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/11/11,9.790816666666682 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/11/10,3.3725795000000023 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/25,9.588052299999989 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/11/11,9.790816666666682 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/11/10,3.3725795000000023 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/25,9.588052299999989 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/12/28,21.867666666666683 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/01/29,7.912525000185003 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/05/05,8.267033341383325 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/04/28,8.062224999690011 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/05/29,4.717170878030711 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/05/30,4.5260749999999925 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/07/09,3.4251969768841635 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/06/30,18.395041666666668 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/07/01,8.408508333930826 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/06/22,2.35512495 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/08/10,4.068326506666656 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/08/09,10.978775000000008 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/08/02,12.565174999354983 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/08/25,6.411904535 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/10/05,3.255261300000001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/12/07,22.00959166666668 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/11/22,22.884825000000006 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/02/10,11.219341666571676 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/01/25,23.1518 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/03/06,11.242141667251673 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/02/26,12.8044749997375 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/04/23,12.800300018137497 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/05/08,4.789525000072498 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/04/22,11.09538335912834 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/06/10,19.154608332673323 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/06/01,10.474875000000008 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/06/09,2.7721770500000016 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/07/03,13.031690000265 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/08/04,8.846146217760836 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/08/05,4.656959089999992 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/07/27,4.04140000014499 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/09/05,3.650718953333328 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/08/29,3.1421000001425 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/09/06,2.4242974500000027 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/09/21,7.860257573333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/10/08,5.483104539999995 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/09/29,4.176358336238332 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/11/01,4.070962499195004 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/10/23,6.200770828140841 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/11/09,3.4461000000000066 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/11/25,8.183725173940273 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/02/05,22.674233333333337 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/02/21,11.721891665591665 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/02/29,21.88613333333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/02/20,22.09913333333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/04/01,17.356950000405007 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/05/02,8.142097739999999 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/04/25,7.410812130047496 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/05/03,6.454591672101651 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/05/27,5.08358334776084 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/06/11,4.306038461610962 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/06/04,11.966775004599985 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/05/26,3.4257249999999977 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/07/06,3.8245634913333264 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/06,18.125191673566672 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/07/30,4.393292053372503 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/07,13.08865833311832 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/31,14.487937500095002 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/22,10.272308345195825 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/23,13.43462500023999 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/10/09,7.649732588333337 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/09/23,7.828387504432504 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/10/10,11.623625002347492 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/11/10,9.698578682380957 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/10/25,18.217508335798343 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/12/29,21.856800000000018 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/01/29,22.47810000000001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/02/06,21.867666666666683 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/01/30,21.848400000000016 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/03/11,24.44116666666665 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/03/02,22.26459166666668 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/04/03,12.452514585775823 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/03/26,8.797249999894994 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/05/06,5.311034100000001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/06/06,12.447400004839992 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/06/07,3.934796213333323 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/05/29,3.854279169889164 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/06/23,2.6561727500000014 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/07/24,15.627058333570824 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/08/10,9.072509090382503 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/07/25,8.729500000362497 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/08/25,12.224342082573342 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/09/11,4.539868194999992 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/08/26,2.767002250000005 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/09/26,12.366783377033345 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/11/06,5.7735727102174925 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/10/28,6.122974997115009 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/11/05,3.532950000000008 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/10/29,2.491256097664833 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/11/24,2.296481749999998 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/12/24,24.44116666666665 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/01/08,21.856800000000018 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/12/23,21.88613333333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/02/01,22.404625000000006 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/01/24,21.866400000000016 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/02/26,22.171183333333342 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/04/06,8.853849999667514 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/04/06,20.9342750115 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/03/29,21.66638333333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/09,3.368942574999998 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/08,3.719699102999996 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/01,3.911130184666661 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/04/30,5.509741672479157 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/31,6.380058335343332 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/26,8.327774990202494 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/06/10,4.1223317500475005 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/25,3.7382363499999935 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/24,5.647904167886664 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/04,20.102374999569975 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/06/29,3.446763639999997 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/11,17.247049999835006 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/03,5.982651895009169 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/06/26,3.8324940999999946 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/06/25,2.949912525 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/08/07,8.580225000072506 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/08/05,2.628700000047498 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/28,3.205309 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/27,3.550520316333326 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/10,21.52523333390332 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/08/28,2.7828158500000004 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/22,3.959689398333328 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/30,2.562363055769228 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/29,3.4692249999999984 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/21,3.792224999999998 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/10/31,13.167216700641667 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/10/26,20.56347500074 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/11/09,3.571699267857142 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/11/08,3.1352500001925 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/10/24,2.7730884400000004 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/12/10,15.490647725 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/12/02,16.558941666836656 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/11/24,21.77565833333335 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/12/27,22.29457500000001 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/02/04,22.25651666666668 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/10,10.435258333238323 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/09,10.72284166657166 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/02,13.03784166657166 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/01,12.702083333285827 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/09,13.826791666666672 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/11,10.29313333598082 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/25,13.094174999999984 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/31,9.107427270072504 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/26,3.520159694884165 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/06/05,12.785591669039164 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/28,4.574235606666669 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/27,22.494925 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/06/22,3.452786979739165 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/07/06,7.051625000120011 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/06/21,7.374259000000004 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/10,14.495175000072477 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/05,4.149186350144992 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/07/31,2.6980750000000047 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/07/30,3.1510658750000027 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/07/23,3.378229604999995 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/06,9.19701515333333 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/01,18.48010000014501 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/09,12.179216666976664 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/01,3.928275000797494 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/31,4.352992436666658 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/24,4.034993690144994 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/23,2.2979249499999987 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/10/03,12.240220001099994 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/28,10.085304167569165 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/10/03,11.929600000192504 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/10/02,11.977925000072505 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/25,6.0737750006275055 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/11/03,3.8399333416666663 +Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/11/28,3.163709 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/01/05,21.791766666666685 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/03/10,21.791766666666685 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/02/22,21.750616666666684 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/03/10,21.791766666666685 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/02/22,21.750616666666684 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/05,12.45480000000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/06,4.5456000000725005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/05,12.45480000000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/06,4.5456000000725005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/06/06,8.173762497707507 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/30,3.639150000502498 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/29,2.7148022500000053 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/06/06,8.173762497707507 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/30,3.639150000502498 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/29,2.7148022500000053 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/08,10.699200000045 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/06/22,7.131264999427498 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/08,10.699200000045 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/06/22,7.131264999427498 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/09,3.385687943333332 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/02,15.210666666604157 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/24,17.38614166666666 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/10,3.0808636000000003 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/01,3.5260750000000045 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/25,4.439577250000005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/09,3.385687943333332 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/02,15.210666666604157 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/24,17.38614166666666 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/10,3.0808636000000003 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/01,3.5260750000000045 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/25,4.439577250000005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/25,8.636852324297497 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/11,3.645799330769224 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/25,8.636852324297497 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/11,3.645799330769224 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/10/05,12.657298116705832 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/26,3.807830079999993 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/10/04,2.6238272000000022 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/27,2.7287189182692297 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/10/05,12.657298116705832 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/26,3.807830079999993 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/10/04,2.6238272000000022 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/27,2.7287189182692297 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/05,13.83038333361833 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/05,13.83038333361833 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/12/08,14.834906250145009 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/29,9.690940032380944 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/22,10.91728638146249 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/21,13.169708333533327 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/12/08,14.834906250145009 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/29,9.690940032380944 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/22,10.91728638146249 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/21,13.169708333533327 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/01/24,21.675758333333352 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/01/24,21.675758333333352 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/03/05,12.946783333238336 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/03/05,12.946783333238336 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/05,3.5957641009999946 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/03/29,7.456875002585007 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/05,3.5957641009999946 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/03/29,7.456875002585007 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/07,3.957191042005237 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/30,4.6013431899999935 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/21,7.295234107372498 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/29,12.709250000262497 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/22,3.3329432 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/07,3.957191042005237 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/30,4.6013431899999935 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/21,7.295234107372498 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/29,12.709250000262497 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/22,3.3329432 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/23,9.181915027541065 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/31,3.854029174721665 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/24,3.1351613500000006 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/23,9.181915027541065 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/31,3.854029174721665 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/24,3.1351613500000006 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/03,6.828753035778338 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/06/24,5.185723105708335 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/11,2.9544044999999994 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/06/25,2.5010821057692305 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/03,6.828753035778338 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/06/24,5.185723105708335 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/11,2.9544044999999994 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/06/25,2.5010821057692305 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/11,3.121815935434997 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/04,3.0071606 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/26,7.700802089428326 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/03,2.838329490000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/27,3.0642398524999988 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/11,3.121815935434997 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/04,3.0071606 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/26,7.700802089428326 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/03,2.838329490000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/27,3.0642398524999988 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/05,3.621745278205126 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/27,2.710195576831504 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/04,2.5600068000000005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/05,3.621745278205126 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/27,2.710195576831504 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/04,2.5600068000000005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/07,3.20720016366666 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/28,8.441850010000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/21,3.0950932100724997 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/06,2.64751220576923 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/29,3.0579453749999965 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/07,3.20720016366666 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/28,8.441850010000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/21,3.0950932100724997 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/06,2.64751220576923 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/29,3.0579453749999965 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/11/08,5.635722037714279 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/23,6.75339999754501 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/11/07,3.081192874038461 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/11/08,5.635722037714279 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/23,6.75339999754501 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/11/07,3.081192874038461 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/10,5.651925000200007 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/09,2.523602250000003 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/10,5.651925000200007 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/09,2.523602250000003 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/25,12.900258332855833 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/25,12.900258332855833 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/03,10.000733333118344 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/03,10.000733333118344 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/28,10.936099999762494 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/19,9.275500001384998 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/03/08,11.488879166619164 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/20,15.410674999905009 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/28,10.936099999762494 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/19,9.275500001384998 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/03/08,11.488879166619164 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/20,15.410674999905009 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/03/23,22.26459166666668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/03/23,22.26459166666668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/04/24,6.956681066666662 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/05/11,2.2238045000000017 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/04/24,6.956681066666662 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/05/11,2.2238045000000017 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/06/11,5.599670296361668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/05/27,4.722952300119992 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/06/11,5.599670296361668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/05/27,4.722952300119992 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/06,7.859700001567503 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/05,4.434150000000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/06,7.859700001567503 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/05,4.434150000000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/29,7.965943754232499 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/22,16.567933334090828 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/30,2.7672458807692317 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/29,7.965943754232499 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/22,16.567933334090828 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/30,2.7672458807692317 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/08/30,3.8105590999999897 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/08/23,8.76955416618917 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/08/30,3.8105590999999897 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/08/23,8.76955416618917 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/10,8.158414428478329 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/01,3.961719766666657 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/09/24,7.956796213405837 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/02,2.8313349182692304 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/09/23,4.4619500000724965 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/10,8.158414428478329 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/01,3.961719766666657 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/09/24,7.956796213405837 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/02,2.8313349182692304 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/09/23,4.4619500000724965 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/11/11,3.9429236119999977 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/11/10,2.6611081500000013 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/25,3.471138500000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/11/11,3.9429236119999977 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/11/10,2.6611081500000013 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/25,3.471138500000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/12/04,3.1575729167116715 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/12/28,21.856800000000018 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/04/11,21.955966666666672 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/05/05,10.876550000000003 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/04/28,9.64982499911 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/05/29,4.3341481226241685 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/05/30,3.826324999999997 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/07/09,4.655434306666652 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/06/30,8.147912494099996 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/07/08,11.815741667239164 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/06/22,3.226705293269231 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/08/10,3.2314918748717947 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/08/09,2.57305225 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/09/03,2.8804045000000054 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/08/25,6.592233336830828 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/10/05,2.492458455769229 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/12/07,5.511074997590006 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/11/22,3.0284750000000047 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/02/10,13.133333333070832 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/02/26,22.09913333333335 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/04/23,6.0451083367616665 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/05/08,7.532108337980821 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/04/22,4.334647724999999 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/06/10,18.492550000000005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/06/01,12.253099999784997 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/06/09,2.5821134500000005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/07/03,4.794433376942745 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/07/04,11.002508333380815 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/08/04,13.978116682239158 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/07/28,6.886895830413352 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/08/05,2.6109636500000017 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/07/27,4.998825000072492 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/09/05,5.111924537435891 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/09/06,3.081625094102564 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/09/21,7.159514393333332 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/10/08,2.62335675 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/09/29,3.820069706394166 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/11/08,5.022474998900014 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/10/23,8.315595830098344 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/11/09,5.453150000290001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/12/11,12.32407501027 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/11/25,3.788761745192306 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/02/05,22.373925000000007 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/03/08,14.598508333333328 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/03/07,21.675758333333352 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/02/29,21.919450000000012 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/02/20,21.88613333333335 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/04/01,3.0635000000000074 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/05/02,18.99106669426668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/04/25,5.295545479999994 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/05/03,4.382650029999994 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/05/27,3.3427589513333285 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/06/11,2.650825000000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/06/04,2.7428750000000046 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/05/26,2.7499845000000023 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/07/05,12.04829999843 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/06/28,8.12553374849252 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/07/06,2.5314088500000027 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/06,3.1357211749999987 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/07/30,3.140104049102563 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/07,3.129749485576923 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/31,2.8332411333333334 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/22,3.712139026483334 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/30,4.592900000047496 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/23,2.619646975000003 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/10/09,4.637943259999991 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/09/23,5.185137915304171 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/10/10,11.61524166839166 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/09/24,14.668150000214991 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/11/10,4.709064449380947 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/11/03,15.003512918461688 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/10/25,11.219225021950008 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/12/29,4.263645316346154 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/01/29,22.76205 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/03/02,22.407050000000005 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/04/03,15.278816692256678 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/03/26,16.720314584303356 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/05/06,4.987425000167497 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/06/06,14.444575018400004 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/06/07,14.12027500033748 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/05/29,5.199393567762493 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/06/23,3.3236213919230746 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/07/24,17.01762083319081 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/08/10,6.304909090094998 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/07/25,9.010750000072498 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/08/25,12.821691671894175 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/09/11,3.6151295000000023 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/08/26,3.926917446153847 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/09/26,6.776202270000002 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/06,6.06889999452001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/10/28,7.02442499863501 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/05,2.278487750000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/10/29,3.3357689423076926 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/29,5.621211819230762 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/24,2.935757668269229 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/21,2.543417625000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/12/24,11.465750000000003 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/02/01,22.47810000000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/01/25,22.539900000000006 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/02/26,22.18061666666668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/06,6.820245829410835 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/06,12.73514356694751 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/03/29,21.791766666666685 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/03/22,15.652589583500838 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/09,2.4893498000000007 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/08,5.503125000072495 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/01,2.80638684 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/30,10.982475 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/23,3.5806272500000045 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/22,4.397421218525834 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/31,10.762862500407488 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/26,12.254783338410828 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/25,2.8701545000000004 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/24,5.432500000434991 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/04,3.41114394391333 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/06/29,3.3080137399999963 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/04,2.801855250047502 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/03,7.035004169219154 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/06/26,4.3081 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/06/25,2.426074790000001 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/28,3.302819762948717 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/27,2.709652250000006 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/09/10,2.5907469666666687 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/08/24,9.954943714883576 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/08/28,7.4866290000000015 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/09/22,6.755205304874165 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/08,3.117025000000008 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/09/30,3.522746669871796 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/09/21,3.3556772500000016 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/31,6.531304168676669 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/26,10.003125000000018 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/11/09,3.252110274038462 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/11/08,2.126279374999997 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/24,3.1282512826923043 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/23,11.058525000199984 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/12/10,2.3725952999999995 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/12/02,2.7067317499999985 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/11/24,3.33065558076923 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/12/27,3.702315267307691 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/02/04,22.29766666666668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/04/10,23.92948125059002 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/04/09,10.675524999904992 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/04/02,11.619433333238328 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/09,16.88396666666668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/11,11.38140000689999 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/31,3.098575614666665 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/26,3.438389997999997 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/06/05,12.689866669039176 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/06/04,3.019200000000002 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/28,4.005381820072502 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/27,22.51129166666668 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/06/22,3.053173483623332 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/07/06,2.1692529133333345 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/06/21,4.481936269999999 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/05,3.7088948634058263 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/07/30,3.806275000000007 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/07/22,3.0872407499999976 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/06,3.675693933333327 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/01,7.370586361012504 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/27,7.620137499762515 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/09,12.762199999999984 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/01,5.905700000505002 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/31,4.231437123333324 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/24,7.234934091207507 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/23,2.677760705769231 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/10/03,6.817208322860843 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/28,11.607539593455826 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/10/03,5.597948978256548 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/10/02,3.0743049649999987 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/25,7.787575000650011 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/11/03,3.490358316666664 +Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/11/28,3.0202987499999976 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/01/05,11.057450000000006 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2014/12/29,11.017841667051671 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/01/29,22.351800000000008 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/01/29,22.351800000000008 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/03/11,22.32207499935501 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/03/10,21.791766666666685 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/02/22,21.75304166666668 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/03/11,22.32207499935501 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/03/10,21.791766666666685 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/02/22,21.75304166666668 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/05,10.968912507814997 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/06,11.88355835180584 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/05,10.968912507814997 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/06,11.88355835180584 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/06,8.26571083218834 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/30,13.395733334875851 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/07,16.510650000784988 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/29,18.375458333333324 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/22,2.979929500000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/06,8.26571083218834 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/30,13.395733334875851 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/07,16.510650000784988 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/29,18.375458333333324 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/22,2.979929500000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/22,13.545304168146664 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/22,13.545304168146664 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/09,14.606716691966678 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/07/24,3.932960618344164 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/10,2.356701825 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/01,10.312183367833333 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/07/25,5.738175000962498 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/09,14.606716691966678 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/07/24,3.932960618344164 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/10,2.356701825 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/01,10.312183367833333 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/07/25,5.738175000962498 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/03,7.860195824323338 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/25,7.262990146929168 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/11,3.525050000000008 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/02,6.703104925097491 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/03,7.860195824323338 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/25,7.262990146929168 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/11,3.525050000000008 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/02,6.703104925097491 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/10/05,7.812250000025 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/26,3.4302150599999948 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/10/04,4.0878000082425 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/27,2.3203726298076903 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/10/05,7.812250000025 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/26,3.4302150599999948 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/10/04,4.0878000082425 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/27,2.3203726298076903 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/05,2.570954500000003 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/05,2.570954500000003 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/12/08,6.716999995810012 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/29,14.714058337858344 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/22,11.67775750215002 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/12/08,6.716999995810012 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/29,14.714058337858344 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/22,11.67775750215002 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/01/08,21.66638333333335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/01/08,21.66638333333335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/01/24,21.67155833333335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/01/24,21.67155833333335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/02/26,22.674233333333337 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/03/05,13.309949999522496 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/02/26,22.674233333333337 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/03/05,13.309949999522496 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/05,7.530805159666667 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/03/29,7.915448332500853 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/05,7.530805159666667 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/03/29,7.915448332500853 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/07,7.606969716666663 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/30,3.6252697016666606 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/21,3.767356076666661 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/29,5.986835000047491 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/07,7.606969716666663 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/30,3.6252697016666606 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/21,3.767356076666661 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/29,5.986835000047491 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/23,13.206808345028335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/31,4.953121622940001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/24,5.7565041754791695 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/23,13.206808345028335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/31,4.953121622940001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/24,5.7565041754791695 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/03,3.524504609999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/06/24,4.033578798478327 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/11,3.643300000072492 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/06/25,2.257429425000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/03,3.524504609999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/06/24,4.033578798478327 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/11,3.643300000072492 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/06/25,2.257429425000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/11,4.960156073333325 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/04,3.9329090999999927 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/03,2.290601937500002 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/27,4.486051424999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/11,4.960156073333325 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/04,3.9329090999999927 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/03,2.290601937500002 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/27,4.486051424999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/05,3.250828699999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/27,3.44103723230769 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/04,9.62052500000002 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/28,2.525825000000004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/05,3.250828699999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/27,3.44103723230769 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/04,9.62052500000002 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/28,2.525825000000004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/07,8.310976506666659 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/28,16.03504166666668 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/21,2.9735581949999976 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/06,2.428223680769228 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/29,6.1550568799999965 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/07,8.310976506666659 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/28,16.03504166666668 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/21,2.9735581949999976 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/06,2.428223680769228 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/29,6.1550568799999965 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/11/08,4.408873360714278 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/23,3.475876168556069 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/11/07,2.516858393269229 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/11/08,4.408873360714278 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/23,3.475876168556069 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/11/07,2.516858393269229 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/12/10,22.674233333333337 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/12/10,22.674233333333337 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/02/19,22.373925000000007 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/02/20,13.897549999904998 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/02/19,22.373925000000007 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/02/20,13.897549999904998 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/03/23,22.26459166666668 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/03/23,22.26459166666668 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/04/24,8.171667431666664 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/05/11,2.701145400000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/04/25,21.66638333333335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/04/24,8.171667431666664 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/05/11,2.701145400000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/04/25,21.66638333333335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/06/11,7.2432219681033265 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/06/11,7.2432219681033265 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/05,3.06785815 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/06/28,20.922900000094977 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/05,3.06785815 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/06/28,20.922900000094977 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/29,3.906802275144993 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/30,2.284365625000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/29,3.906802275144993 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/30,2.284365625000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/08/30,3.411372750072498 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/08/31,4.544275000072492 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/08/30,3.411372750072498 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/08/31,4.544275000072492 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/10,8.77674697166667 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/01,4.229433985714279 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/09/24,3.131076506739161 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/02,2.3675030673076893 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/09/23,7.0320500001424975 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/10,8.77674697166667 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/01,4.229433985714279 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/09/24,3.131076506739161 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/02,2.3675030673076893 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/09/23,7.0320500001424975 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/11/11,3.360429688666664 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/11/10,22.86025833287333 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/25,5.79219398333333 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/11/11,3.360429688666664 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/11/10,22.86025833287333 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/25,5.79219398333333 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/12/04,8.228681666009187 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/05/05,10.592008370133335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/04/28,10.81438333319084 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/05/29,4.861888415869281 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/05/30,3.5634250000724963 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/07/09,5.638199246811669 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/06/30,14.510758333568356 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/07/08,13.643112500072498 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/07/01,7.696500000384989 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/06/22,2.668403650000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/08/10,3.442867349999995 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/08/09,3.4392250000000057 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/09/03,3.2488294999999976 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/08/25,5.513021917999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/09/27,8.161387494080007 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/10/05,3.307518574999999 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/11/22,21.663008333333355 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/02/10,11.250041666571674 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/01/25,11.815449999857504 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/02/26,21.75304166666668 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/04/23,13.33462642020998 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/05/08,3.92267501 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/04/22,10.771849472698332 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/06/09,2.7320468000000004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/07/03,13.229208335730853 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/08/04,16.82495000000003 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/08/05,2.0140634375000004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/07/27,8.956550000000007 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/09/05,3.490862876666659 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/08/29,7.649037502274996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/09/06,4.139754534999995 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/09/21,6.82338939333333 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/10/08,5.619472749999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/09/29,12.830516666666655 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/11/01,10.154830836023349 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/10/23,7.81501665985667 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/12/11,17.444566666359197 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/02/21,22.539900000000006 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/03/07,21.88613333333335 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/03/31,7.115966665931674 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/04/01,4.215385855769229 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/05/02,13.844950032200018 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/04/25,5.455550014999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/05/03,4.8935309179999935 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/04/24,4.263116674195829 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/05/27,3.4830841000724924 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/05/26,3.306899413333326 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/07/05,17.09589166647666 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/07/06,3.976350549999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/06,20.99460833364333 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/07,2.354091227500002 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/31,2.5214220000000007 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/22,4.218876180493215 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/23,8.474302270072503 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/10/09,4.9753341599999885 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/09/23,12.989816767226673 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/10/10,13.06975833363334 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/11/10,4.85803565771428 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/10/25,11.11151917164665 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/01/29,23.026316666666663 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/02/06,11.346783333238342 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/03/02,22.47810000000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/05/06,3.489620894999997 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/06/06,11.231612500239995 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/06/07,4.174741666666663 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/05/29,22.30125000060001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/06/23,2.7913999999999985 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/08/02,4.118214997605006 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/07/24,12.232775000855009 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/08/10,8.234802270000007 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/07/25,5.649700000047493 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/08/25,4.719433334775837 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/09/11,3.417224999999998 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/08/26,3.786031749999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/11/06,4.4644863904541685 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/11/05,2.4181702900000004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/10/29,2.343973555769228 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/11/24,7.41681446153847 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/11/21,3.1838604899999963 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/12/24,23.59424999999999 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/12/23,2.9757022500475028 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/02/26,22.863891666666667 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/04/06,9.294599999915022 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/04/06,13.4331062533325 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/03/29,21.750616666666684 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/09,4.860225019999991 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/09,3.138232625 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/08,10.735891679544157 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/01,3.0212981 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/04/30,4.754734100000001 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/04/23,21.647991666836656 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/26,15.437845832903326 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/25,4.409090909999992 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/24,6.097250000574999 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/07/04,13.539025016432497 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/06/29,4.58618864999999 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/07/04,2.740502250000006 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/07/03,11.81992500012 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/06/26,4.025637123333326 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/06/25,4.239982593333329 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/08/07,4.304886494241074 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/07/28,3.176943288076922 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/10,11.207793180675004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/08/24,16.28699583418835 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/08/28,3.030180929395602 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/22,6.759599991450012 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/10/08,2.991025000000004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/30,2.223374824999998 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/29,3.447641461538461 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/21,5.96115 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/10/31,5.796926785557734 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/11/09,2.662090960164835 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/11/08,2.033106699999996 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/10/24,6.151550001484988 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/12/10,2.9409816500000017 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/12/02,7.479525001059987 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/11/24,4.84262725 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/12/27,11.101125000385004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/02/04,22.274983333333346 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/04/10,12.534783333285825 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/04/09,11.430683333238326 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/04/02,11.403958333238329 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/04/01,20.392008333238365 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/09,13.785308333333344 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/11,17.371166666666667 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/31,3.922828638217494 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/26,3.3302922679999964 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/06/05,17.468295834903337 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/28,6.411875000190004 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/27,10.131300000332498 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/06/22,2.949237728362498 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/07/06,4.081093199999994 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/06/21,3.364081749999999 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/10,17.31904999985749 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/05,2.762384853333332 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/07/31,6.997650000362497 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/07/22,3.3834000000000075 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/06,7.658624243333334 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/01,7.103287877196666 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/27,6.639424992800013 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/09,13.685000000399986 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/01,4.977404169711664 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/31,3.8838795699999946 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/24,14.49500000095499 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/23,2.267522699999998 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/28,14.145695918743336 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/23,6.553339780465 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/10/03,14.57385000007249 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/10/02,4.216899002499993 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/25,26.282841666666663 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/11/03,5.498056859999991 +Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/11/28,3.013704500000005 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2014/12/29,10.426750759054164 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/07,22.348225000000006 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/06,21.88613333333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/07,22.348225000000006 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/06,21.88613333333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/03/02,22.373925000000007 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/23,22.373925000000007 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/03/10,21.67155833333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/22,10.747641666451672 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/03/02,22.373925000000007 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/23,22.373925000000007 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/03/10,21.67155833333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/22,10.747641666451672 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/05,7.609974999785006 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/06,13.55215001828253 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/05,7.609974999785006 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/06,13.55215001828253 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/06,7.757137495462502 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/30,7.813799995162506 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/07,17.36050833333331 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/29,20.345658331683357 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/22,2.584754500047502 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/06,7.757137495462502 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/30,7.813799995162506 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/07,17.36050833333331 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/29,20.345658331683357 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/22,2.584754500047502 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/08,9.029724990850005 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/22,5.108039847117731 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/08,9.029724990850005 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/22,5.108039847117731 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/09,2.465490199999999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/24,12.102525001560004 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/10,3.563298299999992 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/01,5.407575000072497 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/25,13.710516676659164 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/09,2.465490199999999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/24,12.102525001560004 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/10,3.563298299999992 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/01,5.407575000072497 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/25,13.710516676659164 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/03,6.39878561113667 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/11,3.22620675 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/02,13.142750000072509 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/03,6.39878561113667 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/11,3.22620675 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/02,13.142750000072509 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/10/05,4.575633939664165 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/26,3.724368169999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/10/04,5.485723297789051 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/27,6.184982398205121 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/10/05,4.575633939664165 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/26,3.724368169999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/10/04,5.485723297789051 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/27,6.184982398205121 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/05,7.163550000072502 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/05,7.163550000072502 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/12/08,3.787542436811665 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/29,4.784276526856669 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/22,3.469739162129163 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/12/07,3.556582500095004 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/12/08,3.787542436811665 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/29,4.784276526856669 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/22,3.469739162129163 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/12/07,3.556582500095004 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/02/26,22.659766666666677 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/03/05,10.223024999427508 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/02/26,22.659766666666677 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/03/05,10.223024999427508 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/05,10.193359099999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/05,10.193359099999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/07,7.094090275659408 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/30,3.3029403103333324 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/21,7.508739399999999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/29,10.385050000072509 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/22,3.654444230769232 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/07,7.094090275659408 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/30,3.3029403103333324 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/21,7.508739399999999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/29,10.385050000072509 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/22,3.654444230769232 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/23,4.198083333638333 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/31,6.254208346981663 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/24,2.6449978399999985 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/23,4.198083333638333 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/31,6.254208346981663 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/24,2.6449978399999985 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/03,3.930406822635 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/06/24,5.998444703167503 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/11,4.344250001014995 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/06/25,3.471310414102561 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/03,3.930406822635 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/06/24,5.998444703167503 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/11,4.344250001014995 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/06/25,3.471310414102561 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/11,5.18512500503 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/04,2.702109089999999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/03,3.678072880769225 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/27,4.549761530769223 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/11,5.18512500503 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/04,2.702109089999999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/03,3.678072880769225 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/27,4.549761530769223 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/05,2.954624099999996 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/27,2.928171505769229 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/04,11.532408333380843 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/28,8.354425000217496 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/05,2.954624099999996 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/27,2.928171505769229 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/04,11.532408333380843 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/28,8.354425000217496 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/07,8.77610973904761 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/28,10.297808329405832 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/21,3.31398759433333 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/06,4.928448747435897 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/29,5.166505600769227 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/07,8.77610973904761 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/28,10.297808329405832 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/21,3.31398759433333 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/06,4.928448747435897 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/29,5.166505600769227 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/11/08,8.78026057855082 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/23,10.583880245877726 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/11/07,3.135874855769229 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/11/08,8.78026057855082 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/23,10.583880245877726 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/11/07,3.135874855769229 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/12/10,9.233066666201692 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/12/10,9.233066666201692 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/01/02,22.407050000000005 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/12/25,21.75304166666668 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/01/02,22.407050000000005 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/12/25,21.75304166666668 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/04,21.919450000000012 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/04,21.919450000000012 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/19,21.091983333190857 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/03/08,15.753575000952512 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/20,15.013224999905008 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/19,21.091983333190857 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/03/08,15.753575000952512 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/20,15.013224999905008 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/03/23,22.26459166666668 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/03/23,22.26459166666668 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/04/24,14.09923333563335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/05/11,14.327441667151666 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/04/24,14.09923333563335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/05/11,14.327441667151666 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/06/11,7.695116663299173 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/05/27,3.0667272500000053 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/06/11,7.695116663299173 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/05/27,3.0667272500000053 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/05,3.3817854499999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/06/28,12.424699999999987 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/05,3.3817854499999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/06/28,12.424699999999987 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/29,7.715475000120008 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/22,8.644860833428346 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/30,2.588198193269231 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/29,7.715475000120008 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/22,8.644860833428346 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/30,2.588198193269231 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/08/30,3.558693189999998 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/08/31,3.2601500000000025 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/08/30,3.558693189999998 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/08/31,3.2601500000000025 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/10,23.18283821063944 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/01,3.838935001999991 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/09/24,4.849825758966674 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/02,3.5776532846153817 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/09/23,5.411210606666674 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/10,23.18283821063944 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/01,3.838935001999991 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/09/24,4.849825758966674 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/02,3.5776532846153817 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/09/23,5.411210606666674 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/11,8.642750645714266 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/10,2.8206500000000028 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/25,4.378574999999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/11,8.642750645714266 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/10,2.8206500000000028 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/25,4.378574999999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/12/04,4.723897161857508 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/27,6.103374996270009 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/05/05,4.543712128133326 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/06/07,7.135004169701671 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/05/29,5.839011966015835 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/05/30,5.7847250001925055 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/07/09,3.752145454999991 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/06/30,8.232774999355 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/07/08,6.001789409394167 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/07/01,6.127184092096661 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/06/22,2.2724021 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/08/10,3.364770599999996 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/08/09,7.375100000000009 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/09/03,3.239850000000009 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/08/25,3.2334475783333265 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/10/05,4.64751531533333 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/11/22,21.66638333333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/12/23,10.504633333333349 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/02/09,14.01151666834416 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/02/10,12.60705416803166 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/01/25,21.838800000000013 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/03/06,11.543858332658331 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/04/23,8.147416669441661 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/05/08,9.884116675866656 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/04/22,6.295050000000003 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/06/01,10.627750000585008 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/06/09,2.326054200000002 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/07/03,6.111484662045001 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/06/26,4.663450000120001 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/08/04,13.824775000287516 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/07/28,6.132810626428335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/08/05,3.4364945549999946 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/07/27,4.828225000144995 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/09/05,3.105556056666664 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/08/29,8.710701437306074 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/09/06,4.522543174999996 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/09/21,14.33848333568084 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/10/08,3.916411399999999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/10/23,5.433603408295004 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/12/11,9.182729166101687 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/11/25,3.923425000000007 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/02/05,22.337341666666678 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/03/08,22.451158333333343 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/02/21,22.658500000000007 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/03/07,21.88613333333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/02/29,21.867666666666683 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/03/31,6.464266666666672 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/05/02,7.191916673254164 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/04/25,8.685191663333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/05/03,3.337825000000005 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/04/24,4.12470833928583 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/05/27,4.178736212999994 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/05/26,3.0744809199999974 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/07/05,5.104251902456666 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/06/28,2.6671500003799986 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/07/06,2.533392686538461 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/06,4.107564885522383 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/07,5.27652725 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/31,2.0693249999999983 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/22,3.255795475144998 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/30,2.7914998200000007 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/23,5.318668189999994 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/10/09,9.489249132380936 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/09/23,6.73737083173334 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/10/10,6.722004167121659 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/11/10,3.844028188956664 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/10/25,10.905013335130825 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/12/29,21.88613333333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/01/29,11.78734166666667 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/02/06,12.698233335743344 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/01/30,21.88613333333335 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/03/02,22.404625000000006 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/04/03,22.451158333333343 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/03/27,22.337341666666678 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/05/06,3.008205500000001 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/06/06,9.706400386179173 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/06/07,9.87170000815 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/05/29,12.358375000072476 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/06/23,2.5584022500000048 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/08/02,6.819855846683338 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/08/10,8.959278410047512 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/07/25,2.6241250000000007 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/08/25,4.736658334800837 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/09/11,13.31345833393333 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/08/26,4.315290679999999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/09/26,2.9800418519999994 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/06,6.250659090287496 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/05,2.392807237500001 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/10/29,5.000316072435894 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/29,8.515999999792527 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/24,3.2653337365384614 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/21,5.520825971999996 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/12/24,24.312499999999982 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/01/08,21.867666666666683 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/12/23,4.237997754807693 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/02/01,22.404625000000006 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/01/25,21.57554166666668 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/02/26,22.538633333333337 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/03/30,22.26459166666668 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/04/06,25.411258342533323 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/09,3.343156834999998 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/09,3.1554500566666643 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/08,10.170658348520826 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/01,4.545382369999996 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/04/30,6.621225000000005 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/04/23,12.80714166666666 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/04/22,2.8022250000000044 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/26,17.963524999999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/25,4.003406825047501 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/24,5.424595455120001 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/07/04,9.56955000093001 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/06/29,4.417949256666656 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/07/04,3.8563257133808366 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/07/03,2.8513250000475034 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/06/26,3.505470454999992 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/06/25,5.670200001109999 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/07/28,12.460800002284987 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/09/10,9.820612499974988 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/08/24,6.759531663191669 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/08/28,3.4806537399999997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/09/22,3.5041451862852373 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/10/08,3.743913461538464 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/09/30,4.595576388 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/09/21,12.434508333118329 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/10/31,13.843345834600846 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/11/09,3.153206030769229 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/11/08,2.4139362249999965 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/10/24,5.629425000694995 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/12/10,3.760012674999995 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/12/02,6.974700001687487 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/11/24,3.6991399999999977 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/12/27,11.991949999642504 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/02/04,22.14189166666668 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/04/10,12.173216666571658 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/04/09,12.03556666657166 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/09,16.75658333793333 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/11,17.11885000230003 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/31,3.051495316333333 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/26,2.8440559129999987 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/06/05,15.866883335705836 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/28,3.409921213333326 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/27,10.868683335133325 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/06/22,6.664360606739163 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/07/06,2.518281650000002 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/06/21,3.5264303133333272 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/08/05,2.802248488695832 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/07/31,8.035522561683454 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/07/23,6.997161111491106 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/07/22,2.8607500000000003 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/06,7.364035603405832 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/01,6.8171090906975085 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/09,18.21079166662165 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/01,15.472591669109176 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/08/31,3.4952218899999923 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/08/24,5.243225002474997 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/08/23,2.42667253653846 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/28,12.914391742606677 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/23,4.339150001127501 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/10/03,5.178517171802384 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/10/02,5.084952249999994 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/25,15.087825000004983 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/11/03,4.696272155333332 +Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/11/28,19.115966667036652 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/01/05,8.924749999907512 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/04/03,9.974241666429185 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/04/03,9.974241666429185 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/05,5.110129650113568 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/06,4.640275000144997 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/05,5.110129650113568 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/06,4.640275000144997 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/06/06,13.813016685066671 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/29,4.6109990000000005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/06/06,13.813016685066671 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/29,4.6109990000000005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/07/08,7.576174993260004 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/06/22,4.0998030333333215 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/07/08,7.576174993260004 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/06/22,4.0998030333333215 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/09,8.899545848858333 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/01,4.798975 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/09,8.899545848858333 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/01,4.798975 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/25,3.826390994593399 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/25,3.826390994593399 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/09/26,3.3791241599999955 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/10/04,13.306583333570831 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/09/26,3.3791241599999955 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/10/04,13.306583333570831 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/11/29,2.859902439102563 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/11/21,16.61256666745166 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/11/29,2.859902439102563 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/11/21,16.61256666745166 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/01/24,21.675758333333352 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/01/24,21.675758333333352 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/03/04,11.482333333318334 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/03/04,11.482333333318334 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/04/05,3.484573200999997 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/04/05,3.484573200999997 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/07,7.360921599741669 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/04/21,3.609143209999996 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/07,7.360921599741669 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/04/21,3.609143209999996 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/23,5.453004794591069 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/31,4.569025002299995 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/23,5.453004794591069 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/31,4.569025002299995 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/06/24,7.752374246931667 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/06/24,7.752374246931667 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/11,8.581900000385001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/07/26,4.799037564226071 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/03,4.281181819999997 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/11,8.581900000385001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/07/26,4.799037564226071 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/03,4.281181819999997 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/27,3.953953068333321 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/04,9.953892426666677 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/27,3.953953068333321 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/04,9.953892426666677 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/07,3.810322616333329 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/28,9.33135417213166 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/21,3.397615054999994 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/06,2.7636705057692303 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/07,3.810322616333329 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/28,9.33135417213166 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/21,3.397615054999994 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/06,2.7636705057692303 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/11/08,6.980953033478336 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/23,8.138979435714285 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/11/07,2.4079318932692293 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/11/08,6.980953033478336 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/23,8.138979435714285 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/11/07,2.4079318932692293 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/12/09,3.267050000000005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/12/09,3.267050000000005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/01/11,12.633908333143332 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/01/11,12.633908333143332 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/02/03,24.072216666666648 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/02/03,24.072216666666648 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/03/23,22.26459166666668 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/03/23,22.26459166666668 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/04/24,13.020558363233343 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/04/24,13.020558363233343 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/06/11,4.9819636882948775 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/06/11,4.9819636882948775 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/07/05,2.832163600000001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/07/05,2.832163600000001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/07/29,14.49829168513917 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/07/29,14.49829168513917 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/08/30,3.906624999999994 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/08/23,15.526913814168337 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/08/30,3.906624999999994 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/08/23,15.526913814168337 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/10,8.935751148212491 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/01,3.4440901566666597 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/09/24,8.743844310000005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/09/23,8.794383333915816 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/10,8.935751148212491 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/01,3.4440901566666597 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/09/24,8.743844310000005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/09/23,8.794383333915816 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/11/11,9.126702084038357 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/11/10,4.269757177884613 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/25,3.137340750000001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/11/11,9.126702084038357 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/11/10,4.269757177884613 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/25,3.137340750000001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/12/04,9.450633333695864 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/01/29,12.00544166685166 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/03/26,22.120274999785007 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/05/05,11.229963627300007 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/05/29,8.616688640145005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/05/30,2.9332984750000004 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/07/09,4.13313869999999 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/06/30,15.741337499617504 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/07/08,5.060131820047503 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/06/22,2.8989372682692305 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/08/10,2.6511120500000005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/08/09,2.6859022500000056 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/08/25,4.154599999999995 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/12/07,22.539900000000006 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/04/23,10.454196980328328 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/05/08,3.0884068199999986 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/04/22,3.1830500000000086 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/06/10,14.306141667549143 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/06/09,2.9072227 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/07/03,18.637433365580844 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/08/04,15.204216680611667 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/07/28,6.175899996915008 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/07/27,3.807354600072496 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/09/05,3.733681086666658 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/08/29,16.914543941686677 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/09/21,3.5656060716666644 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/09/29,18.34194166642165 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/10/23,16.518654168101683 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/02/21,22.76205 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/03/07,12.891649999569996 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/02/20,22.373083333333344 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/03/31,5.692427078668341 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/02,4.627339249666664 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/04/25,6.395811375047494 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/10,2.510275000000002 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/03,5.302044557999993 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/04/24,12.617100000384989 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/27,3.693012891666661 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/26,3.606474999999989 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/07/05,19.767316665901657 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/08/06,3.502825014999993 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/07/30,3.754794908333325 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/08/31,4.207837498845001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/08/22,3.175989872999996 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/08/30,2.6341874200000013 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/10/09,4.866293189999993 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/11/10,8.635058356666656 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/10/25,5.330884810856073 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/01/29,23.02285 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/03/02,22.674233333333337 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/04/03,15.687900016100013 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/06/06,10.501175000285007 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/05/29,13.443433333533312 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/08/02,3.351784105072497 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/09/10,8.064499988454994 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/08/25,17.338283342678334 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/09/26,14.919608347133336 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/06,4.507811365100002 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/10/28,6.769899997990008 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/05,3.234494230769233 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/29,22.64890000000001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/24,2.4889507673076894 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/21,3.362111212499997 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/12/24,24.44116666666665 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/01/08,21.848400000000016 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/01/25,22.407050000000005 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/04/06,13.353164585828344 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/04/06,14.894300025634989 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/03/29,21.791766666666685 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/05/08,6.186582956657487 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/05/01,4.152340823333327 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/04/30,4.316450000145 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/04/22,3.6264250000000064 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/05/31,19.81600833323833 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/05/24,2.749427250000001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/07/04,3.2051022703624965 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/06/29,3.41464394577333 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/07/03,3.489674999999996 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/06/25,2.5781915275000014 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/08/07,3.6215409099999936 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/09/10,3.886359091377496 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/08/28,2.346161324999999 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/09/21,5.135167432856663 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/10/31,6.684699993445013 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/10/26,21.181508333228336 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/11/08,2.349798680769228 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/12/10,2.553929350000001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/02/04,22.23312500000001 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/04/01,15.526410417419177 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/09,17.520539587933346 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/11,5.593300000072504 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/31,3.119840003072498 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/26,3.905050000072494 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/06/04,5.427000000452492 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/27,17.768825001317495 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/06/22,2.576597730145 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/07/06,4.475032583333327 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/08/05,5.034000003594997 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/07/30,6.541977275120002 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/07/22,4.656574999999998 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/09/06,3.442527275144992 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/09/01,10.708218180627505 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/08/31,3.788727339999993 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/08/23,2.770609813333333 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/10/03,13.49406666690668 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/09/28,12.40099514255548 +Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/10/02,2.73526935 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2014/12/29,13.440699999952502 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/01/22,23.54250833333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/01/22,23.54250833333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/02/22,22.376383333333347 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/02/22,22.376383333333347 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/04/03,9.39795833316585 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/04/03,9.39795833316585 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/06,4.279850000264999 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/06,4.464100000312499 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/06,4.279850000264999 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/06,4.464100000312499 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/06,8.51288583218834 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/30,8.224591652741665 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/07,13.02705833333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/07,12.591599999999982 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/29,4.668500000094998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/22,7.594518342533327 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/22,11.743735028750002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/06,8.51288583218834 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/30,8.224591652741665 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/07,13.02705833333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/07,12.591599999999982 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/29,4.668500000094998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/22,7.594518342533327 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/22,11.743735028750002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/07/08,4.319116403168217 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/07/08,4.319116403168217 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/09,7.138396971666665 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/10,18.576658333613334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/10,3.2988522500000066 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/09,7.138396971666665 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/10,18.576658333613334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/10,3.2988522500000066 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/25,7.048361668584168 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/11,2.6858750000000056 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/11,3.2824022500000067 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/02,9.341950000217498 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/26,2.5334250000000025 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/26,2.6900250000000057 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/25,7.048361668584168 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/11,2.6858750000000056 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/11,3.2824022500000067 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/02,9.341950000217498 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/26,2.5334250000000025 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/26,2.6900250000000057 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/10/05,7.755624998635011 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/26,3.008574261666663 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/10/04,3.821614884414879 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/27,3.040997912728936 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/27,3.066235411767397 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/10/05,7.755624998635011 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/26,3.008574261666663 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/10/04,3.821614884414879 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/27,3.040997912728936 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/27,3.066235411767397 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/05,2.085442999999997 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/05,2.085442999999997 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/29,15.150725039190004 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/22,4.057794567692308 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/30,20.800941666836675 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/30,21.136491666836672 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/21,20.13986250018499 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/29,15.150725039190004 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/22,4.057794567692308 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/30,20.800941666836675 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/30,21.136491666836672 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/21,20.13986250018499 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/01/08,12.887449999569997 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/01/08,12.887449999569997 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/01/24,21.791766666666685 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/01/24,21.791766666666685 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/02/26,22.47810000000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/03/05,12.575958333470831 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/03/05,12.522983333470831 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/02/26,22.47810000000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/03/05,12.575958333470831 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/03/05,12.522983333470831 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/05,13.35783561063334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/05,13.35783561063334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/07,7.490341671889171 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/30,6.914265929999992 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/21,17.840012148000035 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/07,7.490341671889171 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/30,6.914265929999992 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/21,17.840012148000035 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/23,5.4794099911000025 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/31,4.572740171253333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/24,4.910550000264993 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/24,4.752746400144994 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/23,5.4794099911000025 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/31,4.572740171253333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/24,4.910550000264993 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/24,4.752746400144994 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/03,5.771310611468334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/24,8.515458334685837 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/11,13.549733333333318 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/11,14.299108333523316 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/25,2.730301685769228 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/25,2.930897795741759 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/03,5.771310611468334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/24,8.515458334685837 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/11,13.549733333333318 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/11,14.299108333523316 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/25,2.730301685769228 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/25,2.930897795741759 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/11,6.446818180457507 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/04,3.0134840999999994 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/03,2.323178299999999 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/27,3.124146155 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/27,3.285391537371793 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/11,6.446818180457507 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/04,3.0134840999999994 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/03,2.323178299999999 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/27,3.124146155 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/27,3.285391537371793 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/05,5.046521713919409 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/27,3.4064021264058293 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/04,2.529179500000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/28,13.28337500021499 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/28,12.238575000429998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/05,5.046521713919409 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/27,3.4064021264058293 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/04,2.529179500000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/28,13.28337500021499 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/28,12.238575000429998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/07,3.44092349833333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/28,2.656077136333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/21,2.890220159666665 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/06,2.430213411538459 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/29,4.777425000144995 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/29,4.171275000144998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/07,3.44092349833333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/28,2.656077136333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/21,2.890220159666665 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/06,2.430213411538459 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/29,4.777425000144995 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/29,4.171275000144998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/11/08,5.943912025714284 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/23,4.80238867271428 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/11/07,2.648908293269231 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/11/08,5.943912025714284 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/23,4.80238867271428 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/11/07,2.648908293269231 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/01/02,22.34590833333334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/01/02,22.34590833333334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/04,12.549683333118324 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/04,21.36779166666669 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/04,12.549683333118324 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/04,21.36779166666669 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/08,14.182399999905003 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/08,15.153037500000016 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/27,12.249049999905004 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/20,20.247183333238368 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/08,14.182399999905003 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/08,15.153037500000016 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/27,12.249049999905004 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/20,20.247183333238368 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/23,22.26459166666668 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/04/09,12.776891666404168 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/23,22.26459166666668 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/04/09,12.776891666404168 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/04/24,12.16456666673916 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/05/11,2.34536563 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/05/11,2.4139707500000003 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/04/24,12.16456666673916 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/05/11,2.34536563 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/05/11,2.4139707500000003 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/06/11,9.18362082726333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/06/11,9.18362082726333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/05,2.2833635999999995 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/05,2.2833635999999995 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/07,7.221321247832513 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/29,12.746708346223336 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/30,3.771827530769227 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/30,2.7263787500000016 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/07,7.221321247832513 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/29,12.746708346223336 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/30,3.771827530769227 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/30,2.7263787500000016 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/30,4.463707576949165 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/23,8.198956253529992 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/30,4.463707576949165 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/23,8.198956253529992 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/01,4.434513719999993 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/09/24,6.0763272701450015 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/02,2.663874516895604 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/02,2.715553649038461 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/09/23,5.790500000720001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/01,4.434513719999993 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/09/24,6.0763272701450015 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/02,2.663874516895604 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/02,2.715553649038461 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/09/23,5.790500000720001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/11,8.454083222380943 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/10,2.762302250000006 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/25,5.576956879999996 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/11,8.454083222380943 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/10,2.762302250000006 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/25,5.576956879999996 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/12/04,8.660199999725018 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/26,3.338100000000007 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/05/05,3.89413411 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/04/28,12.916191668871663 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/04/28,12.822841666571668 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/05/29,4.114163970808213 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/05/30,3.949699644102555 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/05/30,3.830873513333324 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/07/09,4.517191899999987 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/07/08,13.43515833333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/06/22,5.003957205422498 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/08/10,3.845524863333329 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/08/09,10.98232500663749 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/09/03,4.469127250000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/09/03,6.290277249999999 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/08/25,3.972800000000002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/10/05,2.847169500000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/10/05,3.228598169999996 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/12/08,21.794191666666684 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/11/22,21.67155833333335 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/11/22,21.66638333333335 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/12/23,9.899933333333344 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/02/09,22.309808333333343 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/03/06,11.875275000000004 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/02/26,21.856800000000018 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/02/26,21.867666666666683 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/04/23,7.11805832754834 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/05/08,5.584025002727493 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/04/22,2.1675384499999963 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/06/01,9.900379166629191 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/06/09,4.171294440084879 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/07/03,6.4258229220966685 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/08/04,9.230887501942496 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/08/05,8.452452270000002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/08/05,2.7605337000000016 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/07/27,2.783175000047501 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/05,5.154123037435888 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/08/29,2.757281067029165 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/06,2.4045976 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/06,2.682679380357143 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/30,11.428949998729996 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/21,7.159514393333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/10/08,3.724665122307686 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/10/08,2.534352243269232 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/29,18.683374999325004 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/08,7.014799997377512 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/01,8.166273333128352 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/10/23,4.653738671363336 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/09,3.763400000000002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/25,18.173689584275856 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/25,18.627191666476687 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/02/05,22.64890000000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/03/08,22.44243333333334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/03/07,21.675758333333352 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/02/20,13.0309500002375 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/04/01,4.48311838326923 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/04/01,4.222968383269231 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/02,13.08780837650835 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/03,3.408032759999997 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/03,2.493077475000004 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/27,3.4918272800724925 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/06/04,5.491084092311661 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/06/04,4.605410236491666 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/26,3.461534858333331 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/07/05,17.155400000047486 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/07/06,2.74710890576923 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/07/06,2.907530985576924 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/06,4.482549626734167 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/07/30,5.096965912975003 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/07,4.125204500000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/07,3.905537242307688 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/22,10.169850011859989 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/30,2.834275000000005 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/23,4.404025014999995 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/23,2.5848609500000026 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/10/09,5.697267332380947 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/09/23,7.268402308162507 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/10/10,4.620449999999994 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/10/10,7.871100000072497 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/09/24,8.450725000192486 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/09/24,9.774575000192485 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/11/10,8.848746233333323 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/10/25,7.421227497544997 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/12/29,21.75304166666668 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/01/29,22.351800000000008 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/02/06,21.867666666666683 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/01/30,21.856800000000018 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/01/30,21.867666666666683 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/03/02,22.404625000000006 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/04/03,22.44243333333334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/04/04,14.12927500248999 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/04/04,14.361258338123328 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/05/06,2.632758124999999 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/05/06,2.378634500000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/04/27,5.921374999354998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/05/29,5.3047291697441645 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/09,12.103908333148336 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/09,11.594489583488336 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/06/23,3.3497134896153824 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/06/23,4.285339470384611 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/24,16.867370833190826 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/10,8.825059090239998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/10,4.167234464102555 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/25,6.073712415769223 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/25,5.626069698380829 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/25,12.938700001244994 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/09/11,3.819525000000007 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/09/11,3.1609750000000023 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/26,3.2625750000000022 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/26,3.162729500000002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/09/26,5.359971213333337 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/11/06,7.1389999947825125 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/10/28,3.4125493804058338 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/11/05,3.658330480769232 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/10/29,2.5568953057692294 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/10/29,2.842237393498167 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/12/07,12.778591666651662 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/11/24,2.433516830769227 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/11/21,2.3336134500000005 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/12/24,23.94223333333332 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/12/23,21.750616666666684 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/01/25,21.961558333333347 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/01/25,21.966733333333345 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/02/26,22.351358333238345 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/02/26,22.62578333333334 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/04/06,8.985950001112528 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/04/06,4.316966692307691 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/03/29,21.66638333333335 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/03/22,14.547949999905002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/09,2.8299952625 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/09,2.2326640750000006 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/08,5.269650002299995 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/01,3.0277174983333333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/01,3.5170030733333304 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/04/30,7.522116672416661 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/25,3.4729681999999986 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/25,4.937099999999996 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/24,5.10523560717416 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/07/04,3.3294969666666607 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/06/29,5.4297000020749975 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/07/03,10.464333334495818 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/06/26,3.341032563333328 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/06/26,3.3654113499999943 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/07,8.290050003417507 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/05,13.737800000234987 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/05,13.350850005027487 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/07/28,2.6530655400000023 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/07/28,3.247923768846152 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/10,7.192747347511675 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/24,3.534646981666663 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/29,13.202758333743333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/29,12.07675833364333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/28,3.498599999999997 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/22,6.514724998685 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/30,12.619308333333327 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/30,12.24008333338083 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/21,5.059421972270829 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/10/31,7.056166657686675 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/11/09,2.4355317053571413 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/11/09,3.634363173076925 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/11/08,1.991156699999996 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/10/24,18.434391666796667 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/10/24,12.517033334118327 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/12/10,2.493829450000001 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/11/24,3.0459522500475016 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/02/04,22.14189166666668 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/01/28,21.961558333333347 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/04/10,12.467783333285825 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/04/10,12.487183333285826 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/04/09,14.318808333285828 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/04/02,12.952408333238324 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/09,10.0732562887225 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/31,5.197725000217491 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/26,3.140899088362498 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/06/05,8.668325001159992 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/06/05,7.705100000869994 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/06/04,3.948138461538461 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/28,7.315550000770002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/28,12.920291669136672 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/27,16.251271591834158 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/06/22,3.033839998217497 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/06,6.763823497151665 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/08/10,6.597784100989998 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/31,8.034125000457497 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/31,9.969450000362492 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/30,12.822975000457491 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/23,4.028358336666656 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/23,4.425451070769224 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/22,3.1353795000475024 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/06,8.58893485333333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/01,3.50133333173916 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/01,3.324949999999995 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/01,6.318875000120008 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/08/31,5.459575000000002 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/08/23,2.0655317500000003 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/10/03,6.68820530833333 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/28,13.425625038197476 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/23,7.398947690000004 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/10/03,4.598275009999992 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/10/03,3.767856834999992 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/10/02,3.646039824999997 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/25,12.32932499953999 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/25,12.519875000359992 +Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/11/03,4.132514777864998 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2014/12/29,16.27039999999999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2014/12/29,12.076526589997505 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/01/29,22.348225000000006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/01/22,24.070899999999988 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/01/29,22.348225000000006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/01/22,24.070899999999988 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/02/23,22.539900000000006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/02/23,22.539900000000006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/04/03,9.729766666286686 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/04/03,9.729766666286686 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/04/28,5.025509993767502 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/06,8.869250002419985 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/06,8.420200000312478 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/04/28,5.025509993767502 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/06,8.869250002419985 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/06,8.420200000312478 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/06/06,5.730724995100005 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/30,4.12582500153 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/29,4.233925001199999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/22,4.408078033333333 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/22,6.653825000217498 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/06/06,5.730724995100005 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/30,4.12582500153 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/29,4.233925001199999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/22,4.408078033333333 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/22,6.653825000217498 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/07/08,13.445191667246675 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/06/22,3.7671889058417287 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/07/08,13.445191667246675 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/06/22,3.7671889058417287 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/09,4.175519706666659 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/02,22.59170833288833 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/07/24,4.115435611884161 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/09,4.175519706666659 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/02,22.59170833288833 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/07/24,4.115435611884161 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/25,7.809312529952503 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/11,3.0058817500000017 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/11,3.5893217500000025 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/02,8.136850000047499 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/25,7.809312529952503 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/11,3.0058817500000017 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/11,3.5893217500000025 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/02,8.136850000047499 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/10/05,9.162349989209998 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/26,3.49486287666666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/10/04,5.999475000504997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/27,2.129304349999998 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/27,2.7042776923076906 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/10/05,9.162349989209998 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/26,3.49486287666666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/10/04,5.999475000504997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/27,2.129304349999998 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/27,2.7042776923076906 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/05,2.1151179749999973 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/05,2.1151179749999973 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/29,5.368806664314167 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/22,7.177612499335006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/12/07,2.8990750000000047 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/30,2.711442999999999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/30,3.351404178846151 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/21,4.099924999999996 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/29,5.368806664314167 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/22,7.177612499335006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/12/07,2.8990750000000047 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/30,2.711442999999999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/30,3.351404178846151 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/21,4.099924999999996 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/01/24,21.66638333333335 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/01/24,21.66638333333335 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/02/26,11.283166665591668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/03/05,14.066449999952503 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/03/05,13.707641666619168 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/02/26,11.283166665591668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/03/05,14.066449999952503 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/03/05,13.707641666619168 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/05,8.529828922377776 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/05,8.529828922377776 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/30,3.2050636849999967 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/21,6.729638654999997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/29,4.265433341563332 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/22,3.330775000095005 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/22,2.870925000000005 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/30,3.2050636849999967 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/21,6.729638654999997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/29,4.265433341563332 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/22,3.330775000095005 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/22,2.870925000000005 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/23,5.245100013327508 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/31,5.193680311825 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/24,6.746479170014162 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/24,8.282304171296666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/23,5.245100013327508 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/31,5.193680311825 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/24,6.746479170014162 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/24,8.282304171296666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/03,6.238058354415839 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/24,5.972421982609169 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/11,11.228250000047488 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/11,9.360000000452484 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/25,2.936857524999996 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/25,2.435026530769231 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/03,6.238058354415839 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/24,5.972421982609169 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/11,11.228250000047488 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/11,9.360000000452484 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/25,2.936857524999996 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/25,2.435026530769231 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/11,5.975433335335839 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/04,3.1634968279999978 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/26,12.497579175099172 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/03,3.4940295 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/27,3.921138399999996 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/27,4.2683716307692245 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/11,5.975433335335839 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/04,3.1634968279999978 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/26,12.497579175099172 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/03,3.4940295 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/27,3.921138399999996 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/27,4.2683716307692245 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/05,3.233352299999994 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/27,3.023227275072498 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/04,5.827628786739162 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/05,3.233352299999994 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/27,3.023227275072498 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/04,5.827628786739162 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/07,3.40158713833333 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/28,5.005587131126668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/21,3.328915156666662 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/06,2.0689839749999983 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/29,7.8679026581199825 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/29,7.758017049474149 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/07,3.40158713833333 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/28,5.005587131126668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/21,3.328915156666662 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/06,2.0689839749999983 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/29,7.8679026581199825 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/29,7.758017049474149 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/11/08,3.959937286999997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/23,3.8229636373475 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/11/07,2.509923580769229 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/11/08,3.959937286999997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/23,3.8229636373475 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/11/07,2.509923580769229 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/10,3.8183944664102554 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/10,3.8183944664102554 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/26,23.94899999999999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/25,21.838800000000013 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/26,23.94899999999999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/25,21.838800000000013 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/04,21.838800000000013 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/04,21.75304166666668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/04,21.838800000000013 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/04,21.75304166666668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/08,14.588399999905008 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/08,14.786749999905007 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/27,12.997199999522495 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/20,20.58400833323836 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/08,14.588399999905008 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/08,14.786749999905007 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/27,12.997199999522495 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/20,20.58400833323836 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/08,22.451158333333343 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/23,22.451158333333343 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/09,20.64008333323836 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/09,20.452083333143367 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/08,22.451158333333343 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/23,22.451158333333343 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/09,20.64008333323836 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/09,20.452083333143367 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/10,18.85319791781666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/24,12.160008333333328 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/11,2.651061675000003 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/11,3.0958172875 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/10,18.85319791781666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/24,12.160008333333328 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/11,2.651061675000003 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/11,3.0958172875 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/06/11,7.65996082346583 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/06/03,9.282275000554993 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/06/11,7.65996082346583 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/06/03,9.282275000554993 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/05,2.562649850000001 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/05,2.562649850000001 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/29,6.9850297711275 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/08/06,6.057371213405829 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/30,3.238702875 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/30,2.962019337500001 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/29,6.9850297711275 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/08/06,6.057371213405829 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/30,3.238702875 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/30,2.962019337500001 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/01,2.63733092 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/09/24,3.9775772702899994 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/02,2.3663974750000003 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/02,2.1936049182692283 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/09/23,5.528850000719995 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/01,2.63733092 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/09/24,3.9775772702899994 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/02,2.3663974750000003 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/02,2.1936049182692283 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/09/23,5.528850000719995 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/11,7.191419582380944 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/10,15.590641666651656 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/25,5.290712503759997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/11,7.191419582380944 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/10,15.590641666651656 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/25,5.290712503759997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/12/04,12.16614833546585 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/26,15.268925000189975 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/01/29,10.505741666666689 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/05/05,8.970876674501655 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/04/28,13.48480833323834 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/04/28,13.503608333238342 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/05/29,6.558350000455006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/05/30,3.75872499999999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/05/30,3.615419230769224 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/07/09,3.669900763840827 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/07/08,14.50140833333332 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/07/01,11.458900000237488 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/07/01,10.290575000167491 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/06/22,2.390890800000001 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/08/10,3.272713699999993 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/08/09,4.978496480769225 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/09/03,4.028249999999997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/09/03,2.7556795000000034 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/08/25,12.869824999784983 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/10/05,2.28868235 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/10/05,2.9524385532051256 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/12/07,22.26459166666668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/11/22,3.3641750000950053 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/11/22,8.190225000144995 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/02/09,14.045916668344162 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/03/06,22.76205 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/02/26,21.919450000000012 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/02/26,21.919450000000012 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/04/30,12.021231315887498 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/04/23,5.552773275101666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/05/08,8.195826678214162 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/04/22,12.981084886470002 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/06/01,11.28098333373334 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/06/09,2.5898795000000026 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/06/26,2.937187867391666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/08/04,5.303675002099999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/08/05,3.633309099999993 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/08/05,2.8667517500000024 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/05,3.640996966666659 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/06,2.8342998 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/06,3.01915695 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/30,5.4315000040024985 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/21,6.962161360072499 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/10/08,3.9444957307692254 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/10/08,3.8425343807692256 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/29,6.01097916956916 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/11/08,6.22299999668501 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/10/23,4.165715162180836 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/12/11,4.951148494096667 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/12/11,4.119220836485831 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/11/25,2.776863043269232 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/11/25,3.633563220192307 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/04/01,11.733233333238324 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/04/01,12.09344999990499 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/02,6.844103048333332 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/04/25,4.857583335873333 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/03,3.84552673333333 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/03,2.862023669999999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/27,3.447364395144994 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/06/04,5.413354925774997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/06/04,4.103825001497492 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/26,3.5732022799999976 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/07/05,16.32148333506081 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/07/06,2.5214467250000023 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/07/06,3.0309139851648363 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/06,3.2214174418116643 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/07,4.421618199999992 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/07,4.131446530769221 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/22,3.250842441666661 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/30,2.6946522500000056 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/23,4.429614393333328 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/23,3.563789303846153 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/10/09,3.9428085303333256 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/09/23,6.224764182544171 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/10/10,3.552725000000007 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/10/10,3.4848000000000057 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/09/24,10.693983333788324 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/09/24,11.13228333594582 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/11/10,4.742721269380947 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/10/25,10.309629168989163 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/12/29,21.75304166666668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/12/29,21.75304166666668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/02/06,21.66638333333335 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/01/30,21.867666666666683 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/01/30,21.856800000000018 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/03/02,22.26459166666668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/04/03,22.44243333333334 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/05/06,2.596920925000004 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/05/06,2.375870650000003 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/05/29,4.80831364171 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/07/24,15.133783333523333 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/10,4.248050000337493 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/10,4.246934090674994 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/07/25,7.607389680769225 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/07/25,6.488772727179477 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/09/10,2.834560832165831 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/25,4.444233334728337 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/09/11,3.614375000144999 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/09/11,2.841175000000004 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/26,6.796400000762504 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/26,4.467078330769224 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/09/26,5.2652931800475 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/11/06,5.130510452927743 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/10/28,8.651696734820277 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/11/05,3.0278750000000048 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/10/29,2.371873287499997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/10/29,2.4517626682692297 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/12/07,2.735950000000004 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/11/24,2.2150771999999974 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/11/21,3.9015171749999946 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/12/24,23.455858333333325 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/02/02,22.30160833333335 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/02/02,22.109708333285848 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/02/26,22.23312500000001 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/04/06,8.530674999667518 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/04/06,13.597370872360814 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/03/29,21.791766666666685 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/09,2.5348230500000017 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/09,2.680007350000001 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/08,3.218536370000003 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/01,4.758859853333325 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/01,2.6565526500000027 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/04/30,4.343875000000002 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/31,17.020741666619166 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/26,13.189225016245008 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/26,12.848566680611674 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/25,6.892775000457497 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/25,4.9199295504824985 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/04,6.171482580337505 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/06/29,9.2881500136025 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/11,15.661816667619172 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/03,8.507083346030823 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/07,3.851738269409166 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/28,3.8870750000000056 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/28,2.7883250000475 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/10,6.851104169446666 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/24,3.72635486410256 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/29,4.439350001352496 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/29,4.406625001062495 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/28,3.874654500000002 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/22,10.372058333118344 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/30,3.647629171204162 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/30,4.117579169864163 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/22,2.9221457 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/22,3.463507701923074 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/21,5.667400000502494 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/10/31,6.760699993630012 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/11/09,2.4157883499999984 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/11/09,2.6441695736263737 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/11/08,2.044699849999997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/10/31,22.29289166645668 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/10/24,18.141833333318324 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/12/10,2.2593567500000007 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/12/02,3.618879500000001 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/11/24,4.431525 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/02/21,11.240208333870848 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/02/21,11.478883333918338 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/04/10,10.87549166657166 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/04/10,10.87549166657166 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/04/09,14.017733333238334 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/04/02,12.7532499997375 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/09,10.519091722764164 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/31,7.6487022703125 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/26,2.621639234739167 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/06/05,8.673938258123316 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/06/05,6.013000000859995 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/28,13.823233333598337 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/28,3.883759100192492 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/27,19.889291668944164 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/06/22,3.020880908290002 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/06,2.9279249999999952 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/10,17.245160607998336 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/05,6.561824991570007 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/30,3.770147730507496 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/23,2.599299999999997 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/23,3.4737734633808377 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/22,2.843477250000006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/06,8.15577878340583 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/01,7.840695450192499 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/27,4.732745821410839 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/01,4.834152275167489 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/01,4.932800000457493 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/31,2.570721025000002 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/23,2.0784142883333345 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/10/03,16.75633560666669 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/28,12.568003630374871 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/23,3.5948356079716657 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/10/03,4.741985606739172 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/10/03,5.203135606666673 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/10/02,3.1015127549999977 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/25,19.44594166652417 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/25,7.987141667171671 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/11/03,4.017815079999994 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/11/28,3.063400000000006 +Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/11/28,3.114275000000008 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2014/12/29,7.903240093148605 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2014/12/29,7.751918121740277 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/01/29,22.26459166666668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/01/22,23.333575 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/01/29,22.26459166666668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/01/22,23.333575 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/02/23,22.674233333333337 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/02/22,10.824866666666676 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/02/23,22.674233333333337 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/02/22,10.824866666666676 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/04/03,10.517741666381689 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/04/03,10.517741666381689 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/06,9.94424166903915 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/06,8.243466666884146 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/06,9.94424166903915 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/06,8.243466666884146 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/06,4.816118445955232 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/07,14.322924999999982 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/07,14.19924999999998 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/29,4.321384838333325 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/22,4.482000000047503 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/22,11.851558370133342 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/06,4.816118445955232 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/07,14.322924999999982 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/07,14.19924999999998 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/29,4.321384838333325 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/22,4.482000000047503 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/22,11.851558370133342 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/08,5.241070845108336 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/08,5.241070845108336 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/08/09,4.107194706666657 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/24,16.212383332950832 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/25,18.34541666645166 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/25,16.128499999760002 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/08/09,4.107194706666657 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/24,16.212383332950832 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/25,18.34541666645166 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/25,16.128499999760002 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/08/25,11.846697934561664 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/11,3.660196799999993 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/11,3.966146149999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/02,3.5032750000000075 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/08/25,11.846697934561664 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/11,3.660196799999993 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/11,3.966146149999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/02,3.5032750000000075 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/05,6.535395821968342 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/26,2.8471924416666643 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/04,5.564420459602491 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/27,2.711525466895605 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/27,2.588572605769229 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/05,6.535395821968342 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/26,2.8471924416666643 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/04,5.564420459602491 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/27,2.711525466895605 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/27,2.588572605769229 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/05,2.247874849999997 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/29,21.967658333333347 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/05,2.247874849999997 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/29,21.967658333333347 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/29,7.318365536346659 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/22,7.617329170026659 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/30,3.265043653846155 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/30,3.708939006730765 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/21,15.753166666636652 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/29,7.318365536346659 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/22,7.617329170026659 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/30,3.265043653846155 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/30,3.708939006730765 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/21,15.753166666636652 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/01/24,21.71765833333335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/01/24,21.71765833333335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/02/26,22.40535000000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/03/05,13.196283333238334 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/03/05,13.215083333238336 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/02/26,22.40535000000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/03/05,13.196283333238334 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/03/05,13.215083333238336 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/05,11.559646973333331 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/05,11.559646973333331 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/07,5.025847960038566 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/30,8.085273513333322 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/21,15.407566671266688 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/29,4.312164782484999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/07,5.025847960038566 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/30,8.085273513333322 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/21,15.407566671266688 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/29,4.312164782484999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/23,4.970910762618455 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/31,4.9952526722108335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/24,6.3399000000000045 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/24,3.599079554999994 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/23,4.970910762618455 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/31,4.9952526722108335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/24,6.3399000000000045 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/24,3.599079554999994 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/03,6.359200000265004 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/24,7.045465153550829 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/11,12.014283333380826 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/11,11.255750000237487 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/25,2.712880174999999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/25,3.559828950333329 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/03,6.359200000265004 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/24,7.045465153550829 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/11,12.014283333380826 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/11,11.255750000237487 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/25,2.712880174999999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/25,3.559828950333329 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/11,19.030666675794187 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/04,16.104824999234992 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/03,3.597662839999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/27,2.876875050000002 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/27,3.1612925399999976 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/11,19.030666675794187 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/04,16.104824999234992 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/03,3.597662839999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/27,2.876875050000002 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/27,3.1612925399999976 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/05,3.420170454999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/27,4.049647098202741 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/04,8.818200000000013 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/28,12.437449999999986 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/28,8.760175000819993 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/05,3.420170454999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/27,4.049647098202741 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/04,8.818200000000013 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/28,12.437449999999986 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/28,8.760175000819993 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/07,5.872542273144996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/28,8.151575000237502 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/21,4.076661216333328 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/06,2.985952061538461 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/29,6.855892426307497 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/29,7.3784424252299905 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/07,5.872542273144996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/28,8.151575000237502 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/21,4.076661216333328 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/06,2.985952061538461 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/29,6.855892426307497 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/29,7.3784424252299905 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/11/08,2.9743022899999985 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/23,13.716819456039437 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/11/07,2.6327832682692294 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/11/08,2.9743022899999985 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/23,13.716819456039437 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/11/07,2.6327832682692294 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/10,22.309808333333343 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/10,22.309808333333343 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/01/11,20.604589584673363 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/26,23.866341666666653 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/25,21.75304166666668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/01/11,20.604589584673363 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/26,23.866341666666653 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/25,21.75304166666668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/04,22.689058333333342 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/04,22.68663333333334 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/04,22.689058333333342 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/04,22.68663333333334 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/08,9.75773333333335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/08,10.98245833319084 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/20,20.383683333238366 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/20,20.383683333238366 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/08,9.75773333333335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/08,10.98245833319084 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/20,20.383683333238366 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/20,20.383683333238366 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/23,22.451158333333343 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/04/09,20.604658333238365 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/23,22.451158333333343 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/04/09,20.604658333238365 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/04/24,12.396150023000011 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/05/11,4.621156899999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/05/11,2.7717862 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/04/24,12.396150023000011 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/05/11,4.621156899999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/05/11,2.7717862 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/06/11,7.991233326950835 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/06/11,7.991233326950835 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/05,2.463681750000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/05,2.463681750000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/29,13.115908342865824 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/06,3.4082250000000056 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/30,2.355876750000003 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/30,2.461992850000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/29,13.115908342865824 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/06,3.4082250000000056 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/30,2.355876750000003 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/30,2.461992850000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/30,6.114585606929169 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/23,6.06796248989001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/30,6.114585606929169 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/23,6.06796248989001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/10,8.143429164239178 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/01,3.146224246666661 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/09/24,8.209195450000005 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/02,2.565271192857143 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/02,2.5320768115384595 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/09/23,9.218016671986652 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/10,8.143429164239178 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/01,3.146224246666661 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/09/24,8.209195450000005 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/02,2.565271192857143 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/02,2.5320768115384595 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/09/23,9.218016671986652 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/11/11,7.414701246854999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/11/10,17.564841666731674 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/11/11,7.414701246854999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/11/10,17.564841666731674 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/12/04,8.254042082865857 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/01/29,11.00409166635668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/05/05,5.739900004599994 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/05/29,8.277291663679167 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/05/30,3.753959099999993 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/05/30,3.6048250000724953 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/07/09,3.819252300072497 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/06/22,4.962975005692496 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/08/10,3.171924246666663 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/08/09,7.376300006899986 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/08/25,18.364124999755003 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/10/05,3.227713256410256 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/10/05,3.613958443131866 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/12/07,23.026316666666663 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/11/22,21.791766666666685 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/11/22,21.791766666666685 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/02/09,13.683583333190832 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/03/06,11.676499999324996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/02/26,21.848400000000016 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/02/26,21.848400000000016 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/04/23,6.414002275237494 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/05/08,10.320200022999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/04/22,2.6831922000000024 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/06/01,14.50398333333334 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/06/09,2.7755680000000007 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/06/26,3.403706820072495 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/08/04,13.635016683081655 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/08/05,2.842966874999998 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/08/05,2.521400025000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/07/27,4.7393340999999936 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/05,3.343390909999994 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/06,3.718394649999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/06,2.300716362500002 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/30,7.232124998635011 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/21,7.096296966714171 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/10/08,2.9107535499999977 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/10/08,3.809144930769224 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/29,13.409858333333329 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/11/08,6.225899995807515 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/10/23,6.81587499105001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/11/25,17.48508125023751 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/11/25,19.936906250200007 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/02/29,21.919450000000012 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/02/20,11.378024999985008 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/04/01,13.581041666524172 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/02,7.10413031833333 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/04/25,7.330109100072503 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/03,8.99665 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/03,3.6267136399999993 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/27,7.370456063333331 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/06/04,11.654511473219031 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/06/04,4.977486474034045 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/26,3.032925009999996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/07/06,2.5887498749999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/07/06,2.282578612499999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/06,14.802808344833348 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/07/30,9.72505417277917 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/07,13.653133332903314 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/07,19.86571666694667 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/31,3.645253786811665 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/22,3.394410606666661 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/30,2.874429500000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/23,4.306818184999994 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/23,3.215307130769225 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/10/09,3.853185036999997 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/09/23,8.651753336155844 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/09/24,12.542125000332502 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/09/24,12.864154167284168 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/11/10,3.572216098666664 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/10/25,10.657658750354992 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/12/29,21.75304166666668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/01/29,22.47810000000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/02/06,21.88613333333335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/01/30,21.867666666666683 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/03/02,22.26459166666668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/04/03,13.590075 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/03/27,9.779150000000014 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/04/04,10.656258332258338 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/04/04,10.656258332258338 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/05/06,3.441024069999999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/05/06,3.063123704999998 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/06/07,6.245899999999998 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/06/07,4.225924999999994 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/05/29,16.37680833311833 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/02,6.663520823078343 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/07/24,18.53115833323833 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/10,3.973324999999998 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/10,4.160809099999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/07/25,8.007725000744989 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/07/25,8.133319231394221 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/25,6.768308334490836 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/26,3.8988000000724914 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/26,4.11682697307692 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/09/26,10.816174995252496 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/06,17.49451070816833 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/10/28,6.15428561910917 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/09,3.875495323333326 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/09,3.907674109999992 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/05,2.241304520000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/10/29,2.4052349557692274 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/10/29,2.372755468269231 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/12/07,21.791766666666685 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/24,2.2343317499999977 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/21,2.6124929000000003 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/12/24,22.778858333333336 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/01/08,21.848400000000016 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/01/25,10.074033333333343 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/02/02,21.77565833333335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/01/25,22.14189166666668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/02/26,21.88675000000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/02/26,14.291691666604168 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/02/26,14.146274999784996 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/04/06,16.406433338510833 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/03/29,21.791766666666685 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/03/22,14.220966666571666 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/09,3.3471157624999965 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/09,2.2068428250000007 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/08,5.376849999999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/01,4.165083284999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/01,3.732328464999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/04/30,3.299708187999999 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/31,14.825933333333328 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/26,13.868441675939168 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/26,13.868441675939168 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/25,3.4521568201450026 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/25,4.997727275120001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/24,12.78345833333332 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/07/04,2.9672674266666657 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/06/29,17.514908334293324 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/07/03,13.375350000215 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/07/28,2.9270022500475013 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/07/28,2.6346750000475025 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/10,5.695743180047497 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/08/24,9.07852084699084 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/08/29,4.596050001377497 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/08/29,4.708700001594995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/08/28,4.686475069999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/22,3.3692625002000063 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/30,3.8857791695016655 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/30,4.341342916663213 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/22,2.8915871663461536 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/22,3.15187881978022 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/21,6.19350000033501 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/10/31,9.710162502582516 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/11/09,2.3565364932692288 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/11/09,3.1751945961538444 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/11/08,2.4006711423076896 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/10/24,12.624899999984994 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/12/10,13.782129173519175 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/12/02,22.320833333333344 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/11/24,21.67155833333335 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/02/21,11.270358333870847 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/02/21,11.383258333870842 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/04/10,12.94708333328583 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/04/10,12.877358333285828 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/04/09,13.673824999905 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/04/02,13.335799999857503 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/09,11.072398401453334 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/31,9.53495227019 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/26,3.126047581333331 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/05,16.53965000019499 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/05,15.395991673639172 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/28,13.81885834713334 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/28,5.813150000337506 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/27,23.11570000234751 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/22,3.0986756197391667 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/06,5.1788250001424965 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/21,2.9268522500000023 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/21,2.564099999999998 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/08/10,16.566039774665004 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/08/05,2.702424253406668 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/30,3.689450000000007 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/23,3.406200000000004 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/23,3.486800000000006 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/22,3.1084340000000044 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/06,8.09416515347833 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/01,6.914024236786665 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/01,6.209310606786661 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/01,3.7009000001924943 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/08/31,4.042390914999993 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/08/23,2.0947590000000007 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/10/03,6.719692428500834 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/28,13.653644643189631 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/23,12.373925000712504 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/10/03,5.259075000000003 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/10/03,4.294750000000001 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/10/02,4.878481754999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/25,19.21783333563333 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/25,5.908525000650009 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/11/03,3.686173329999995 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/11/28,8.929202087943324 +Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/11/28,12.401327084065848 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2014/12/29,8.236183333118339 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2014/12/29,9.327241666851672 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/01/22,23.67189999999999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/01/22,23.67189999999999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/02/23,22.348225000000006 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/03/10,21.67155833333335 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/02/22,21.791766666666685 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/02/23,22.348225000000006 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/03/10,21.67155833333335 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/02/22,21.791766666666685 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/04/28,8.376649946153801 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/04/28,6.849053210398331 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/06,4.019125000192502 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/06,13.645675029900003 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/04/28,8.376649946153801 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/04/28,6.849053210398331 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/06,4.019125000192502 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/06,13.645675029900003 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/06,4.507820836798334 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/30,6.968699998350006 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/30,13.018219167929178 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/07,14.965458333405811 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/07,14.826408333405814 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/29,3.904020464999992 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/22,3.842058194999997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/22,5.122969547999993 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/06,4.507820836798334 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/30,6.968699998350006 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/30,13.018219167929178 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/07,14.965458333405811 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/07,14.826408333405814 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/29,3.904020464999992 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/22,3.842058194999997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/22,5.122969547999993 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/07/08,5.357935827130836 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/22,13.164591712809184 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/07/08,5.357935827130836 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/22,13.164591712809184 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/09,3.4619424366666607 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/01,3.48144423076923 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/09,3.4619424366666607 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/01,3.48144423076923 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/03,6.000994365230833 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/03,12.47191050122917 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/25,3.161780304999997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/11,5.083740874999998 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/11,4.355402250000002 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/02,10.264285897508396 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/03,6.000994365230833 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/03,12.47191050122917 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/25,3.161780304999997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/11,5.083740874999998 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/11,4.355402250000002 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/02,10.264285897508396 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/26,3.184476521666662 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/04,8.024775000000004 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/27,2.392703143269229 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/27,2.681964855769232 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/26,3.184476521666662 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/04,8.024775000000004 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/27,2.392703143269229 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/27,2.681964855769232 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/05,2.1624997499999967 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/29,12.987833333070832 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/29,12.824183333070833 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/05,2.1624997499999967 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/29,12.987833333070832 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/29,12.824183333070833 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/29,11.386378622136103 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/22,8.426895838443347 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/22,4.660975003274997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/12/07,2.946481750000005 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/30,6.935750002307482 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/30,6.222633335215819 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/29,11.386378622136103 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/22,8.426895838443347 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/22,4.660975003274997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/12/07,2.946481750000005 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/30,6.935750002307482 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/30,6.222633335215819 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/01/24,21.791766666666685 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/01/24,21.791766666666685 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/02/26,22.26459166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/02/26,22.348225000000006 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/03/05,11.408225000385 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/02/26,22.26459166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/02/26,22.348225000000006 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/03/05,11.408225000385 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/05,10.096881819999991 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/05,10.096881819999991 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/07,8.960466670326678 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/30,6.5559583466666576 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/30,6.793397739999992 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/21,15.937791726666692 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/29,5.230953426620829 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/22,9.561675000362492 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/22,4.616200000072493 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/07,8.960466670326678 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/30,6.5559583466666576 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/30,6.793397739999992 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/21,15.937791726666692 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/29,5.230953426620829 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/22,9.561675000362492 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/22,4.616200000072493 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/23,3.7538233312308353 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/31,4.234567824899165 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/24,7.166000013872495 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/24,10.14770001622001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/23,3.7538233312308353 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/31,4.234567824899165 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/24,7.166000013872495 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/24,10.14770001622001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/03,11.05934167392916 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/03,9.064727091898332 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/24,4.222212502650001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/11,13.112633333643323 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/11,13.65533333374332 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/25,2.504727423626374 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/25,3.2502482274725257 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/03,11.05934167392916 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/03,9.064727091898332 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/24,4.222212502650001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/11,13.112633333643323 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/11,13.65533333374332 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/25,2.504727423626374 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/25,3.2502482274725257 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/11,4.000545656666656 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/04,2.8507537749999976 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/04,2.844337899999998 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/26,5.695383342893333 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/03,3.2612804807692304 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/27,4.068775441538456 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/27,3.3167581107692268 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/11,4.000545656666656 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/04,2.8507537749999976 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/04,2.844337899999998 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/26,5.695383342893333 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/03,3.2612804807692304 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/27,4.068775441538456 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/27,3.3167581107692268 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/05,2.9797491649999985 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/05,2.9598120399999988 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/27,3.363238639999996 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/04,4.091547759999995 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/05,2.9797491649999985 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/05,2.9598120399999988 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/27,3.363238639999996 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/04,4.091547759999995 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/07,4.601377732252741 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/07,4.832193660586075 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/28,15.677000000000014 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/21,2.795102299999999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/21,2.370945450000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/06,2.411517961538459 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/29,4.1839250000725 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/29,4.850450000239999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/07,4.601377732252741 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/07,4.832193660586075 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/28,15.677000000000014 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/21,2.795102299999999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/21,2.370945450000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/06,2.411517961538459 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/29,4.1839250000725 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/29,4.850450000239999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/08,5.319793185072493 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/08,3.6233272801449954 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/23,15.549106060633344 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/23,18.215602281642507 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/07,2.4006304307692274 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/08,5.319793185072493 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/08,3.6233272801449954 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/23,15.549106060633344 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/23,18.215602281642507 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/07,2.4006304307692274 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/10,21.722041666666684 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/10,10.101950000000022 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/09,8.862331249990008 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/23,3.1719000000000097 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/10,21.722041666666684 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/10,10.101950000000022 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/09,8.862331249990008 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/23,3.1719000000000097 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/03,22.26459166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/04,21.75304166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/04,21.750616666666684 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/03,22.26459166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/04,21.75304166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/04,21.750616666666684 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/03/08,14.057499999857509 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/27,11.980066666851664 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/20,15.006274999905008 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/03/08,14.057499999857509 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/27,11.980066666851664 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/20,15.006274999905008 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/03/23,22.34590833333334 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/09,20.35595833467336 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/09,20.28298333582336 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/03/23,22.34590833333334 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/09,20.35595833467336 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/09,20.28298333582336 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/24,13.783575000072515 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/05/11,3.54614773 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/05/11,4.163732729999998 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/24,13.783575000072515 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/05/11,3.54614773 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/05/11,4.163732729999998 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/06/11,3.957684805671548 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/06/03,12.495900002499983 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/06/11,3.957684805671548 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/06/03,12.495900002499983 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/05,2.72584289 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/05,2.72584289 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/07,8.861362500090014 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/07,10.43793750286001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/29,4.833553417928334 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/30,2.614989455769231 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/30,2.9836248846153843 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/07,8.861362500090014 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/07,10.43793750286001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/29,4.833553417928334 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/30,2.614989455769231 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/30,2.9836248846153843 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/30,10.279737507840004 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/23,2.9966977350724973 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/23,3.029747735072497 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/07,3.3504022500000064 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/30,10.279737507840004 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/23,2.9966977350724973 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/23,3.029747735072497 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/07,3.3504022500000064 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/01,3.858278866666658 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/24,2.714387113333333 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/24,2.895423478333332 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/02,2.217958242857141 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/02,2.7370168173076923 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/23,4.108349999999997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/01,3.858278866666658 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/24,2.714387113333333 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/24,2.895423478333332 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/02,2.217958242857141 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/02,2.7370168173076923 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/23,4.108349999999997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/11,6.734767312380949 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/11,6.676840156834167 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/25,5.53905080333333 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/11,6.734767312380949 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/11,6.676840156834167 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/25,5.53905080333333 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/26,2.9944442307692323 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/05/05,11.687766698914173 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/05/29,13.741799995887495 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/05/30,4.0492002857692215 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/05/30,2.806932475000002 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/09,3.948230313405828 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/09,3.931662133405828 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/06/30,16.783566666236656 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/08,5.208075000407501 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/01,19.16337500007248 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/01,18.52875000007248 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/06/22,4.744359102299998 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/08/10,3.179990502435897 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/08/10,3.1461219639743585 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/08/09,6.808100000000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/09/03,7.293224994527499 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/09/27,8.595899999810014 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/09/27,9.639012499460016 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/10/05,3.2315795250000003 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/10/05,3.392113599999999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/12/07,22.407050000000005 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/12/08,21.848400000000016 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/02/09,14.154408333285833 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/02/02,22.76205 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/03/06,22.451158333333343 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/03/06,22.451158333333343 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/02/26,21.791766666666685 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/02/26,21.88613333333335 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/04/23,7.4358249917250046 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/04/23,9.06627916965917 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/05/08,3.265769445000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/04/22,2.6514193375 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/06/01,11.262891669836684 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/06/09,3.673186349999995 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/07/03,14.658316717314186 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/06/26,18.37359166645165 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/06/26,17.93716666645165 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/08/04,16.414816669111676 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/08/05,2.8283500000475 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/08/05,3.2961000000000062 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/07/27,6.219150000237505 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/05,3.859862896666658 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/06,2.7070518500000014 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/06,2.7049980000000007 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/21,3.6494454499999938 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/10/08,3.9314175707692254 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/10/08,3.502524232307688 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/29,16.155441667666654 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/08,6.499824996225012 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/09,3.0385750000000025 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/09,2.9151250000000006 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/12/11,10.542491666851673 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/25,16.019278503966888 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/25,10.01028792106167 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/02/05,22.326100000000007 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/02/29,21.750616666666684 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/02/29,21.88613333333335 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/02/20,21.791766666666685 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/04/01,16.89742500023752 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/04/01,11.961181249712492 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/02,11.930792436666673 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/04/25,4.942610290783566 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/04/25,4.693474304668569 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/10,13.90655833331833 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/03,18.62962499995501 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/03,18.24737499997001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/27,4.025885613478326 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/27,4.1352356134058255 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/11,4.815850000382495 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/04,15.25311667478917 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/04,4.766875000964997 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/05,4.213665919800006 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/28,7.298424989405 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/28,9.72949998519999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/06,2.5504095293956066 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/06,2.6803995611263742 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/06,6.667321976666671 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/30,4.268018199999989 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/30,4.13552139999999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/07,3.11311125 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/07,4.021352299999995 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/22,8.91880125414499 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/30,3.357000000000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/23,7.806593180072502 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/23,6.340504539999996 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/10/09,5.022204589999992 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/09/23,11.954752308877486 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/10/10,13.69625833333332 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/10/10,13.499266666666651 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/09/24,12.247433333333325 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/09/24,14.106983333405822 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/11/10,10.343071862380942 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/10/25,6.132324995595009 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/01/30,21.75304166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/03/02,22.177183333333343 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/04/04,14.136874999905 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/04/04,13.768649999904996 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/05/06,3.10827887 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/05/06,2.392063050000002 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/05/29,7.674016670441656 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/06/23,3.0670858740384626 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/06/23,3.286447848076921 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/10,3.3857945000000003 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/10,3.4824945 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/09/10,8.252795833313332 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/25,5.070283334705838 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/09/11,8.061650000000002 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/09/11,2.60981253076923 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/26,2.99862725 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/26,2.8741000000000008 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/06,3.431338833739164 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/06,3.784320613666663 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/10/28,8.72006807238095 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/05,4.83756923076923 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/10/29,2.3236407048076897 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/10/29,2.411254979395603 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/12/07,21.77565833333335 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/24,2.809719427499998 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/21,2.49215885 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/12/24,23.455858333333325 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/01/08,21.919450000000012 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/01/25,22.29457500000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/01/25,22.17259166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/04/06,8.306966665576676 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/03/30,22.26459166666668 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/04/06,18.510609089857507 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/03/29,21.88613333333335 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/09,3.171081783269229 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/09,2.863344133269231 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/08,3.991400743333328 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/01,5.247679559999994 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/01,6.091463634999991 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/04/30,4.6146000023 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/04/22,3.387332692307689 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/31,17.39138499981 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/25,7.654100007717488 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/25,10.606458351325823 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/24,3.555827250000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/04,9.217958336225834 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/06/29,9.49498333904832 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/06/29,9.22453333912082 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/04,13.527558334333348 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/04,18.37443333393334 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/03,13.2083000001675 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/06/26,4.153517930769221 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/06/26,3.372359149999994 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/28,2.770852250000007 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/28,2.749375000000005 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/10,8.975202280337498 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/08/24,6.12050666315417 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/08/29,13.502733333743327 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/08/29,13.34730833364333 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/08/28,2.4199227 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/22,2.430046981666667 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/22,2.599189416666667 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/30,16.305691667466654 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/21,9.769283342895818 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/11/09,2.2494892249999974 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/11/09,3.584393942307692 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/11/08,1.983488499999996 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/12/10,11.597906667289172 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/02/04,22.23312500000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/10,12.575749999904993 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/10,12.72161666657166 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/09,14.30370833328583 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/02,22.262833333333347 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/01,14.573499999857509 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/09,10.225870838393345 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/31,7.232893556834168 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/26,3.265758178072497 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/26,4.019166524666659 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/05,16.273637500072482 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/05,15.143637500072478 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/04,14.20477500028499 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/28,18.57504583786084 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/28,13.018250002870005 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/27,17.967350009152494 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/22,2.957064998217498 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/07/06,5.569717426714166 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/21,5.480459100192491 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/21,3.1572272500475007 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/10,16.656074999999987 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/05,13.56947917411917 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/05,16.47314584289083 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/07/30,2.639452250000001 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/07/23,18.25665416666915 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/07/23,17.825695833048307 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/06,4.184084855072493 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/01,3.249082588405829 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/01,7.000209090380005 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/01,3.333456849999996 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/31,2.840271789999999 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/23,2.1391362500000004 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/10/03,16.52253560666669 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/28,11.00866667258166 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/23,3.1409106172216656 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/23,3.246131033960832 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/10/03,3.350640549999996 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/10/03,4.2429377429999935 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/10/02,5.402515919999996 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/25,15.77082500244502 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/25,7.650300000772504 +Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/11/03,6.999864024318332 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2014/12/29,17.7192386495975 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2014/12/29,15.888954955198331 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/07,10.376091666666683 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/01/22,24.072216666666648 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/07,10.376091666666683 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/01/22,24.072216666666648 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/23,22.674233333333337 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/22,22.15403333333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/23,22.674233333333337 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/22,22.15403333333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/04/03,10.395741666286693 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/04/03,10.395741666286693 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/05,8.451774999495003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/06,9.25717500019248 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/06,7.465225000192488 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/05,8.451774999495003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/06,9.25717500019248 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/06,7.465225000192488 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/06,7.815991662321664 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/30,7.714274999695009 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/07,14.495799999784984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/07,13.998724999999984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/29,4.928844704892496 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/22,3.279574413333327 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/22,3.3983167883333247 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/06,7.815991662321664 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/30,7.714274999695009 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/07,14.495799999784984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/07,13.998724999999984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/29,4.928844704892496 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/22,3.279574413333327 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/22,3.3983167883333247 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/07/08,4.514367053440002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/22,5.482085262776898 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/07/08,4.514367053440002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/22,5.482085262776898 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/09,3.556286399999993 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/07/24,14.81220835187834 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/10,3.5347417923076923 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/10,3.879940630769225 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/01,4.6050317499999975 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/09,3.556286399999993 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/07/24,14.81220835187834 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/10,3.5347417923076923 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/10,3.879940630769225 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/01,4.6050317499999975 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/03,5.909274992415012 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/03,8.278617082865855 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/11,2.966508800000002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/11,2.5924880000000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/02,7.6342750004825 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/03,5.909274992415012 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/03,8.278617082865855 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/11,2.966508800000002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/11,2.5924880000000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/02,7.6342750004825 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/05,7.802923483333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/05,6.235207583333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/26,8.759400002969992 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/04,8.53680000126998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/27,2.518333786538459 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/27,2.6155482932692307 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/05,7.802923483333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/05,6.235207583333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/26,8.759400002969992 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/04,8.53680000126998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/27,2.518333786538459 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/27,2.6155482932692307 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/05,2.289915699999997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/05,2.289915699999997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/29,8.813242021429515 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/22,3.072544489166668 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/22,3.464030944807688 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/12/07,3.570300000000007 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/30,2.2874218624999987 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/30,2.8712363086538466 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/21,7.383841666666649 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/29,8.813242021429515 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/22,3.072544489166668 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/22,3.464030944807688 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/12/07,3.570300000000007 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/30,2.2874218624999987 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/30,2.8712363086538466 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/21,7.383841666666649 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/02/26,22.76205 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/02/26,22.64890000000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/05,9.482699999427508 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/05,9.409799999427516 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/02/26,22.76205 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/02/26,22.64890000000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/05,9.482699999427508 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/05,9.409799999427516 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/05,13.331037520459995 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/29,6.349124995655013 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/29,8.059874999867512 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/05,13.331037520459995 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/29,6.349124995655013 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/29,8.059874999867512 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/30,2.6506674366666654 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/30,2.6542022849999984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/21,5.522357573333328 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/29,3.2699568299999964 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/22,3.0040750000000056 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/22,11.469949999999992 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/30,2.6506674366666654 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/30,2.6542022849999984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/21,5.522357573333328 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/29,3.2699568299999964 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/22,3.0040750000000056 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/22,11.469949999999992 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/23,7.728575008232499 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/31,4.245926913204998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/24,4.006599999999992 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/24,4.397199999999995 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/23,7.728575008232499 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/31,4.245926913204998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/24,4.006599999999992 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/24,4.397199999999995 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/03,19.398383333333328 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/03,15.657683333333326 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/24,5.4118358286783375 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/11,10.329800000237492 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/11,9.051850000237488 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/25,2.661277888333336 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/25,2.764609075 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/03,19.398383333333328 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/03,15.657683333333326 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/24,5.4118358286783375 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/11,10.329800000237492 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/11,9.051850000237488 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/25,2.661277888333336 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/25,2.764609075 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/11,7.210901488372736 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/04,2.992644699999998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/04,3.0048053066666647 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/26,10.040400006994991 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/11,7.210901488372736 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/04,2.992644699999998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/04,3.0048053066666647 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/26,10.040400006994991 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/05,3.5452363999999927 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/05,4.804195764102555 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/27,3.4678748513333306 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/04,3.7919132499999937 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/28,15.946241669324149 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/28,17.9274458341958 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/05,3.5452363999999927 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/05,4.804195764102555 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/27,3.4678748513333306 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/04,3.7919132499999937 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/28,15.946241669324149 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/28,17.9274458341958 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/07,4.0521522849999965 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/07,2.8184644133333325 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/28,5.599135608380834 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/21,4.100915778333325 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/21,4.0175726083333245 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/06,2.1585863499999984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/29,2.734402124999999 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/29,2.707550550000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/07,4.0521522849999965 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/07,2.8184644133333325 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/28,5.599135608380834 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/21,4.100915778333325 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/21,4.0175726083333245 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/06,2.1585863499999984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/29,2.734402124999999 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/29,2.707550550000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/08,6.316791674096668 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/08,6.6869166748091695 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/23,3.2873804370724997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/23,3.2727933137391663 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/07,2.828314580769231 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/08,6.316791674096668 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/08,6.6869166748091695 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/23,3.2873804370724997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/23,3.2727933137391663 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/07,2.828314580769231 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/10,8.328475000200005 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/09,2.5755795 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/23,3.644000000000008 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/10,8.328475000200005 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/09,2.5755795 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/23,3.644000000000008 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/01/11,21.080333333190858 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/25,21.791766666666685 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/01/11,21.080333333190858 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/25,21.791766666666685 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/04,21.750616666666684 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/04,21.750616666666684 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/04,21.750616666666684 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/04,21.750616666666684 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/20,20.383683333238366 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/20,20.383683333238366 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/03/23,22.447608333333346 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/09,20.56388333323837 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/09,20.536783333190865 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/03/23,22.447608333333346 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/09,20.56388333323837 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/09,20.536783333190865 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/24,7.497735606739169 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/05/11,2.6011158500000016 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/05/11,2.229058465000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/24,7.497735606739169 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/05/11,2.6011158500000016 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/05/11,2.229058465000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/11,6.824599995457504 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/11,6.824599995457504 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/05,2.8158659500000005 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/28,3.098152250000004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/28,2.355175000000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/05,2.8158659500000005 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/28,3.098152250000004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/28,2.355175000000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/07,6.5611458324608485 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/07,6.70227082454084 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/29,20.576595833333307 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/30,3.2526727 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/30,2.664211165000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/07,6.5611458324608485 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/07,6.70227082454084 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/29,20.576595833333307 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/30,3.2526727 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/30,2.664211165000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/30,7.066593940547499 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/30,7.066593940547499 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/01,4.965207130769227 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/24,6.160600753333334 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/24,6.850809090000002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/02,2.345895324999998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/02,2.454787043269232 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/23,3.455130949999994 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/01,4.965207130769227 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/24,6.160600753333334 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/24,6.850809090000002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/02,2.345895324999998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/02,2.454787043269232 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/23,3.455130949999994 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/11,7.951055308333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/11,8.548338650000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/10,3.267179500000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/25,11.425841666666672 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/11,7.951055308333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/11,8.548338650000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/10,3.267179500000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/25,11.425841666666672 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/12/04,12.422614584825851 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/05/05,4.353199999999998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/04/28,13.30799166661916 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/04/28,13.928049999952496 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/05/29,13.567150020700003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/05/30,3.5310439433333327 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/05/30,4.072427030769223 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/09,4.161570499999991 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/09,4.19277049999999 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/08,14.574900000712493 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/01,7.340004926327492 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/01,8.838425759078325 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/06/22,2.5347476500000026 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/08/10,3.368132524999997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/08/10,3.366832524999997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/08/25,12.714333333478317 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/10/05,2.35085079230769 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/10/05,2.400345497664834 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/12/07,22.34590833333334 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/12/08,21.856800000000018 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/11/22,21.919450000000012 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/11/22,21.919450000000012 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/12/23,8.087316666666673 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/02/09,22.47567500000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/02/01,21.848400000000016 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/02/26,21.856800000000018 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/02/26,21.856800000000018 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/04/23,13.208690976019984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/04/23,12.37015594786999 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/05/08,5.0959591023 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/04/22,9.856354613350849 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/06/01,10.734908333733337 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/06/09,5.662020479590828 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/07/03,5.569713038876676 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/06/26,7.156437878860833 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/06/26,7.349271969028337 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/04,4.832796982330004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/05,3.022152124999999 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/05,2.590361000000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/07/27,4.596100000989995 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/05,4.273595479999989 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/29,8.129951328004159 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/29,7.369467804709161 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/06,3.0339437124999997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/06,2.5393546750000016 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/21,7.117781056666668 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/10/08,2.433402000000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/10/08,2.7703419625 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/29,9.833725000549984 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/11/08,6.39164999622501 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/10/23,5.49182310179333 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/12/11,8.845274999535022 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/12/11,9.216774998735014 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/11/25,12.942933333143335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/11/25,13.21464999981001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/04/01,11.2102465909225 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/04/01,11.228398185570002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/02,8.758873483333332 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/04/25,7.945320834318344 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/04/25,7.496245834318342 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/03,3.4664227499999964 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/03,3.7658932199999953 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/27,3.690786375072496 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/27,3.698756071739162 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/06/04,8.501150000624994 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/06/04,4.668816667004156 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/26,2.995495009999998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/05,17.929720833380824 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/06,2.6302931000000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/06,2.7073800048076926 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/06,4.609788654999987 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/30,3.7330364549999926 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/30,3.754211454999993 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/07,4.290750000144994 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/07,3.970025000072495 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/31,13.63154999908501 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/31,13.489824998905004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/22,8.605925011884997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/30,6.981313500000008 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/23,3.889322824999995 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/23,2.505449675000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/10/09,5.167118849047613 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/09/23,3.911346218478328 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/10/10,16.13727575844083 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/10/10,10.707075000119994 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/09/24,5.934675000555005 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/09/24,5.702025000675004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/11/10,5.079086244047619 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/10/25,15.444900016100004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/12/29,21.867666666666683 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/01/29,9.95794166645168 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/01/30,21.75304166666668 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/01/30,21.75304166666668 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/03/02,22.26459166666668 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/04/03,22.476608333333346 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/05/06,3.9115750001674985 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/05/06,4.1870250001675 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/06/07,3.2403545000475016 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/06/07,3.2978795000000023 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/05/29,17.50296666666665 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/07/09,4.891274999999991 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/07/09,2.8636522500000035 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/02,20.84317250170502 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/02,7.9407025019900095 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/10,5.529136350072491 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/10,5.109925000072494 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/07/25,12.104074999569985 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/07/25,11.51779999999999 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/25,9.692602270675003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/09/11,3.5288453750000044 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/09/11,4.3701249999999945 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/09/26,20.977645832473332 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/06,11.653916674189166 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/06,4.695787887029165 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/10/28,6.578895460190006 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/09,2.5630225000000024 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/09,2.553304250000002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/05,3.477034000192503 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/10/29,2.069724824999996 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/10/29,2.3783376125 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/24,2.3195271999999973 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/21,3.304903474999997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/12/24,24.44116666666665 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/01/08,21.867666666666683 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/02/02,21.675758333333352 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/02/02,21.77565833333335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/01/25,21.961558333333347 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/01/25,22.274983333333346 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/02/26,22.019983333333347 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/02/26,12.499724999784998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/04/06,17.39719167373416 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/03/29,21.867666666666683 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/09,3.310877294999997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/09,2.8313272949999986 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/09,2.542002175000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/09,2.4107040000000017 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/08,3.6708159399999953 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/01,3.02222125 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/01,4.1012505099999945 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/04/30,4.392002299999998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/26,7.224409090432503 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/26,7.338750000600004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/10,2.737625000000004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/10,2.806825000000005 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/25,2.6283022500000057 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/25,2.667652250000006 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/24,14.539200000189997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/07/04,7.6689659107 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/29,4.720821400072486 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/29,4.590847800072488 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/07/11,4.096425000000004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/07/03,5.409386860606549 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/26,4.969296596781661 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/26,5.20234053491833 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/25,2.9153189633333327 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/10,8.954474237874173 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/08/24,2.3276230319597087 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/08/29,2.955925000047499 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/08/29,2.9045522500475003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/08/28,2.7553772500475 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/22,4.244045576121071 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/22,3.800532313846072 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/30,3.836488644309165 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/30,4.426988643901664 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/22,2.7034684550000003 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/22,2.9660929615384624 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/21,3.841925009999995 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/10/31,4.703578900895714 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/11/09,2.30781059285714 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/11/09,2.520842485576924 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/11/08,2.097552099999998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/10/31,17.102679166454145 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/12/10,2.7005044500000013 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/12/02,11.822175000335 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/11/24,3.017416350000002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/12/27,11.62234166665167 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/02/04,21.970933333333345 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/02/21,10.528933333023346 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/02/21,10.567233333023346 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/10,12.966724999952492 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/10,11.488408333238326 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/09,12.274399999904992 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/02,12.82560833898833 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/02,13.545783333238331 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/01,9.491441849816852 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/09,10.378470836440846 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/31,7.481636360265001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/26,3.349468180072496 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/26,3.377911360289997 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/05,8.041550000892501 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/05,3.4487250014499957 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/04,4.197952250000004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/28,4.954450000384998 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/28,4.295564413598323 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/27,22.063416671266676 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/22,3.3250649983624943 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/06,3.768521630769224 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/21,3.6589250291025626 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/21,3.5112088157692303 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/10,16.56214999990499 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/05,4.7103986261608926 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/05,2.3639991045950013 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/31,6.254039400120002 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/31,4.0085054423076905 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/30,4.82693021333333 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/23,9.45757499802 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/23,8.363149996900004 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/22,5.672575000192492 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/06,10.233906709095129 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/01,9.812624132428452 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/01,3.804909100072495 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/01,3.455600000072496 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/31,2.494897699999999 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/23,2.229702200000001 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/28,7.202220831630853 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/23,10.47883749824751 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/23,8.187470826478341 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/10/03,3.844854554999993 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/10/03,2.7990340500000026 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/10/02,3.8290091299999953 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/25,6.770125000602504 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/25,3.099700001377496 +McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/11/03,6.033697769999992 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2014/12/29,12.79644041822666 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2014/12/29,12.75699041803666 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/07,10.546391666666684 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/07,10.554416666666684 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/01/22,24.312499999999982 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/06,21.920716666666685 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/07,10.546391666666684 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/07,10.554416666666684 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/01/22,24.312499999999982 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/06,21.920716666666685 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/23,22.47810000000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/03/10,21.88613333333335 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/22,14.478441666619169 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/23,22.47810000000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/03/10,21.88613333333335 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/22,14.478441666619169 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/04/03,9.66591499971502 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/04/03,9.66591499971502 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/05,21.265841666091674 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/06,10.007858335705818 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/06,9.317775002419983 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/05,21.265841666091674 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/06,10.007858335705818 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/06,9.317775002419983 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/06,4.436700979589999 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/07,15.240850000184986 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/07,14.287808333118312 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/29,9.04575000299748 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/22,4.063405313333323 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/22,3.3909166783333258 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/06,4.436700979589999 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/07,15.240850000184986 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/07,14.287808333118312 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/29,9.04575000299748 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/22,4.063405313333323 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/22,3.3909166783333258 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/07/08,4.77376932666667 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/22,6.759100002997503 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/07/08,4.77376932666667 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/22,6.759100002997503 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/09,3.4277045499999947 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/07/24,21.067466664916672 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/09,3.4277045499999947 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/07/24,21.067466664916672 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/11,2.965534310769227 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/11,2.983159475000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/02,18.43573333331833 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/26,5.204625000434994 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/26,4.875750000072493 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/11,2.965534310769227 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/11,2.983159475000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/02,18.43573333331833 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/26,5.204625000434994 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/26,4.875750000072493 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/05,5.397030305145005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/05,5.261767433695832 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/26,14.004591678406657 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/04,4.57856894736833 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/27,2.5542930749999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/27,2.63221595576923 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/05,5.397030305145005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/05,5.261767433695832 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/26,14.004591678406657 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/04,4.57856894736833 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/27,2.5542930749999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/27,2.63221595576923 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/05,2.905657824999998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/05,2.905657824999998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/29,8.439074993035005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/22,5.720141015043572 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/22,6.378600002730002 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/12/07,3.644000000000008 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/30,2.5713540374999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/30,2.7489282663461547 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/21,16.004783334333318 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/29,8.439074993035005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/22,5.720141015043572 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/22,6.378600002730002 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/12/07,3.644000000000008 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/30,2.5713540374999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/30,2.7489282663461547 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/21,16.004783334333318 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/02/26,22.402925000000003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/02/26,22.47567500000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/03/05,14.266350000337502 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/03/05,14.3486250003375 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/02/26,22.402925000000003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/02/26,22.47567500000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/03/05,14.266350000337502 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/03/05,14.3486250003375 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/05,14.422292331857482 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/05,14.422292331857482 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/07,5.232169167496668 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/30,6.484499256666659 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/30,7.725499256666662 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/21,7.333537128333335 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/29,6.532325000737484 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/22,4.409895865504614 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/22,4.833710507812304 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/07,5.232169167496668 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/30,6.484499256666659 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/30,7.725499256666662 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/21,7.333537128333335 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/29,6.532325000737484 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/22,4.409895865504614 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/22,4.833710507812304 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/31,9.673566675939153 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/24,4.494934089999998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/24,3.7281749999999927 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/31,9.673566675939153 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/24,4.494934089999998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/24,3.7281749999999927 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/03,10.437025005977487 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/03,10.67777500372248 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/24,14.255083345238338 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/11,11.935083333333326 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/11,10.805950000047485 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/25,2.677613625000003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/25,2.8714079307692275 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/03,10.437025005977487 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/03,10.67777500372248 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/24,14.255083345238338 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/11,11.935083333333326 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/11,10.805950000047485 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/25,2.677613625000003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/25,2.8714079307692275 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/11,3.12845000161 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/04,3.4518749999999945 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/04,3.526634099999994 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/27,15.472125000099984 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/27,8.766475000507507 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/11,3.12845000161 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/04,3.4518749999999945 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/04,3.526634099999994 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/27,15.472125000099984 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/27,8.766475000507507 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/05,3.691377299999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/05,3.789752299999994 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/27,3.4734780384783277 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/04,4.0880249999999965 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/28,4.274490910264996 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/28,3.957821531034221 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/05,3.691377299999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/05,3.789752299999994 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/27,3.4734780384783277 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/04,4.0880249999999965 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/28,4.274490910264996 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/28,3.957821531034221 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/07,3.718537128333328 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/07,3.0397878816666646 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/28,10.219633335168336 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/21,3.978961417999989 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/21,3.5115802246666585 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/06,2.470609049999999 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/29,2.510945349999999 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/29,2.4961947355769225 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/07,3.718537128333328 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/07,3.0397878816666646 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/28,10.219633335168336 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/21,3.978961417999989 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/21,3.5115802246666585 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/06,2.470609049999999 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/29,2.510945349999999 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/29,2.4961947355769225 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/08,3.660666816999998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/08,4.2425653103333305 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/23,2.642179535145 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/23,3.100612872319165 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/07,2.087202199999997 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/08,3.660666816999998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/08,4.2425653103333305 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/23,2.642179535145 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/23,3.100612872319165 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/07,2.087202199999997 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/10,9.700413334473351 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/10,6.098874996560013 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/09,12.816508333718325 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/10,9.700413334473351 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/10,6.098874996560013 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/09,12.816508333718325 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/01/02,22.37635000000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/01/02,22.37635000000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/08,11.844875005555007 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/08,12.530000000585003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/02/27,13.900025001102495 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/02/20,20.489583333285868 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/08,11.844875005555007 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/08,12.530000000585003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/02/27,13.900025001102495 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/02/20,20.489583333285868 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/04/08,22.26459166666668 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/23,22.26459166666668 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/04/08,22.26459166666668 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/23,22.26459166666668 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/04/24,14.92896667356667 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/11,3.0362221500000004 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/11,2.5800029250000023 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/04/24,14.92896667356667 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/11,3.0362221500000004 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/11,2.5800029250000023 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/06/11,6.711266657684172 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/27,12.997324999354982 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/06/11,6.711266657684172 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/27,12.997324999354982 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/05,2.587291325000002 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/05,2.587291325000002 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/07,3.091225000502503 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/07,4.907218749737507 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/29,21.690050000139998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/06,6.255841666714172 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/30,2.6771199057692314 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/30,2.784308700000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/07,3.091225000502503 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/07,4.907218749737507 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/29,21.690050000139998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/06,6.255841666714172 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/30,2.6771199057692314 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/30,2.784308700000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/30,9.592858333548332 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/23,4.790621105714278 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/23,4.777483833714277 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/30,9.592858333548332 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/23,4.790621105714278 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/23,4.777483833714277 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/01,4.202783406666659 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/24,5.6421409156525 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/24,5.729843185845001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/02,2.8165960750000005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/02,2.735918993269231 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/23,6.717500000000006 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/01,4.202783406666659 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/24,5.6421409156525 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/24,5.729843185845001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/02,2.8165960750000005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/02,2.735918993269231 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/23,6.717500000000006 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/11,8.647867426666659 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/11,8.078914403405827 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/10,3.266500000000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/11,8.647867426666659 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/11,8.078914403405827 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/10,3.266500000000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/12/04,6.6784721046258415 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/05/05,2.733435840000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/04/28,16.053816669779167 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/04/28,15.647616667431665 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/05/29,12.019800009294997 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/05/30,4.349892085769221 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/05/30,4.571149999999992 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/09,3.6204432000724944 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/09,3.4781772999999943 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/08,5.358175001132498 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/01,9.881375000214993 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/01,11.113650000047487 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/06/22,3.016784050000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/08/10,3.701731899999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/08/10,3.6720568999999954 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/08/09,13.606750002300007 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/09/03,18.24789166622165 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/09/03,11.07982500026499 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/08/25,19.90902499997001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/10/05,2.446763549999998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/10/05,2.65783115576923 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/11/22,21.848400000000016 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/02/09,22.47810000000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/02/01,21.848400000000016 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/02/26,21.848400000000016 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/02/26,21.848400000000016 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/04/23,8.906349995412507 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/04/23,8.885524995412508 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/05/08,8.987325013847496 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/04/22,2.9352217 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/06/09,2.388945400000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/07/03,13.62923334284584 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/06/26,16.834333332903324 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/06/26,18.757049999784986 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/04,9.3446000054175 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/05,2.8504212249999985 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/05,4.379149999999993 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/05,4.614266559047612 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/29,9.918210416391688 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/29,10.716469168114177 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/06,3.4187452633333324 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/06,2.722848325000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/21,7.944511360262501 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/10/08,2.9003815500000005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/10/08,3.287208762499997 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/29,3.676783337850829 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/10/23,4.1354242816666575 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/11/09,3.0240250000000053 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/11/25,15.862166668966696 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/11/25,19.59068125020001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/02/05,22.348225000000006 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/02/05,22.348225000000006 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/02/20,21.75304166666668 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/04/01,15.137220843575848 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/04/01,14.382144322497505 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/02,7.07580076833333 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/03,3.408257429666666 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/03,2.5938794950000017 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/27,4.285035606739157 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/27,4.292535606666657 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/26,4.427713624999992 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/05,20.45412500004748 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/06,2.8147414125000005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/06,2.5472689807692324 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/06,3.388263645072496 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/30,3.9057613999999914 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/30,3.92596139999999 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/07,13.513574999769988 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/07,14.317375001000006 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/23,4.620309089999992 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/23,3.8895682049999936 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/09,4.441519726666654 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/10,16.601500002300018 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/10,7.417550000237504 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/01,3.377244627435893 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/09/24,10.68431833474832 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/09/24,8.534660001579981 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/11/10,9.887523379047613 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/25,14.532354178309165 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/12/29,21.867666666666683 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/12/29,21.867666666666683 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/01/29,11.325924999785004 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/04/03,22.21930833333335 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/04/04,10.047206260690004 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/04/04,11.5415562606025 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/05/06,3.534043063333328 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/05/06,3.0508514199999954 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/06/07,3.120877250000003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/06/07,4.561059099999994 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/05/29,17.404433333333323 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/06/23,2.9960046365384625 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/06/23,4.13253655961538 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/02,6.594627277112495 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/02,8.447708361265832 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/10,8.205450000812498 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/10,3.2543500000000045 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/25,16.90248333585085 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/09/11,7.236246213840832 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/09/11,5.051075000507488 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/26,5.709225000167502 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/26,4.7239480641025535 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/09/26,17.572883333333326 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/06,16.99545000474253 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/06,21.05788335412836 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/10/28,6.624118185380004 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/09,3.912548123333326 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/09,4.118356723333326 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/05,3.1671821153846174 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/10/29,2.085574824999996 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/10/29,2.133335849999997 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/12/07,20.46168541671421 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/24,2.4438430999999983 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/21,5.029159089999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/12/24,12.344983333333335 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/01/25,11.478125000000004 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/01/25,11.230341666309176 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/01/25,11.245424999642513 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/02/26,23.553216666666657 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/04/06,14.905275004635008 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/03/22,13.957633333238334 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/09,3.433540224999997 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/09,2.638393550000002 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/08,4.311541673333327 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/01,3.2759110183333315 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/01,3.972924286666662 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/04/30,6.5668681999999965 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/26,10.725495843378331 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/26,10.427458338635835 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/25,6.682525000167503 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/25,4.184861365240002 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/24,4.855660607124159 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/04,4.516774999999993 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/29,17.226700007019964 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/29,15.63635833818331 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/04,17.44734999978751 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/04,9.000075000289995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/03,9.34692500122248 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/26,4.801740161666661 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/26,3.90335153076922 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/25,4.484634100072492 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/07,13.331841667336668 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/28,3.0254295000000013 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/28,4.047302250000002 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/10,6.72737916942417 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/24,16.660391666666666 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/29,4.151859090917497 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/29,5.584875000144991 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/28,2.457956725000003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/22,3.3077364760477352 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/22,3.5351523937377403 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/10/08,2.983877250000005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/10/08,2.451727250000003 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/30,17.52565833349333 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/22,4.625270962093458 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/22,3.5319750000000054 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/21,3.700393199999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/10/31,19.8798250021375 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/11/09,2.4799089499999982 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/11/09,2.337311362499998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/11/08,2.1743065999999995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/10/24,22.64962916584167 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/12/10,2.4037635500000007 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/12/02,4.399475000144998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/11/24,3.803990875000002 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/01/11,21.675758333333352 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/12/27,11.660091666309173 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/02/21,12.779008333318329 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/02/21,13.058450000184996 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/10,10.51058333323833 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/10,12.742358333285829 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/09,14.20355833328583 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/02,13.345399999857504 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/02,14.029658333238336 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/09,10.036820837350843 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/31,8.10464545012 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/26,3.0443295500724985 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/26,4.135020490144995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/05,7.036033333958338 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/05,2.801828035073329 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/28,9.013000000770004 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/28,3.349659090869995 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/27,23.21370833580084 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/22,8.361810606739168 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/06,6.171225000167498 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/21,3.748127250000004 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/21,3.180150713333336 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/10,16.442900007379983 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/05,4.598447619627613 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/05,4.140815805280112 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/30,5.983234090072503 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/23,4.2192295 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/23,3.714850000000005 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/22,14.908174999999972 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/06,10.326760606714164 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/01,6.41985681012 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/01,4.320756820409998 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/01,4.894334090507497 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/31,3.32861345333333 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/23,2.684552100000001 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/10/03,14.58668333333335 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/28,6.870949998490016 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/10/03,3.7639272500724954 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/10/03,4.453113624999993 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/10/02,4.222472749999996 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/25,5.771625000675008 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/25,3.096675001377497 +Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/11/03,5.337188639999994 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2014/12/29,7.689225000217499 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/01/22,23.694941666666654 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/02/06,21.791766666666685 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/01/22,23.694941666666654 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/02/06,21.791766666666685 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/02/23,22.47810000000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/03/10,21.66638333333335 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/02/23,22.47810000000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/03/10,21.66638333333335 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/03,9.608366666286686 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/03,9.608366666286686 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/28,5.1801149991500015 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/28,6.78166499924 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/06,4.383050000214997 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/06,4.304950000265 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/28,5.1801149991500015 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/28,6.78166499924 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/06,4.383050000214997 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/06,4.304950000265 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/06,4.741780244664163 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/30,8.018399995170011 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/30,6.342370824855847 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/07,13.49353333333332 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/07,12.18034999999998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/29,3.180057349999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/22,6.90924167476416 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/22,10.350975026497505 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/06,4.741780244664163 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/30,8.018399995170011 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/30,6.342370824855847 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/07,13.49353333333332 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/07,12.18034999999998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/29,3.180057349999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/22,6.90924167476416 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/22,10.350975026497505 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/07/08,4.290308071992384 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/22,4.382387886503334 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/07/08,4.290308071992384 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/22,4.382387886503334 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/09,4.15878789666666 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/07/24,10.879824997289996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/01,3.9253750000000007 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/09,4.15878789666666 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/07/24,10.879824997289996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/01,3.9253750000000007 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/03,5.658214582650839 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/03,6.481672916119169 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/25,4.5038040065934055 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/11,2.9653179025000003 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/11,2.552854000000002 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/02,2.7493272500475 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/03,5.658214582650839 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/03,6.481672916119169 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/25,4.5038040065934055 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/11,2.9653179025000003 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/11,2.552854000000002 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/02,2.7493272500475 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/05,14.29689813062084 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/05,9.568631472304164 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/26,3.214870479999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/04,12.228474999999982 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/27,2.66385833076923 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/27,3.332028793269231 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/05,14.29689813062084 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/05,9.568631472304164 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/26,3.214870479999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/04,12.228474999999982 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/27,2.66385833076923 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/27,3.332028793269231 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/05,2.2405621423076885 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/29,12.815358333518327 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/05,2.2405621423076885 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/29,12.815358333518327 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/29,9.85590530688666 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/22,4.433864408670828 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/22,4.582591626739162 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/30,2.905806173076924 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/30,3.91856536538461 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/29,9.85590530688666 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/22,4.433864408670828 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/22,4.582591626739162 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/30,2.905806173076924 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/30,3.91856536538461 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/02/10,22.47567500000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/01/24,21.67155833333335 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/02/10,22.47567500000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/01/24,21.67155833333335 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/02/26,21.984966666666672 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/02/26,21.984966666666672 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/05,5.78190543341112 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/03/29,9.05206294248167 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/03/29,14.009660531709176 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/05,5.78190543341112 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/03/29,9.05206294248167 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/03/29,14.009660531709176 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/07,5.414920557715241 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/30,3.779660641666663 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/30,3.7985038216666624 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/21,14.166912536172497 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/29,17.498558333523327 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/22,14.888000000047496 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/07,5.414920557715241 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/30,3.779660641666663 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/30,3.7985038216666624 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/21,14.166912536172497 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/29,17.498558333523327 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/22,14.888000000047496 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/23,4.570387994868213 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/31,5.333476146510834 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/24,2.806073613333334 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/24,4.385841668333328 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/23,4.570387994868213 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/31,5.333476146510834 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/24,2.806073613333334 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/24,4.385841668333328 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/03,5.8964522801450014 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/03,5.521665920145 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/24,11.493441668966655 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/11,15.189899999999971 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/02,3.3881522500000063 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/25,2.358047000000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/25,2.5059694303571445 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/03,5.8964522801450014 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/03,5.521665920145 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/24,11.493441668966655 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/11,15.189899999999971 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/02,3.3881522500000063 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/25,2.358047000000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/25,2.5059694303571445 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/11,6.47606042642667 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/04,3.367177299999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/04,3.210534099999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/26,4.038572931666657 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/03,14.242674999755 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/27,2.628895350000003 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/27,2.526188375000004 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/11,6.47606042642667 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/04,3.367177299999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/04,3.210534099999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/26,4.038572931666657 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/03,14.242674999755 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/27,2.628895350000003 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/27,2.526188375000004 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/05,3.534831849999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/05,3.655781849999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/27,2.693698508550834 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/04,2.4011862500000025 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/28,8.736083333048315 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/28,12.545870838468325 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/05,3.534831849999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/05,3.655781849999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/27,2.693698508550834 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/04,2.4011862500000025 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/28,8.736083333048315 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/28,12.545870838468325 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/07,4.248953667999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/07,3.169497611333331 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/28,2.4092248663333327 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/21,3.002766581666665 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/21,3.019344594999998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/06,2.2886976999999984 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/29,2.612938600000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/29,2.414097700000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/07,4.248953667999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/07,3.169497611333331 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/28,2.4092248663333327 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/21,3.002766581666665 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/21,3.019344594999998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/06,2.2886976999999984 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/29,2.612938600000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/29,2.414097700000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/08,5.983808067252741 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/08,5.788006550586075 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/23,3.474998617072497 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/23,3.745690275405833 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/07,5.590602254807693 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/08,5.983808067252741 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/08,5.788006550586075 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/23,3.474998617072497 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/23,3.745690275405833 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/07,5.590602254807693 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/12/10,22.404625000000006 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/12/10,22.404625000000006 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/01/02,22.326100000000007 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/01/02,22.326100000000007 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/01/27,11.535174998925 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/04,21.838800000000013 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/04,21.867666666666683 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/01/27,11.535174998925 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/04,21.838800000000013 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/04,21.867666666666683 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/28,10.042358333118347 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/28,9.989858333118349 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/08,10.805206250472514 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/08,12.0733750003325 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/20,15.224474999905006 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/20,15.224474999905006 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/28,10.042358333118347 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/28,9.989858333118349 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/08,10.805206250472514 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/08,12.0733750003325 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/20,15.224474999905006 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/20,15.224474999905006 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/23,22.177183333333343 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/23,22.177183333333343 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/04/24,8.046108336714166 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/05/11,5.895704167024158 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/05/11,4.871754167071663 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/04/24,8.046108336714166 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/05/11,5.895704167024158 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/05/11,4.871754167071663 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/11,4.849838235996782 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/11,4.849838235996782 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/05,2.962318150000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/28,2.8696750000000044 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/28,2.7952750000000064 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/05,2.962318150000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/28,2.8696750000000044 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/28,2.7952750000000064 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/29,6.18735833836834 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/30,2.424139675 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/30,2.5093731432692303 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/29,6.18735833836834 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/30,2.424139675 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/30,2.5093731432692303 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/30,13.265050001645 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/23,3.750758217999993 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/23,3.741751417999993 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/30,13.265050001645 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/23,3.750758217999993 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/23,3.741751417999993 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/10,5.464758325288345 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/01,3.859578866666658 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/24,3.071138630217496 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/24,2.945681810217498 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/02,2.396812330769229 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/02,2.613039593269231 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/23,4.316052309999993 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/10,5.464758325288345 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/01,3.859578866666658 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/24,3.071138630217496 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/24,2.945681810217498 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/02,2.396812330769229 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/02,2.613039593269231 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/23,4.316052309999993 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/11/11,7.625184094999994 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/11/11,9.19022576333333 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/25,2.663722250000003 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/11/11,7.625184094999994 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/11/11,9.19022576333333 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/25,2.663722250000003 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/12/04,12.170095837798344 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/05/05,5.1657749999999965 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/05/29,13.832966675866658 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/05/30,4.68098613076922 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/05/30,2.739647500000002 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/07/09,3.371368199999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/07/09,4.791421399999984 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/06/22,2.9311111000000016 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/08/10,4.0446295499999945 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/08/10,3.9117984633333287 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/08/09,9.241358340400811 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/09/03,2.7311772500000018 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/09/03,3.147156750000002 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/08/25,2.889252250000004 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/10/05,2.184124874999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/10/05,2.431008429807692 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/12/08,16.687958333333327 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/11/22,21.67155833333335 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/11/22,21.66638333333335 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/02/09,13.476241666429171 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/02/01,21.867666666666683 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/02/26,21.794191666666684 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/04/23,4.330732973590002 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/04/23,4.306347749170001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/05/08,5.643975006899995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/04/22,2.127761199999997 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/06/10,19.47568333345084 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/06/10,19.28988333364084 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/06/01,10.156950000875028 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/06/09,3.803645499999994 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/07/03,10.688754187366673 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/08/04,14.87994168293416 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/08/05,4.198309984615383 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/08/05,2.712665635000002 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/07/27,5.196999999999989 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/05,9.918680195714288 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/06,2.35653175 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/06,3.286269486538458 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/21,7.033314393333331 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/10/08,2.955156868269229 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/10/08,2.9170671865384588 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/29,14.943166666666649 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/10/23,16.010166668251667 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/11/09,2.5520522500000005 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/12/11,7.881712893848329 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/12/11,9.349016670506677 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/11/25,21.29343333583336 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/11/25,15.998591666666693 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/02/05,22.26459166666668 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/02/29,21.48859166666669 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/02/29,21.30589166666669 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/04/01,8.934522921024165 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/04/01,19.88551666661916 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/02,7.866318187372498 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/04/25,4.2531943606552325 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/04/25,4.150053528412735 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/10,3.023775000000005 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/03,2.875641349999999 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/03,3.473122030769224 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/27,3.797666668405825 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/27,3.874341668333324 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/26,3.730309099999997 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/05,16.831333333738304 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/06,2.537870117307693 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/06,2.8370335240384628 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/06,14.502433333333354 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/30,4.431591126666655 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/30,4.602212881666654 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/07,11.755099999999985 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/07,11.45904999999998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/31,6.812971973620836 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/31,5.897868187144172 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/22,7.078749246666668 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/23,5.2764067249999975 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/23,3.726604500000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/10/09,5.022204589999992 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/09/23,11.333413748379986 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/10/10,7.636825000217495 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/10/01,3.030563273076923 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/09/24,9.565150002419989 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/09/24,7.669125000384983 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/11/10,9.816603682380943 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/10/25,13.320537536275005 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/12/29,21.791766666666685 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/12/29,21.791766666666685 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/01/29,22.76205 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/01/30,21.75304166666668 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/03/02,22.451158333333343 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/04/03,12.54099166642917 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/04/04,8.950024999477524 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/04/04,9.354899999477528 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/05/06,2.944276665000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/05/06,2.844289830000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/04/27,5.5599921627948765 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/06,15.372275000190006 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/07,3.193202250000005 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/07,3.341002250000007 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/05/29,4.589769705046667 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/23,3.287273174999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/23,4.2206409199999975 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/02,9.58885715245584 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/02,3.313192466995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/10,6.500225000454998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/10,4.864690910167494 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/07/25,2.7817545000000057 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/07/25,2.775875000000004 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/09/10,5.149081554096547 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/25,6.837508334733336 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/09/11,3.614568199999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/09/11,3.913474999999993 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/26,3.580454499999997 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/26,3.4944976599999995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/06,6.856470842820828 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/06,9.082250013085003 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/10/28,8.862184116739162 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/05,3.5815397692307704 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/10/29,2.538387180769228 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/10/29,2.7198368798076915 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/12/07,13.843208337885834 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/24,2.4398826423076896 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/21,2.289633999999998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/12/24,23.310041666666663 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/02/01,22.26459166666668 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/01/25,12.987000000184995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/02/26,13.647541666356666 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/02/26,11.830266666651664 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/04/06,7.838577082963349 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/04/06,15.381509621795836 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/03/29,18.53698978230751 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/03/22,13.712508333790844 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/03/22,18.552106250200005 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/09,2.353824850000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/09,2.3472546250000024 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/08,3.121698999999999 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/01,4.4791900399999935 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/01,2.576246475000004 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/04/30,6.176050002299994 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/31,13.318000415764176 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/25,3.2788045000475017 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/25,3.1636272500475027 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/24,3.0701272500000014 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/07/04,3.827850763333328 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/29,14.679998334470833 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/29,15.6035875005175 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/07/03,8.58901211894167 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/26,5.6044549381774935 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/26,4.253540532439166 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/25,4.12092044999999 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/07/28,5.714727249999998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/07/28,5.407179499999999 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/10,9.454817416786677 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/08/24,17.353033334315825 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/08/29,3.798029499999997 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/08/29,2.755325000047502 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/08/28,3.227567963333332 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/10/09,6.207674999710008 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/10/09,6.594149998835013 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/22,8.256424995660002 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/22,6.677699999065009 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/30,3.708879170276664 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/30,3.871779169841665 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/22,3.092817161538459 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/22,3.3902931673076897 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/21,6.418550000240006 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/10/26,14.77748333333332 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/11/09,2.677480330769232 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/11/09,2.6804013476648354 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/11/08,2.8305356432692297 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/10/24,12.237700000400007 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/12/10,2.65569995 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/12/02,3.323654500000002 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/11/24,3.505074999999999 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/12/27,8.643874998687508 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/02/04,22.22352500000001 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/02/21,11.193641666309173 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/04/10,11.225783333285824 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/04/10,10.670058333238323 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/04/02,13.843116666524162 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/09,9.444350002752504 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/31,3.201547576405832 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/26,2.9393477204349985 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/26,3.811394696811661 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/28,3.5002000009424945 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/28,13.342150000145 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/27,22.987225000000013 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/06/22,2.8211621284058324 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/06,2.949336399999998 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/08/05,4.881026190045956 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/08/05,3.8615030331166618 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/30,5.326002276315 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/23,6.922896966906668 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/23,2.8653871707692304 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/22,4.577191309350832 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/06,8.975915153333329 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/01,3.5584545502174945 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/01,4.44001428585928 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/01,2.9987546000724974 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/01,5.598921213743324 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/08/31,3.2300893633333305 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/08/23,3.061413599999997 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/10/03,16.631860606666688 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/28,7.18357083081085 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/28,6.41705624909751 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/23,3.3835045010875 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/23,7.420727250580003 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/10/03,2.90355585 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/10/03,3.097282224999999 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/10/02,3.04825435 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/25,3.2882454499999967 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/25,3.146618179999996 +Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/11/03,2.9664542274999985 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/01/05,12.139949999984998 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/03/11,9.749016666666682 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/03/10,21.67155833333335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/02/22,13.40815833307083 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/03/11,9.749016666666682 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/03/10,21.67155833333335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/02/22,13.40815833307083 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/04/03,9.227275001385005 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/04/03,9.227275001385005 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/04/28,6.700024055556667 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/06,8.537400002372484 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/06,6.5302000001199865 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/04/28,6.700024055556667 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/06,8.537400002372484 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/06,6.5302000001199865 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/06,7.168984467328334 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/30,5.558704167414168 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/07,13.95099999978498 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/29,3.742997730000001 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/22,4.049506819999997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/22,3.0132795500000027 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/06,7.168984467328334 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/30,5.558704167414168 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/07,13.95099999978498 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/29,3.742997730000001 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/22,4.049506819999997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/22,3.0132795500000027 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/07/08,7.816720830760832 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/22,11.92104166721166 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/23,2.6790250000000047 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/23,2.7697750000000063 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/07/08,7.816720830760832 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/22,11.92104166721166 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/23,2.6790250000000047 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/23,2.7697750000000063 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/09,4.181360646666659 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/02,15.424616666284155 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/07/24,10.256745835870827 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/09,4.181360646666659 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/02,15.424616666284155 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/07/24,10.256745835870827 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/03,24.530404167454176 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/25,3.953111315824166 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/11,2.8031330740384583 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/11,2.4996444855769218 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/02,7.445425000047496 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/26,2.9552462623076927 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/26,3.9561553249999952 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/03,24.530404167454176 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/25,3.953111315824166 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/11,2.8031330740384583 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/11,2.4996444855769218 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/02,7.445425000047496 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/26,2.9552462623076927 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/26,3.9561553249999952 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/10/05,5.738000001352499 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/26,9.791500004744984 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/10/04,5.339596222174992 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/27,2.780013073626373 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/27,2.9666394182692297 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/10/05,5.738000001352499 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/26,9.791500004744984 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/10/04,5.339596222174992 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/27,2.780013073626373 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/27,2.9666394182692297 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/05,1.9844883749999969 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/05,1.9844883749999969 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/12/07,2.956375000000005 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/30,3.008456829395602 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/30,3.576936519230765 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/12/07,2.956375000000005 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/30,3.008456829395602 +South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/30,3.576936519230765 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/05,11.543412502974997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/05,11.543412502974997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/07,5.105424999997508 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/30,3.874003196999997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/21,13.571908381633346 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/29,8.142450003449984 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/22,18.110408333733343 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/22,15.767033333813334 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/07,5.105424999997508 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/30,3.874003196999997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/21,13.571908381633346 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/29,8.142450003449984 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/22,18.110408333733343 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/22,15.767033333813334 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/23,5.627591848153215 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/31,5.645859482434167 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/24,14.244808358633358 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/24,13.95685834950586 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/23,5.627591848153215 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/31,5.645859482434167 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/24,14.244808358633358 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/24,13.95685834950586 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/03,4.228478793958335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/24,7.2527121206025 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/11,12.52825833333332 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/11,11.96238333338082 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/25,2.7835082365384607 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/25,3.174695454999997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/03,4.228478793958335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/24,7.2527121206025 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/11,12.52825833333332 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/11,11.96238333338082 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/25,2.7835082365384607 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/25,3.174695454999997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/11,5.549183335540841 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/04,3.322087727999996 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/03,2.535635804807693 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/27,3.406043035769226 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/27,3.5779320806410224 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/11,5.549183335540841 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/04,3.322087727999996 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/03,2.535635804807693 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/27,3.406043035769226 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/27,3.5779320806410224 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/05,3.459157461666659 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/27,3.532329549999998 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/04,2.462011250000002 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/28,12.156850000427498 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/28,12.063100000427491 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/05,3.459157461666659 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/27,3.532329549999998 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/04,2.462011250000002 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/28,12.156850000427498 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/28,12.063100000427491 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/07,6.443708384380943 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/07,2.616699861405833 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/28,7.641674993355004 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/21,4.054046981666657 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/06,2.5801326807692284 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/29,2.5316550125000017 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/29,2.791802555769229 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/07,6.443708384380943 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/07,2.616699861405833 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/28,7.641674993355004 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/21,4.054046981666657 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/06,2.5801326807692284 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/29,2.5316550125000017 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/29,2.791802555769229 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/11/08,5.486911369999989 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/23,6.625979525072494 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/11/07,3.183277254807692 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/11/08,5.486911369999989 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/23,6.625979525072494 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/11/07,3.183277254807692 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/12/10,9.930966666666682 +South Pond,15468321,-74.45312024769454,43.91416646579713,2016/12/10,9.930966666666682 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/03,21.49190833333335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/04,21.919450000000012 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/04,21.75304166666668 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/03,21.49190833333335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/04,21.919450000000012 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/04,21.75304166666668 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/27,10.442991666666677 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/20,16.075249999999986 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/27,10.442991666666677 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/20,16.075249999999986 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/03/23,22.451158333333343 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/04/09,14.515325002489996 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/03/23,22.451158333333343 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/04/09,14.515325002489996 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/04/24,5.990161365094998 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/05/11,4.928809100072496 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/05/11,4.408725 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/04/24,5.990161365094998 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/05/11,4.928809100072496 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/05/11,4.408725 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/11,7.331480299086661 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/11,7.331480299086661 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/05,7.77604267307693 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/28,3.667034820769232 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/28,4.146112841153843 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/05,7.77604267307693 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/28,3.667034820769232 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/28,4.146112841153843 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/29,21.22965833193833 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/06,4.47935 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/30,2.2250407400000016 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/30,2.2916883500000003 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/29,21.22965833193833 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/06,4.47935 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/30,2.2250407400000016 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/30,2.2916883500000003 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/30,7.493075002489994 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/23,2.9855886299999974 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/30,7.493075002489994 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/23,2.9855886299999974 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/10,9.258838631982496 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/01,4.471211419999992 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/09/24,5.913868180072502 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/02,2.653424391895604 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/02,3.1167780432692296 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/09/23,4.394970484999992 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/10,9.258838631982496 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/01,4.471211419999992 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/09/24,5.913868180072502 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/02,2.653424391895604 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/02,3.1167780432692296 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/09/23,4.394970484999992 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/11/11,4.051372878739165 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/11/11,3.694083485695835 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/11/11,4.051372878739165 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/11/11,3.694083485695835 +South Pond,15468321,-74.45312024769454,43.91416646579713,2017/12/04,14.208198644359989 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/05/05,3.5953999799999967 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/04/28,3.0635750001450037 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/04/28,3.96727500029 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/05/29,4.269099956739046 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/05/30,3.714403033333335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/05/30,5.382625002492504 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/07/09,4.160520454999988 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/07/08,8.580425000697488 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/06/22,2.573085175000001 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/10,4.28569319999999 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/09,5.951975000047509 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/02,2.669000000000003 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/02,3.202675000000005 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/09/03,4.287727299999998 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/09/03,2.6631522500000044 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/25,14.258833332903317 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/10/05,2.460045268269229 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/10/05,2.9389500918956024 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/12/07,22.529033333333334 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/11/22,7.141075000289996 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/11/22,2.9362250000000047 +South Pond,15468321,-74.45312024769454,43.91416646579713,2018/12/23,10.188083333333347 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/02/09,11.070249998925007 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/02/26,21.856800000000018 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/02/26,21.856800000000018 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/04/23,5.359174246881666 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/05/08,7.912475010587493 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/04/22,4.169947729999997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/06/10,8.817774997772503 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/06/01,8.702231249410023 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/06/09,4.642250000000005 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/06/26,3.373749999999995 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/08/04,7.493975025547503 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/08/05,3.2956795 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/08/05,3.2299195000000016 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/07/27,3.37995 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/05,4.074024286666657 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/06,2.916989061538459 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/06,3.047292226538458 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/21,6.551531056666664 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/10/08,2.3515283750000022 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/10/08,3.805660251538455 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/22,14.406174999999989 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/22,14.130633333333323 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/10/24,3.8899500001449945 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/10/24,3.912313461538461 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/11/25,15.28956460194835 +South Pond,15468321,-74.45312024769454,43.91416646579713,2019/11/25,13.733875008410006 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/02/05,11.142324999325004 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/02/29,21.75304166666668 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/04/01,13.91817500023751 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/04/01,17.47300000000002 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/02,19.635550004600017 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/04/25,4.757922847591896 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/10,3.366575765633332 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/03,3.693206829999996 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/03,2.8428395499999977 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/27,3.6220930363333257 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/06/04,2.9387022500475006 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/06/04,3.0556022500475013 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/26,2.511280910000002 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/05,11.198500000797504 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/06,2.6354825807692306 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/06,2.798383510164836 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/06,12.585891669039166 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/30,3.334192779075092 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/30,3.4383715290750896 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/07,13.81940000026249 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/07,17.89855000040001 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/31,3.8253136503625007 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/22,3.3362113700724967 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/09/08,8.852075000869995 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/09/08,15.136199999754984 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/30,4.039535000312492 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/23,2.8205001499999995 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/23,3.6542999999999934 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/10/09,5.247024132380946 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/10/01,2.804925000000004 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/09/24,3.886346972391668 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/09/24,3.823786365870001 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/11/10,3.8645236489566632 +South Pond,15468321,-74.45312024769454,43.91416646579713,2020/10/25,5.114591666831675 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/01/29,22.76205 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/01/30,21.919450000000012 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/03/02,22.34590833333334 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/04/03,12.617239586203327 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/05/06,3.0215250000000045 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/05/06,3.136300000000006 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/04/27,13.113583333318326 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/06/07,4.751475004600008 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/06/07,3.439127299999997 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/07/24,3.641412887656664 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/10,3.8582182000724936 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/10,4.65193634999999 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/07/25,3.420650000000003 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/07/25,2.964359 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/09/10,9.29711250141251 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/25,9.660386360820006 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/26,3.590452250000003 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/26,3.3335022500000013 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/06,7.122833336013336 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/10/28,4.291490899999999 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/09,5.204382623333324 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/05,3.630469403846155 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/10/29,2.4868362932692283 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/10/29,2.9995472115384616 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/12/07,15.58861666657168 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/24,2.610703230769228 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/24,2.43555779326923 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/21,2.357665624999998 +South Pond,15468321,-74.45312024769454,43.91416646579713,2021/12/23,22.01263333333335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/01/25,11.24366666630918 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/02/26,21.961558333333347 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/02/26,22.304175000000008 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/03/30,22.26459166666668 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/04/06,13.437363800604992 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/03/29,21.88613333333335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/09,2.626351750000002 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/09,2.7116367950000018 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/08,3.628630323333331 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/01,3.1344852549999977 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/01,2.978753895000001 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/04/30,5.706625003107491 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/25,8.115506828643328 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/25,9.356050886824876 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/24,3.752093873333332 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/04,6.07850833638834 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/06/29,4.759421399999985 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/11,14.202299999784982 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/03,7.943854166069175 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/06/25,2.462729475000001 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/05,2.834625000000005 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/05,3.1150000000000078 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/28,3.1479634500000007 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/28,4.738104184615377 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/10,6.51803825714667 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/29,3.321327250000004 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/29,3.292375000000003 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/28,2.629826305000003 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/09,6.97619999863501 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/22,6.126470828175847 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/08,2.869975000000005 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/08,2.541677250000004 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/30,12.35152499999999 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/30,12.907383333333325 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/29,3.3131022500000062 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/22,2.5015380299999994 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/22,2.964971292307692 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/21,6.207350000192506 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/31,8.223999997047509 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/26,6.826774996040008 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/11/09,2.762300623626374 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/11/09,2.518594480769231 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/11/08,2.299089392307689 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/24,9.136199999740004 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/12/10,2.4474861000000017 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/12/02,3.7463712133333344 +South Pond,15468321,-74.45312024769454,43.91416646579713,2022/11/24,10.3039250001675 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/01/11,21.67155833333335 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/04/10,13.8714999999525 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/04/10,12.20291666657166 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/04/02,13.573283333190837 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/04/01,12.434370455427509 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/09,10.380670836203343 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/09,9.481304169961678 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/31,4.958109090362493 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/31,8.739257573478334 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/26,2.9826134913333315 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/26,4.062800624666661 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/05,11.792112501287493 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/05,12.14082916819166 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/04,3.4108250000000067 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/28,9.57502500079251 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/28,8.316300000887509 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/27,24.977433333380823 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/22,7.069994696739165 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/22,9.118094696739169 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/06,4.359828480769222 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/21,4.224962276923081 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/21,4.665855091025641 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/10,8.420774994742498 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/05,6.175899997975006 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/05,6.246974998205007 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/30,3.7082795000475 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/23,4.007531004807692 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/23,2.923009975000001 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/22,9.62462500021499 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/06,15.508418940000029 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/01,3.018431825072497 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/01,2.744511370072499 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/01,8.900110606761674 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/01,8.942425000167503 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/31,4.08771062166666 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/23,2.581224 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/28,6.447845828160849 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/28,6.7120958249358464 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/10/03,5.879842292999999 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/10/03,5.425286979666663 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/10/02,5.1924455249999975 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/25,3.0890012499999955 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/25,2.485880975000002 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/10/25,7.540933323083339 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/11/03,15.525110611666651 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/11/28,2.804025713333334 +South Pond,15468321,-74.45312024769454,43.91416646579713,2023/11/28,3.158175000000006 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/01/05,21.919450000000012 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/03/10,21.88613333333335 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/02/22,12.33830833323833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/02/22,12.25335833323833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/03/10,21.88613333333335 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/02/22,12.33830833323833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/02/22,12.25335833323833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/03,7.784199998910005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/03,9.20706666623668 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/03,7.784199998910005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/03,9.20706666623668 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/28,7.773857593500832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/06,3.6199664299999967 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/28,7.773857593500832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/06,3.6199664299999967 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/06,9.275997498665005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/06,7.619202498665003 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/07,19.53204166666665 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/29,4.333817821115832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/29,4.865634869130832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/22,2.779603175 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/06,9.275997498665005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/06,7.619202498665003 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/07,19.53204166666665 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/29,4.333817821115832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/29,4.865634869130832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/22,2.779603175 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/08,4.700495837778337 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/08,4.531250004590001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/22,5.097382405033452 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/22,6.6936990761051165 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/08,4.700495837778337 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/08,4.531250004590001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/22,5.097382405033452 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/22,6.6936990761051165 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/09,2.913823680769229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/09,2.907213055769229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/24,21.440058333213333 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/24,12.617424999345 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/10,8.048031240449987 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/01,2.4457677500000026 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/01,2.4536700000000025 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/09,2.913823680769229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/09,2.907213055769229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/24,21.440058333213333 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/24,12.617424999345 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/10,8.048031240449987 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/01,2.4457677500000026 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/01,2.4536700000000025 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/25,4.847012493507507 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/25,13.135385833523326 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/11,2.902131317307692 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/02,2.936250000000005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/02,3.42280000000001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/25,4.847012493507507 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/25,13.135385833523326 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/11,2.902131317307692 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/02,2.936250000000005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/02,3.42280000000001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/05,9.273566692134162 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/26,7.0877000004575015 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/26,6.677100000529999 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/04,4.725800765134998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/04,4.700528039944998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/27,3.3254660641025624 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/05,9.273566692134162 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/26,7.0877000004575015 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/26,6.677100000529999 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/04,4.725800765134998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/04,4.700528039944998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/27,3.3254660641025624 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/06,10.777956305447503 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/05,2.835121268269229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/05,3.181588504807692 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/06,10.777956305447503 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/05,2.835121268269229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/05,3.181588504807692 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/29,8.685099994407505 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/29,4.411535827265832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/22,2.5084000017924986 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/30,3.764503524038452 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/29,8.685099994407505 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/29,4.411535827265832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/22,2.5084000017924986 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/30,3.764503524038452 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/01/08,22.013858333333346 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/01/08,22.013858333333346 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/01/24,21.791766666666685 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/01/24,21.791766666666685 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/02/26,9.95794166645168 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/02/26,9.95794166645168 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/05,16.399150030190018 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/05,9.764127284342484 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/05,16.399150030190018 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/05,9.764127284342484 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/30,4.740190909999992 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/21,8.880050002299999 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/21,9.538158338078322 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/29,5.311316678179159 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/29,9.393071593892486 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/22,14.971216666006653 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/30,4.740190909999992 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/21,8.880050002299999 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/21,9.538158338078322 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/29,5.311316678179159 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/29,9.393071593892486 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/22,14.971216666006653 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/23,5.781344329613331 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/23,4.5579394037975 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/31,4.6458977512125 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/31,5.336772364950833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/24,5.859490910095002 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/23,5.781344329613331 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/23,4.5579394037975 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/31,4.6458977512125 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/31,5.336772364950833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/24,5.859490910095002 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/03,5.330675005200002 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/24,3.444780908072496 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/24,4.738796818144992 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/11,13.537733333333314 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/02,3.9560091001199935 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/02,3.820428066786664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/25,3.187882465934065 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/03,5.330675005200002 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/24,3.444780908072496 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/24,4.738796818144992 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/11,13.537733333333314 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/02,3.9560091001199935 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/02,3.820428066786664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/25,3.187882465934065 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/11,13.518035702418311 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/11,15.49285237732749 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/04,2.360734817857144 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/26,5.3274333424758415 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/26,4.334062503467508 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/03,3.4186926490384626 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/03,3.378938149038463 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/27,2.558161540000001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/11,13.518035702418311 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/11,15.49285237732749 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/04,2.360734817857144 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/26,5.3274333424758415 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/26,4.334062503467508 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/03,3.4186926490384626 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/03,3.378938149038463 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/27,2.558161540000001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/05,5.475340853021975 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/27,22.17940250038 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/27,22.57476916704667 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/04,4.412136364999994 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/04,3.5771611456959675 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/28,3.2101272500475004 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/05,5.475340853021975 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/27,22.17940250038 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/27,22.57476916704667 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/04,4.412136364999994 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/04,3.5771611456959675 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/28,3.2101272500475004 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/07,5.23084837571428 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/28,9.137678786666676 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/28,7.939872730000007 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/21,3.2383522999999985 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/06,3.097767874038461 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/06,3.01602664326923 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/29,16.819616666666647 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/07,5.23084837571428 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/28,9.137678786666676 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/28,7.939872730000007 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/21,3.2383522999999985 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/06,3.097767874038461 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/06,3.01602664326923 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/29,16.819616666666647 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/08,4.502437133333325 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/23,5.2682810977142775 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/07,3.618722064102564 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/07,3.5248819391025648 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/08,4.502437133333325 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/23,5.2682810977142775 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/07,3.618722064102564 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/07,3.5248819391025648 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/12/10,7.286750000555005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/23,3.509450000000008 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/23,3.5547000000000075 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/12/10,7.286750000555005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/23,3.509450000000008 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/23,3.5547000000000075 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/01/02,22.30574166666668 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/01/02,22.30574166666668 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/04,21.867666666666683 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/04,21.867666666666683 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/28,13.744541666619163 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/08,18.8432062502 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/27,13.641574999952494 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/27,13.564649999952495 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/20,14.578399999905004 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/28,13.744541666619163 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/08,18.8432062502 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/27,13.641574999952494 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/27,13.564649999952495 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/20,14.578399999905004 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/23,22.44243333333334 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/23,22.304499999355013 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/09,13.876041666619164 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/23,22.44243333333334 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/23,22.304499999355013 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/09,13.876041666619164 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/24,7.353706061666664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/24,7.475056061666664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/24,7.353706061666664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/24,7.475056061666664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/06/11,6.312584074650116 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/06/11,6.231184075032616 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/06/11,6.312584074650116 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/06/11,6.231184075032616 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/05,2.2664567 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/05,2.2079214875 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/05,2.2664567 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/05,2.2079214875 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/29,20.907308333190823 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/29,10.999575001287496 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/06,3.0261250000000017 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/06,3.5235000000000074 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/30,2.624905293269228 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/29,20.907308333190823 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/29,10.999575001287496 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/06,3.0261250000000017 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/06,3.5235000000000074 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/30,2.624905293269228 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/30,2.815893184999997 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/30,2.6990871283333324 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/23,4.951192081398338 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/30,2.815893184999997 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/30,2.6990871283333324 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/23,4.951192081398338 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/10,13.825885618361683 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/01,3.196452859999996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/01,2.8781696499999976 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/24,2.5105053083333324 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/02,3.3537024391025643 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/23,5.028000694666661 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/23,2.6080104500000023 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/10,13.825885618361683 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/01,3.196452859999996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/01,2.8781696499999976 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/24,2.5105053083333324 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/02,3.3537024391025643 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/23,5.028000694666661 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/23,2.6080104500000023 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/11,4.938319747714279 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/10,12.349300000199992 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/10,15.668116667051654 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/25,14.658541667056664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/25,6.435554168844159 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/11,4.938319747714279 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/10,12.349300000199992 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/10,15.668116667051654 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/25,14.658541667056664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/25,6.435554168844159 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/12/04,13.187925025395016 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/12/04,8.05397857121357 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/01/29,10.987549999785005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/05,6.912250000000005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/05,13.674788625000003 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/29,15.804833370133336 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/29,15.646025034500004 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/30,2.9231682 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/07/09,4.154328699999989 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/06/30,20.031625000000005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/06/30,20.121600000000004 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/07/08,8.333725000192477 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/07/08,5.947950000382492 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/07/01,5.838686371476666 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/06/22,2.674108780769231 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/06/22,2.853467905769232 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/08/10,3.832000763333329 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/08/09,7.364602250000002 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/08/09,7.35107725 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/09/03,3.530570123846153 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/10/05,3.3471092891025607 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/12/08,21.75304166666668 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/11/22,10.53020833333334 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/12/23,10.644916666666685 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/02/09,14.35209166666666 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/02/09,13.137639999952498 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/02/01,21.75304166666668 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/03/05,21.675758333333352 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/02/26,21.867666666666683 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/05/09,3.920090000127508 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/04/23,5.097244166314172 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/05/08,9.280716673614156 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/05/08,6.870183341430824 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/04/22,2.5000816432692288 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/04/22,3.320582504807693 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/01,9.094402085145838 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/01,8.769045834923334 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/09,2.851684 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/09,2.9087262500000004 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/07/03,11.344183340400829 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/07/03,8.398025002467504 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/26,3.745300724999995 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/07/04,8.60872916681166 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/08/04,13.482600018400005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/08/04,13.918733363233333 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/07/28,8.439904162846677 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/08/05,3.3417795000000026 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/05,3.002400099999996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/05,4.747927555769227 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/06,3.1313898798076925 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/21,4.267772622380945 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/21,4.084640807380945 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/10/08,2.990231910805859 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/29,14.756695833405836 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/29,15.257370833405837 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/11/08,8.863229166711681 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/11/08,9.650943749542511 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/11/01,4.460154925700003 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/10/23,4.260059883622736 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/10/23,4.523223328798337 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/12/11,13.87919166712916 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/11/25,12.663783332773344 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/02/29,12.601516666851662 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/04/01,12.1216500003325 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/02,4.171593650999996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/02,4.172384550999996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/04/25,12.93763336337834 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/10,14.051708333533329 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/10,3.999550000145003 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/03,3.134902300072501 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/27,3.495456830144993 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/06/11,12.875974998954998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/06/11,13.437350009272476 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/06/04,6.0329000025375 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/26,3.51369848833333 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/26,3.595825768333324 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/07/05,15.377916680684164 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/07/05,14.563133347495832 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/06/28,8.6777148115275 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/07/06,2.7553624750000028 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/06,3.2761681799999947 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/06,3.3509931799999944 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/07/30,7.96463333710167 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/07,2.732733700000001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/31,3.0104878499999983 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/22,5.282840153740833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/22,5.403420462902502 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/09/08,8.510575000652496 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/23,2.797716925000001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/09,5.964974142380945 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/09,4.612206849999989 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/01,12.335658333318325 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/01,15.402250000369992 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/09/24,3.547252279999997 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/11/10,5.024240954380946 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/11/10,4.961756107714276 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/11/03,6.5645749958250095 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/25,4.500550005215005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/25,4.344600005125005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/12/29,21.867666666666683 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/01/29,23.67154166666665 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/01/29,23.67154166666665 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/02/06,21.88613333333335 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/02/06,21.67155833333335 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/01/30,21.838800000000013 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/03/11,9.22348999945252 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/04/04,14.026849999857513 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/03/26,21.981250000000014 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/05/06,3.126879500000003 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/06,13.08048749981 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/06,15.32959583438833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/07,2.932127499999998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/05/29,14.600941666666664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/05/29,13.177558333333325 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/30,7.071000001407494 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/30,10.411150000192498 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/23,2.5085795000474995 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/02,5.0551650000000015 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/10,6.575750000145 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/09/10,5.759188645720001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/09/10,5.527011369345006 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/25,8.975202270000006 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/25,9.276777270000007 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/09/11,10.007550003522487 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/26,3.411978157307692 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/06,5.4114947527142805 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/10/28,6.750674997115011 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/10/28,5.558889999114999 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/05,2.852450000000004 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/05,3.013700000000006 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/10/29,2.6806244766025618 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/12/07,16.30910833371333 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/12/07,12.250300000599994 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/24,2.9301281182692294 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/24,3.129485274038461 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/21,3.213912885164833 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/21,2.445966805769228 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/01/08,21.867666666666683 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/12/23,12.9821000001675 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/12/23,6.063916669419155 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/02/01,22.30574166666668 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/02/26,22.76205 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/03/30,22.451158333333343 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/04/06,13.118766666866655 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/03/22,6.039551499999996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/09,2.7101957163461545 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/08,3.676500763333332 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/08,3.7767598533333313 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/01,3.273639433333329 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/04/30,6.784841672464161 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/04/30,6.604333339130825 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/31,8.863600000640005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/26,14.117819169046683 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/06/10,5.01945961538461 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/25,3.582825001134996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/24,4.113624999999992 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/24,5.121049999999993 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/11,4.047429168691667 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/11,3.938854168419164 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/03,10.075653417112504 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/03,10.743850760889169 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/06/26,3.3408500000000068 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/06/25,2.5842190423076907 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/06/25,2.57440206153846 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/07,7.994649993342501 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/05,9.2709750000475 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/28,3.0822250000000047 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/10,4.462636277380944 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/10,4.477738552380944 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/24,3.2067695616666656 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/24,3.681371854999993 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/29,8.699901670284142 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/28,2.957432668269229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/28,2.9604826682692296 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/30,13.712624999999989 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/29,3.3577250000000074 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/29,3.2028750000000046 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/22,3.2165235769230742 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/21,4.306674999999998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/21,4.3434636249999965 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/10/26,4.639768799465831 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/09,2.9698624871794856 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/08,2.437291830769229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/08,2.371395161538458 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/12/10,2.3579714307692283 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/12/10,2.361931897664834 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/12/02,2.613901625000003 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/12/02,3.184051050769229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/24,2.9571749999999986 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/24,4.393202250000001 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/01/11,21.675758333333352 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/01/11,21.675758333333352 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/02/04,22.25651666666668 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/02/21,9.955125000385 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/04/09,14.834408333333329 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/04/02,13.31084166647667 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/04/01,13.587374999857508 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/04/01,14.094349999857508 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/09,10.165391669504174 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/09,10.299166669704173 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/31,3.0943824346666657 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/31,3.0834468279999983 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/26,3.651736379999994 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/05,10.08995000028498 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/04,5.475575000119996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/04,9.917050000119996 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/28,14.299258338265842 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/27,23.766975002395 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/27,24.796058335728336 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/22,3.60137878666666 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/22,3.604693179999993 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/06,2.1855476 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/06,2.238731725 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/30,3.476200000000002 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/30,3.8306553548076954 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/23,3.175025000000005 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/22,5.493489399300824 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/22,5.491239399038324 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/06,7.058390909999998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/06,7.500762123333328 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/01,7.84322196683417 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/01,10.386935606666666 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/08/31,3.982040151666662 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/08/31,3.765251526666662 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/08/23,3.5050909049999968 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/08/23,2.9764369499999974 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/03,6.872386371666664 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/03,5.1099863650725 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/28,17.82208765660751 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/28,14.44815002740997 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/23,7.578545827470846 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/03,2.3906906650000024 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/02,3.008262592499997 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/02,2.266772624999998 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/25,2.523332043269229 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/11/03,2.7475734328571417 +Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/11/03,2.482587142307689 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/01/05,21.838800000000013 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/01/29,22.26459166666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/01/29,22.26459166666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/23,22.351800000000008 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/22,21.675758333333352 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/22,21.675758333333352 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/23,22.351800000000008 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/22,21.675758333333352 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/22,21.675758333333352 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/03,7.224424999710005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/04,21.750616666666684 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/03,7.224424999710005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/04,21.750616666666684 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/28,7.881499996535002 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/06,6.697825000000005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/28,7.881499996535002 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/06,6.697825000000005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/06,6.032145835900836 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/06,6.323595835508335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/30,9.151362531299997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/07,11.471825000237487 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/29,4.671575000000004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/29,4.943050000000005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/22,5.722170096990824 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/06,6.032145835900836 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/06,6.323595835508335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/30,9.151362531299997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/07,11.471825000237487 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/29,4.671575000000004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/29,4.943050000000005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/22,5.722170096990824 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/08,4.749617270654999 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/08,4.762133937346665 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/22,12.71518333333331 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/22,13.164458333333314 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/08,4.749617270654999 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/08,4.762133937346665 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/22,12.71518333333331 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/22,13.164458333333314 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/24,10.468324997785006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/24,9.136325000220006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/01,7.235586249999998 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/01,3.2651385000000004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/24,10.468324997785006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/24,9.136325000220006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/01,7.235586249999998 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/01,3.2651385000000004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/03,6.858099997100015 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/25,4.941401841710837 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/25,4.71303713600667 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/11,3.2710011115384567 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/02,9.388833333550837 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/02,10.975133333623331 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/03,6.858099997100015 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/25,4.941401841710837 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/25,4.71303713600667 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/11,3.2710011115384567 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/02,9.388833333550837 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/02,10.975133333623331 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/10/05,6.122798483380833 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/26,6.663471228333335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/26,6.584121228333336 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/27,2.9746887710622683 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/10/05,6.122798483380833 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/26,6.663471228333335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/26,6.584121228333336 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/27,2.9746887710622683 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/05,2.676252255357141 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/05,2.072715624999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/05,2.676252255357141 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/05,2.072715624999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/29,6.862249998635011 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/29,6.37907499711501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/22,4.348979659263572 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/30,3.969871235576917 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/29,6.862249998635011 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/29,6.37907499711501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/22,4.348979659263572 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/30,3.969871235576917 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/01/08,21.77565833333335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/01/08,21.675758333333352 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/01/08,21.77565833333335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/01/08,21.675758333333352 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/05,16.02828987740111 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/05,11.392265284772764 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/05,16.02828987740111 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/05,11.392265284772764 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/07,11.216083335165845 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/07,11.810195837698336 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/30,7.002837138333331 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/21,6.34607311416833 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/21,6.312973112105831 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/29,3.815340889999996 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/29,3.09953638 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/07,11.216083335165845 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/07,11.810195837698336 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/30,7.002837138333331 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/21,6.34607311416833 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/21,6.312973112105831 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/29,3.815340889999996 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/29,3.09953638 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/23,8.071935076624168 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/23,7.094716322944171 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/31,5.683738636269169 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/31,5.391266294280834 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/24,15.323358333733324 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/23,8.071935076624168 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/23,7.094716322944171 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/31,5.683738636269169 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/31,5.391266294280834 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/24,15.323358333733324 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/03,4.514872006666654 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/24,14.27573333601834 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/24,14.947733336018343 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/02,3.497002250000008 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/02,2.670802250000006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/25,4.124322744999995 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/03,4.514872006666654 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/24,14.27573333601834 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/24,14.947733336018343 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/02,3.497002250000008 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/02,2.670802250000006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/25,4.124322744999995 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/11,16.250312516242506 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/11,16.40747084957584 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/04,3.6725749999999926 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/26,5.221709133584401 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/26,5.046637157328568 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/03,14.019750000094987 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/03,5.724350750072501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/27,1.9328745 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/11,16.250312516242506 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/11,16.40747084957584 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/04,3.6725749999999926 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/26,5.221709133584401 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/26,5.046637157328568 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/03,14.019750000094987 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/03,5.724350750072501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/27,1.9328745 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/05,3.971068001538456 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/27,14.296525013442492 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/27,14.70580834512333 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/04,4.595354589999995 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/04,4.690354589999995 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/28,11.113258333570824 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/05,3.971068001538456 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/27,14.296525013442492 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/27,14.70580834512333 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/04,4.595354589999995 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/04,4.690354589999995 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/28,11.113258333570824 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/07,2.8184644133333325 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/28,9.28744318000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/28,7.785155303333338 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/21,3.46459381466666 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/06,2.482894180769229 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/06,2.4351714307692283 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/29,4.869400000554993 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/07,2.8184644133333325 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/28,9.28744318000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/28,7.785155303333338 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/21,3.46459381466666 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/06,2.482894180769229 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/06,2.4351714307692283 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/29,4.869400000554993 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/08,4.290169639999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/23,5.100602309380947 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/07,7.681257668269235 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/07,2.93338266826923 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/08,4.290169639999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/23,5.100602309380947 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/07,7.681257668269235 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/07,2.93338266826923 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/10,22.47810000000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/23,2.9795772503125035 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/23,2.782477250047501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/10,22.47810000000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/23,2.9795772503125035 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/23,2.782477250047501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/01/02,22.539900000000006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/26,24.070899999999988 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/25,21.84966666666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/01/02,22.539900000000006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/26,24.070899999999988 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/25,21.84966666666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/01/27,10.342966666451671 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/04,22.69252500000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/01/27,10.342966666451671 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/04,22.69252500000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/28,10.000733333118344 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/03/08,10.039199999810013 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/27,21.77565833333335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/28,10.000733333118344 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/03/08,10.039199999810013 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/27,21.77565833333335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/03/23,22.177183333333343 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/09,21.611874999952523 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/03/23,22.177183333333343 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/09,21.611874999952523 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/24,12.886100025372512 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/24,12.929525029972512 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/24,12.886100025372512 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/24,12.929525029972512 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/11,6.034513240736783 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/11,5.917388240354284 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/03,14.46708333373332 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/03,14.429833333533317 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/11,6.034513240736783 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/11,5.917388240354284 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/03,14.46708333373332 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/03,14.429833333533317 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/27,7.472570829723345 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/27,10.042791671081686 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/05,4.487800000047498 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/05,4.828150000047495 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/28,5.373819230889222 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/27,7.472570829723345 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/27,10.042791671081686 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/05,4.487800000047498 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/05,4.828150000047495 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/28,5.373819230889222 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/29,6.281960233959998 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/29,6.434632958624997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/06,2.635827250000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/06,2.4174250000000024 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/30,3.024181274038462 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/29,6.281960233959998 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/29,6.434632958624997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/06,2.635827250000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/06,2.4174250000000024 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/30,3.024181274038462 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/30,3.1125174217391645 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/30,3.107469542999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/07,22.04370833328585 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/07,22.078008333285847 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/30,3.1125174217391645 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/30,3.107469542999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/07,22.04370833328585 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/07,22.078008333285847 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/10,6.604516657686676 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/01,3.947878866666658 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/01,3.933419766666658 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/24,2.810894701811665 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/02,2.949261754807693 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/23,4.801861409999989 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/23,3.8598113599999926 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/10,6.604516657686676 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/01,3.947878866666658 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/01,3.933419766666658 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/24,2.810894701811665 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/02,2.949261754807693 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/23,4.801861409999989 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/23,3.8598113599999926 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/11/11,4.963919747714279 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/25,5.300911429999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/25,5.655241713333329 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/11/11,4.963919747714279 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/25,5.300911429999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/25,5.655241713333329 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/12/04,6.151107698269401 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/12/04,5.025236560549171 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/01/06,21.867666666666683 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/03/26,21.04199166676169 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/05,6.806183339130823 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/05,7.124841672464158 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/29,15.58826667591417 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/29,15.33515834258084 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/30,8.138425003137495 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/07/09,4.787936399999984 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/06/30,19.92435833348582 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/06/30,19.00133333348582 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/07/08,7.031025000359994 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/07/08,10.431850007092486 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/07/01,7.5526 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/06/22,3.408252249999996 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/06/22,3.920265875072495 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/08/10,3.968945569999994 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/08/09,9.235541671266644 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/08/09,6.112775000215006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/09/03,4.30346643692346 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/10/05,2.4167387432692284 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/12/07,11.339700000585 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/12/07,11.218266665791669 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/12/08,21.75304166666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/11/22,21.75304166666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/02/09,9.941466666309184 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/02/09,10.832025000585002 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/02/01,21.848400000000016 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/01/25,14.950731254232496 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/03/06,22.34590833333334 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/03/05,22.69252500000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/05/09,5.220137311853576 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/05/08,3.4490490000000005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/05/08,2.893935840000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/04/22,2.0465475749999964 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/04/22,2.074747574999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/06/01,8.930916663089196 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/06/01,9.513374164726695 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/06/09,3.267281829999995 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/06/09,3.312389999999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/03,3.21797725 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/03,3.21855225 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/04,5.101825000072492 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/08/04,7.284543180622501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/08/04,7.927310607074171 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/08/05,2.9806795000000035 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/27,4.498175000215005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/27,4.553050000215007 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/05,3.5342696966666587 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/05,3.228869696666661 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/06,2.3407543499999988 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/21,8.21629848333333 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/21,8.44364848333333 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/10/08,3.4968001932692254 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/29,13.761583333333322 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/29,13.568083333333323 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/11/09,3.735270375047498 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/12/11,3.1719000000000097 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/11/25,8.932311023076922 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/02/05,22.137733333333344 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/02/20,21.75304166666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/02/20,21.791766666666685 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/04/01,3.3672442307692294 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/02,7.590213640072501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/02,7.420045460072499 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/04/25,13.47280004152 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/10,3.405625000000006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/10,3.0279750000000054 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/03,3.994300000309996 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/27,12.943900002750013 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/06/04,5.251125000622498 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/26,2.3502522500475 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/26,2.7429931250475024 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/07/05,13.51210834512083 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/07/05,13.816366669134156 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/06/28,11.962395835188342 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/07/06,2.4708086875000017 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/06,5.889960611666667 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/06,5.654601521666665 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/07/30,2.799287138695833 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/07,5.550154579999993 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/31,4.820492423835834 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/22,6.38906590678667 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/22,7.649713636786672 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/09/08,13.118700000199985 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/23,5.294099875047493 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/09,5.055379579999992 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/09,4.528152299999993 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/10,2.887650000000005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/09/24,4.222972730724999 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/11/10,8.768036379999996 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/11/10,6.759529559999994 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/25,7.095454165546663 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/25,9.376929165714166 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/12/29,21.838800000000013 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/02/06,21.919450000000012 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/01/30,21.848400000000016 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/03/02,22.47810000000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/04/03,19.32996667197668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/04/03,18.47826042333168 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/04/04,12.160192828266654 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/05/06,3.2013192307692293 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/06/06,7.739875000189996 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/06/06,8.632725001425001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/06/07,2.838252250047502 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/05/29,6.416297361179164 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/05/29,6.094973884265003 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/06/23,2.6078863500000007 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/02,7.920485002159991 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/10,3.4441772500000014 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/07/25,5.354749999999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/10,3.4448165175366285 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/10,2.875192530641024 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/03,8.231475006977497 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/25,6.834504546352502 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/25,6.548468181425003 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/26,3.3125195 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/26,8.841771970523324 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/26,9.29484167503916 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/06,5.05700686104761 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/10/28,6.511049999525007 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/10/29,2.725052105769231 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/24,2.573725980769229 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/24,2.540271430769228 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/21,3.922691733269229 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/21,2.220458999999997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/12/23,2.756570375047501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/12/23,12.038849999475008 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/02/01,22.348225000000006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/02/26,22.663366666666672 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/02/26,10.36655000000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/03/30,22.26459166666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/04/06,11.286885852893324 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/04/06,11.456322104438328 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/03/29,21.67155833333335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/03/29,21.67155833333335 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/03/22,12.320033333190834 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/09,2.1657413250000004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/08,3.5096174216666665 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/08,3.3087674216666665 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/01,4.854194100457494 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/04/30,5.4395750022999945 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/04/30,6.353991669111662 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/31,13.099108749795008 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/31,12.601949999879997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/06/10,2.5958772500000022 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/25,2.654852250000007 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/24,11.83658333358082 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/24,3.939800000289996 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/07/03,5.798546599301655 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/07/03,5.15707160124083 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/06/25,5.373300000000006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/06/25,5.292356820000005 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/05,2.5102022500000056 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/10,10.013277646931677 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/10,9.246315146931671 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/24,7.792749992035004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/24,7.205891658101674 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/29,3.4276296149999967 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/28,2.500199839999999 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/28,2.4557612149999994 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/10/08,2.7500250000000017 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/30,13.932666666666648 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/29,3.1744250001450043 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/29,3.344475000145004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/22,3.014727250000001 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/21,4.074134099999994 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/21,3.990034099999991 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/09,2.618423322664835 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/08,3.3428281182692308 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/08,2.7981326682692287 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/12/10,4.768429499999999 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/12/10,2.628683999999999 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/12/02,2.9606022500000067 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/12/02,3.617915875095006 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/24,15.172617804404153 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/24,12.5144250002625 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/02/04,22.14189166666668 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/04/10,12.199749999904991 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/04/09,11.85041666657166 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/04/01,12.290308333238324 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/04/01,12.445558333238328 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/09,10.242091669704177 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/09,10.333266669324177 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/11,6.218804555355 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/11,6.193698110628328 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/31,8.1471272700725 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/31,8.3578522700725 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/26,3.790688640072496 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/05,14.002362500409982 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/04,4.599877683982501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/04,6.429142819727502 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/28,17.373941666739174 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/27,21.61045833333334 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/27,22.974566668966688 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/22,2.5011445580725007 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/22,2.859533951405833 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/06,4.345600000217493 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/06,7.778252250145004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/21,4.365412123333328 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/05,11.27952436057083 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/30,2.723027250047501 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/30,3.644075000119997 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/23,4.796331749999999 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/22,6.127900403964994 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/22,5.7888147936941605 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/06,6.7938454599999965 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/06,6.861069706666664 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/01,7.857621966786664 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/08,2.904125000000004 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/01,4.265927300144991 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/31,3.91990213633333 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/31,3.956247591333329 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/23,4.850372739999994 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/23,4.920072739999994 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/03,16.73473560666669 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/03,17.82575834253334 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/28,6.792220823213341 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/03,2.6025068000000027 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/02,5.791756116666659 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/02,5.646608406666661 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/25,2.274431699999999 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/11/03,4.2770635574999964 +Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/11/03,3.8051990774999975 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/01/05,3.187300000000004 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/05/05,7.672174996182495 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/05/05,7.672174996182495 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/06/06,9.254850009319991 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/05/29,3.731877250047498 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/06/06,9.254850009319991 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/05/29,3.731877250047498 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/07/08,10.500866665704187 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/07/08,10.500866665704187 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/09,4.180131061666656 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/07/24,4.001152274999992 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/01,3.192688600000001 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/09,4.180131061666656 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/07/24,4.001152274999992 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/01,3.192688600000001 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/25,5.732865926307508 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/25,5.732865926307508 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/09/26,3.4790090949999968 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/10/04,12.55882499999999 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/09/26,3.4790090949999968 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/10/04,12.55882499999999 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/11/05,2.734702250000006 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/11/05,2.734702250000006 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/11/29,9.850621092380946 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/11/29,9.850621092380946 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/01/24,21.77565833333335 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/01/24,21.77565833333335 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/05,7.446208958144991 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/05,7.446208958144991 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/07,7.316449999392505 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/21,8.73851668758667 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/29,4.423660019999996 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/07,7.316449999392505 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/21,8.73851668758667 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/29,4.423660019999996 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/23,3.5548068170291622 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/31,3.610568943333336 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/23,3.5548068170291622 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/31,3.610568943333336 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/06/24,3.315374245145829 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/06/24,3.315374245145829 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/11,18.59287083218584 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/03,4.363818794102558 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/11,18.59287083218584 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/03,4.363818794102558 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/27,3.563775024999997 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/09/04,5.3871340904099965 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/27,3.563775024999997 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/09/04,5.3871340904099965 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/09/28,15.296625015935 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/10/06,2.707818124999999 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/09/28,15.296625015935 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/10/06,2.707818124999999 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/11/07,2.0879655999999973 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/11/07,2.0879655999999973 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/12/09,22.00009166599167 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/12/09,22.00009166599167 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/12/25,16.730500000000003 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/12/25,16.730500000000003 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/02/19,12.79505833319083 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/02/19,12.79505833319083 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/05/10,12.390129170339184 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/04/24,11.374183358633347 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/05/10,12.390129170339184 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/04/24,11.374183358633347 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/06/11,4.811109864945002 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/06/03,2.9521045000475024 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/06/11,4.811109864945002 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/06/03,2.9521045000475024 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/07/05,2.2744713 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/07/05,2.2744713 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/07/29,3.681327274999991 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/08/06,2.7381750000000045 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/07/29,3.681327274999991 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/08/06,2.7381750000000045 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/08/30,3.025357580289997 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/08/30,3.025357580289997 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/10/01,3.106710596666663 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/09/23,3.2736250649999987 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/10/01,3.106710596666663 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/09/23,3.2736250649999987 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/11/10,2.755509925 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/10/25,2.7005490900000013 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/11/10,2.755509925 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/10/25,2.7005490900000013 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/12/04,6.4980374960725165 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/11/26,6.931544105769218 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/05/05,3.747275019999996 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/05/29,6.068454550119999 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/06/30,16.149404166666667 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/07/08,3.8149159099999936 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/06/22,4.400587299999992 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/08/09,5.571584089999996 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/12/07,8.094473332763355 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/12/23,10.14617499935502 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/02/01,22.68663333333334 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/04/30,7.826058349938329 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/05/08,3.304462344999999 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/06/01,11.428154166391684 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/06/09,3.745385685769222 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/07/03,2.434165147826669 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/08/04,6.376892424903335 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/07/27,3.820154600072493 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/09/05,2.583125604666666 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/09/21,2.645990910145 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/11/08,22.456960417911677 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/10/23,6.5004958290058505 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/02/28,10.554416666666684 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/02/20,11.662683333718329 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/05/02,14.577891696566684 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/05/10,2.8121022500000072 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/05/26,6.784625000890003 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/07/05,6.3823250042775 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/08/06,3.827175763333325 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/08/30,3.3974295000000008 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/10/09,5.203827177380945 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/11/10,6.492071996739162 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/10/25,14.699525002127512 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/04/03,9.300483340353328 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/04/27,20.58031666663667 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/05/29,13.11677499976999 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/07/24,15.560291666476656 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/09/10,4.533533337801665 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/08/25,5.759358334585838 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/09/26,3.062283333998333 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/11/05,2.924527475000001 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/11/24,4.925610000144992 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/11/21,2.343377250000002 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/12/23,21.519043749692496 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/04/06,9.026033339090842 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/04/06,5.412419169999989 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/03/29,4.216730447115382 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/05/08,4.878603040633333 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/04/30,2.703085000000001 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/04/22,3.3919500000000062 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/06/05,8.416875000360005 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/05/31,18.595375000569987 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/05/24,4.156450000892497 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/07/04,4.308749999999988 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/06/22,15.196481666596666 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/07/11,11.338024998779996 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/07/03,3.408709149999998 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/06/25,2.922736065 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/08/07,3.4755931999999934 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/09/10,3.483708326884164 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/08/24,4.081139100072493 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/08/28,2.5355608048076914 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/09/21,3.445034149999994 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/11/05,9.677975010315004 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/11/08,2.308421862499999 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/10/23,11.521416667066651 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/11/22,13.24131334943333 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/12/10,2.328158725000001 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/11/24,2.585802250000002 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/01/11,4.626384000000001 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/04/09,2.576161765000001 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/04/01,13.87765000025751 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/05/09,10.92927500139249 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/05/11,3.564330250000004 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/06/05,8.737258332723354 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/05/31,3.10947727029 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/06/04,4.855475000410007 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/05/27,15.143625000000002 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/06/27,13.036966667141671 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/06/22,3.8736840905074974 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/07/06,3.822445450192494 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/07/30,3.2309841099999947 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/07/22,8.492675000000007 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/09/11,5.600525001155001 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/09/06,3.4993288018116617 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/09/01,3.1929272718849977 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/08/31,3.011543199999997 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/08/23,2.9626789499999973 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/10/03,11.716100000525008 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/09/28,13.116610520289166 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/10/02,11.667925000697494 +Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/11/03,2.668195850000004 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/01/05,17.093231250237512 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/01/28,21.95438333328585 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/01/28,21.95438333328585 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/05,6.350091293460836 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/04,7.587282967509991 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/05,6.350091293460836 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/04,7.587282967509991 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/06,6.1504621302899976 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/05,11.77074999978499 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/29,12.364908333453329 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/06,6.1504621302899976 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/05,11.77074999978499 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/29,12.364908333453329 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/22,7.472916667816662 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/22,7.472916667816662 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/09,2.6467969716666646 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/31,16.701041696661676 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/24,2.996549102999998 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/01,4.528737301999996 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/23,8.248175006947505 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/09,2.6467969716666646 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/31,16.701041696661676 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/24,2.996549102999998 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/01,4.528737301999996 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/23,8.248175006947505 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/01,16.413751251534986 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/09,11.519083333333338 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/24,11.803349999784986 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/01,16.413751251534986 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/09,11.519083333333338 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/24,11.803349999784986 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/03,9.327931446176668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/26,10.04063015466666 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/11,4.883181822299996 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/04,14.785524999354983 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/25,21.394799999740016 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/03,9.327931446176668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/26,10.04063015466666 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/11,4.883181822299996 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/04,14.785524999354983 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/25,21.394799999740016 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/04,16.81789242896668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/05,2.761925000000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/27,14.112820833523331 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/04,16.81789242896668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/05,2.761925000000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/27,14.112820833523331 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/29,18.053254472334466 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/29,18.053254472334466 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/05,4.9742409200949975 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/03/27,10.335015912347489 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/05,4.9742409200949975 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/03/27,10.335015912347489 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/07,16.34495505113999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/28,13.898508386018351 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/21,11.186335615375826 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/06,16.701966666701665 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/29,4.707350000094992 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/07,16.34495505113999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/28,13.898508386018351 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/21,11.186335615375826 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/06,16.701966666701665 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/29,4.707350000094992 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/23,14.21789166666668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/07,2.897256750000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/31,20.2429666799417 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/22,4.66575 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/23,14.21789166666668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/07,2.897256750000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/31,20.2429666799417 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/22,4.66575 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/24,18.527208333405845 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/07/02,2.671002250000006 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/23,13.247025000264989 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/24,18.527208333405845 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/07/02,2.671002250000006 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/23,13.247025000264989 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/11,17.513366666666673 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/02,11.033500002647507 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/03,12.16284999999999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/11,17.513366666666673 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/02,11.033500002647507 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/03,12.16284999999999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/03,18.411100000000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/27,13.382234093333343 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/04,24.281035000000017 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/26,11.617906063333344 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/03,18.411100000000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/27,13.382234093333343 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/04,24.281035000000017 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/26,11.617906063333344 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/10/05,15.356551516714164 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/28,10.966432576666678 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/10/06,11.39778636999999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/27,2.423890700000003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/10/05,15.356551516714164 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/28,10.966432576666678 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/10/06,11.39778636999999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/27,2.423890700000003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/11/07,5.488229097435892 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/11/07,5.488229097435892 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/12/09,4.131706750000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/11/23,12.844100000065003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/12/09,4.131706750000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/11/23,12.844100000065003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/02/26,11.445149105579995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/02/19,12.845583333143331 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/02/26,11.445149105579995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/02/19,12.845583333143331 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/03/30,6.730499999955004 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/03/30,6.730499999955004 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/04/24,9.368541672594182 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/04/23,4.490390909999997 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/04/24,9.368541672594182 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/04/23,4.490390909999997 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/11,7.88832709180334 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/10,14.728233333405832 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/03,6.050947729999991 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/11,7.88832709180334 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/10,14.728233333405832 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/03,6.050947729999991 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/04,6.346645466739167 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/05,5.55552439533333 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/04,6.346645466739167 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/05,5.55552439533333 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/29,3.541747709999995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/08/06,25.20110833333334 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/29,3.541747709999995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/08/06,25.20110833333334 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/08/30,8.744752270000012 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/08/30,8.744752270000012 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/08,11.55892503462001 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/01,2.658540161666667 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/22,18.37779166666669 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/30,3.934250000000003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/23,4.737649999999995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/08,11.55892503462001 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/01,2.658540161666667 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/22,18.37779166666669 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/30,3.934250000000003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/23,4.737649999999995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/24,13.139235362331071 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/11/10,2.974891972435895 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/25,5.242197749999992 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/24,13.139235362331071 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/11/10,2.974891972435895 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/25,5.242197749999992 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/12/11,8.989886946914432 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/11/26,3.77459342307692 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/03/01,10.712608333333348 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/04/11,9.33309791469917 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/04/02,11.532637602980008 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/03/26,7.906795844673329 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/03/25,4.275547260769229 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/05/05,6.811097729999992 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/05/29,23.86148333338084 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/07/07,20.355091668966683 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/06/21,19.147250026307518 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/07/08,7.394440017999999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/06/29,9.47830833625833 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/06/22,5.01202594249084 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/08/09,24.91435833333336 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/07/31,9.839525010000012 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/08/24,20.688279166641667 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/08/25,22.058291671266677 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/10/04,23.45649166645165 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/11/04,2.987445349999997 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/12/07,8.599522952731668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/12/06,3.2313750000000043 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/12/23,11.109575 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/03/29,9.121116666524156 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/05/07,5.281518749522511 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/05/08,4.059200574999996 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/08,11.910766675866666 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/01,12.870866666866668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/09,3.501163839999998 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/05/31,14.447116669039168 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/07/03,17.128109090142498 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/24,20.35895833333332 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/25,2.7041522500000057 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/08/11,19.742654166284154 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/08/04,10.454434090190004 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/07/26,23.73701667112417 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/08/03,13.635866671314174 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/07/27,18.259750000000004 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/09/05,9.304903786666673 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/09/21,16.137820833333333 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/09/29,11.986349999999986 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/11/08,6.295024993000009 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/10/23,6.6303416576866745 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/12/10,7.468049995325011 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/11/24,7.941349992620005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/01/02,11.431491667876694 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/03/06,9.463833332858352 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/02/20,21.66638333333335 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/04/07,23.11193940136169 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/03/22,14.292046221266684 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/05/09,6.445274996377512 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/05/02,12.038783349170842 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/04/23,7.165314400000004 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/05/10,10.18130833405332 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/05/26,16.19805834023335 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/07/04,16.108210001392507 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/08/06,8.53620378666667 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/07/28,11.24410833578084 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/08/05,8.305600000435 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/08/22,9.957027270000008 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/09/06,13.298124999999988 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/08/30,3.629250000000007 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/10/09,9.306140911666668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/09/30,7.436541659331673 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/09/22,19.157533333333323 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/11/10,4.718927282490001 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/10/25,9.212439995534996 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/11/09,3.105925000000003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/12/03,5.5317999999975065 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/12/11,8.29904621757165 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/02/06,21.750616666666684 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/04/03,13.296100032200007 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/04/02,3.7888620883333295 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/04/26,5.311178991836667 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/04/27,4.60523846153846 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/06/05,5.690734090384995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/06/29,22.28480833333335 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/08/09,15.466899999169987 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/07/31,21.106635000000026 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/07/24,12.69946667126666 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/08/08,8.97597500058 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/07/23,3.535850000000003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/08/25,19.884175004147504 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/08/24,3.60321439333333 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/09/26,5.463268180000001 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/09/25,9.59934166810165 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/11/05,4.706124298717941 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/10/27,12.999458333333328 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/11/28,14.23650833348582 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/11/24,2.525015500000003 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/11/21,3.688400000312496 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/12/23,7.222724999834997 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/02/09,21.66638333333335 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/01/24,21.750616666666684 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/01/23,22.18061666666668 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/02/24,10.881416667051669 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/06,11.987741685161655 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/06,2.8019789250000007 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/05,4.121068928333329 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/03/29,4.552169042307691 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/08,6.048805308333326 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/07,6.104442045257501 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/30,9.08022636804749 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/29,4.200029553017499 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/22,2.85503857 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/05,21.1514266666667 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/31,22.30155000039001 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/08,6.128216671931659 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/31,11.62777083338083 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/24,5.387025000744999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/09,25.668979166666688 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/04,11.20141742333334 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/22,15.470987498757486 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/11,25.31597500920004 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/10,15.403575002447502 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/03,2.6299452100000043 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/02,17.560600013800023 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/25,5.297483336666666 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/24,4.667543049999999 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/08/07,15.29187500934252 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/27,17.78310833333335 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/26,4.489624999999997 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/09/10,7.680790523333338 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/08/24,8.343762876714173 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/08/28,4.743528816666665 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/02,6.883206066666666 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/06,9.186825609739165 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/09/29,4.849779734615379 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/09/21,7.0987977300725005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/05,4.910589777362496 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/08,5.649496360333327 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/07,3.9079243066666662 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/31,13.240275001599992 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/30,3.0547429499999987 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/23,6.196937499907497 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/22,6.017302284999995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/22,9.474929471988322 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/12/10,5.654333495333328 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/12/01,2.784750000000005 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/24,2.6785250000000054 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/02/11,11.539141666451666 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/04/09,3.507033299999997 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/04/08,2.5108131499999997 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/04/01,4.193304549999995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/09,21.84447714299964 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/04/22,8.29021249682751 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/11,7.5227166736141635 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/10,17.74583333505833 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/31,3.962434090144995 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/06/04,4.242771213333335 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/27,16.427175 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/26,3.308154549999996 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/06/27,14.99831667608416 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/06/22,8.748252270917506 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/06,2.44569878076923 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/05,6.907408333860843 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/10,9.285129167004156 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/24,24.81073500014502 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/06,4.250218338666663 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/30,8.308993180000009 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/22,3.835374999999992 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/09/11,14.887316260369987 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/09/06,6.663029170026673 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/09/01,2.2709507759183327 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/31,3.0509431899999977 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/23,10.301759100000016 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/22,12.440875756666662 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/10/03,11.285992917604158 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/09/28,8.613097109303329 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/10/02,4.041604423333326 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/10/01,3.1212786399999963 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/11/03,7.782189264666658 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/11/02,3.2815250000950056 +Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/11/26,4.627829169861661 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/01/05,18.810995000380004 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/11,3.557750000000006 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/02,11.90679167232166 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/11,3.557750000000006 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/02,11.90679167232166 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/05/04,4.5955291898933295 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/27,3.346225000000006 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/05/04,4.5955291898933295 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/27,3.346225000000006 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/06,5.932225000265012 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/05,13.705874999784978 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/06,5.932225000265012 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/05,13.705874999784978 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/08,12.307825006324991 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/22,4.617123508333328 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/07,2.686225000000005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/08,12.307825006324991 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/22,4.617123508333328 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/07,2.686225000000005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/09,9.390578030072504 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/31,15.962775013900009 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/24,6.712992423550835 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/01,5.286499999999993 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/09,9.390578030072504 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/31,15.962775013900009 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/24,6.712992423550835 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/01,5.286499999999993 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/01,15.017050001315026 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/25,10.333952085303345 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/09,14.617283335105837 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/01,15.017050001315026 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/25,10.333952085303345 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/09,14.617283335105837 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/03,7.983074998445013 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/26,3.810282424739163 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/11,4.610329169314161 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/04,3.1921433 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/03,7.983074998445013 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/26,3.810282424739163 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/11,4.610329169314161 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/04,3.1921433 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/11/04,5.735537120072502 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/11/04,5.735537120072502 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/11/29,10.996950316491104 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/12/07,3.644000000000008 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/11/29,10.996950316491104 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/12/07,3.644000000000008 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/01/07,7.5417749986825156 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/01/07,7.5417749986825156 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/01/24,21.88613333333335 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/01/24,21.88613333333335 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/05,17.00954170379918 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/03/27,16.39410834038084 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/05,17.00954170379918 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/03/27,16.39410834038084 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/07,6.599634828103584 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/28,8.317725004385013 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/21,8.161183334993341 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/29,7.824941692086663 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/07,6.599634828103584 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/28,8.317725004385013 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/21,8.161183334993341 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/29,7.824941692086663 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/23,6.866432576739173 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/07,4.71405000029 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/31,3.4053068199999985 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/22,15.96105001840003 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/23,6.866432576739173 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/07,4.71405000029 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/31,3.4053068199999985 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/22,15.96105001840003 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/24,6.079450000890009 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/09,4.407961000533331 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/02,15.613683333613334 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/23,2.924832880769229 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/24,6.079450000890009 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/09,4.407961000533331 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/02,15.613683333613334 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/23,2.924832880769229 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/11,8.975368180000011 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/02,3.4758750026574994 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/26,4.650708333475833 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/03,7.388100000144999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/11,8.975368180000011 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/02,3.4758750026574994 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/26,4.650708333475833 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/03,7.388100000144999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/03,18.749321666761663 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/27,9.245140831623337 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/11,2.2876404500000005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/04,12.02130833333334 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/26,24.31557501197497 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/03,18.749321666761663 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/27,9.245140831623337 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/11,2.2876404500000005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/04,12.02130833333334 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/26,24.31557501197497 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/10/05,7.036937503812503 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/28,17.803233344833355 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/10/06,18.09123408999996 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/27,2.654417880000001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/10/05,7.036937503812503 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/28,17.803233344833355 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/10/06,18.09123408999996 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/27,2.654417880000001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/07,4.027632609615382 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/07,4.027632609615382 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/12/09,3.318913461538461 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/30,5.263352249999998 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/23,2.549606750000001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/12/09,3.318913461538461 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/30,5.263352249999998 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/23,2.549606750000001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/12/25,4.410974999999999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/12/25,4.410974999999999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/10,19.268712502162508 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/03,10.422558333118342 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/10,19.268712502162508 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/03,10.422558333118342 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/26,9.077600005382491 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/26,9.077600005382491 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/08,3.89878125695751 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/30,14.219908441498328 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/23,14.843522919314172 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/22,16.10169166661916 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/08,3.89878125695751 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/30,14.219908441498328 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/23,14.843522919314172 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/22,16.10169166661916 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/24,10.182533340065849 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/23,10.286850052900002 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/24,10.182533340065849 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/23,10.286850052900002 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/11,6.038180687184169 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/10,14.949283333405829 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/03,3.691511374999999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/11,6.038180687184169 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/10,14.949283333405829 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/03,3.691511374999999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/04,3.5267181899999933 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/05,3.089397247664836 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/04,3.5267181899999933 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/05,3.089397247664836 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/29,4.153445454999988 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/06,3.377975000000005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/28,15.857908333405824 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/29,4.153445454999988 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/06,3.377975000000005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/28,15.857908333405824 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/30,3.5490990885799967 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/29,7.534051513333338 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/30,3.5490990885799967 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/29,7.534051513333338 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/08,4.299684855775831 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/01,9.10030970473916 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/22,3.032060606811664 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/30,3.047550000000008 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/23,4.121999999999995 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/08,4.299684855775831 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/01,9.10030970473916 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/22,3.032060606811664 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/30,3.047550000000008 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/23,4.121999999999995 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/24,7.909827275119999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/11/10,3.786019427435895 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/25,3.154690513076923 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/24,7.909827275119999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/11/10,3.786019427435895 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/25,3.154690513076923 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/12/11,9.344418196891931 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/12/03,5.478937502572491 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/01/29,7.712349998975001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/03/01,10.63835752780499 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/04/11,3.638608333500842 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/04/02,9.045158332953353 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/05/05,7.212935457999986 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/05/29,5.882081820797505 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/07/07,14.462600032200005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/06/30,11.562700023455005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/06/21,4.397132177730949 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/07/08,4.852638636786669 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/06/29,5.592874650804164 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/06/22,3.4728057307692244 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/08/09,11.522046590047502 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/07/31,2.376075 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/08/24,8.03900834089084 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/09/01,5.02339999999999 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/08/25,2.4900546299999995 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/11/04,8.583591673014151 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/12/07,7.638379033922769 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/11/21,5.625874999340004 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/12/23,12.566424999915006 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/03/29,7.911483332668347 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/04/30,6.794603574781073 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/05/08,3.843372730769228 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/06/08,5.072695733672731 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/06/01,12.0180000002 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/06/09,5.989475000764993 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/05/31,15.416483333428324 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/10,21.77921666666665 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/03,5.060841669078334 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/06/24,10.705000001517506 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/02,2.699275000000004 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/08/11,22.67461666676168 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/08/04,10.17256742366584 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/26,11.156075000547494 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/08/03,9.65054166676167 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/27,14.35658194458693 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/09/05,11.231049992810002 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/09/04,3.759425000072498 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/09/21,14.799926666761673 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/11/08,8.201724030287766 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/10/30,6.224149999540007 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/03/06,14.0280749999525 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/04/07,19.28100834023336 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/03/22,15.792040912300015 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/05/02,5.155935830240837 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/04/23,7.145227281666661 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/05/10,3.6159562246153816 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/06/11,4.239261360577494 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/05/26,3.587919230769223 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/07/04,4.527575000192507 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/08/06,8.954895835995835 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/07/28,14.62414167816668 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/08/05,2.8509045000000013 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/07/29,5.38316679730768 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/08/22,11.447901510047496 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/08/30,2.590320375000001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/10/09,15.52756819679193 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/09/23,12.474868381533328 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/10/08,14.616399999999976 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/10/01,7.010213293076925 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/09/22,21.07371666666667 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/11/10,5.478290920427504 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/11/09,12.60729469333331 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/12/03,6.42124999690001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/12/11,4.375410614423331 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/02/21,22.337341666666678 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/04/10,16.52806670576667 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/04/03,13.52131668480417 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/03/25,7.842290462753337 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/04/02,6.389983354153328 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/04/26,11.872350006375012 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/06/06,9.689431668231675 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/06/05,6.0785382518841695 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/05/29,5.612425002372503 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/06/29,11.900949997267498 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/08/09,13.592949999504988 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/07/31,10.635073860000007 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/07/24,17.038470836005832 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/08/08,7.023000000217508 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/07/23,2.807375000000004 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/09/10,12.430853030072493 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/08/25,2.4806750005275 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/09/09,12.384451513333309 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/08/24,5.73292121333333 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/09/26,18.437365155633323 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/10/11,20.17392166714165 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/09/25,15.704018179999968 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/04,9.329683642555004 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/05,4.115814980769224 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/10/27,4.659470844451665 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/29,5.328390799047612 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/12/07,20.293116665441683 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/24,3.153309174999998 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/21,3.5704257774358954 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/12/22,5.630849995870007 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/01/07,12.393325000000004 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/01/23,22.25651666666668 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/02/24,7.466375001585005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/03/05,22.169733333333344 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/06,18.23298339571834 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/06,8.221290905072493 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/05,5.000253799999992 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/08,6.878319706739159 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/07,4.481263644429166 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/30,10.203862727999985 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/29,7.472108335563328 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/22,3.260644230769231 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/05,7.500563640192501 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/08,3.556550000000008 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/31,8.748067053805007 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/24,11.92230833338082 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/23,14.583874999999988 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/09,4.984046818144993 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/04,3.509189393333329 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/22,22.50616249923501 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/11,13.929975000237496 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/10,6.596879666198211 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/03,2.6414022500000005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/02,7.232783335268318 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/25,3.915515949999995 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/24,6.973366741999992 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/08/07,9.907630300000005 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/26,9.978499999617505 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/26,4.749975000507493 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/09/10,11.33622944463444 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/08/29,18.35415833813335 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/08/24,7.42924507671417 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/08/28,9.290092704102564 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/10/02,3.496600783333329 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/10/06,11.016710606714176 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/09/29,14.63349166706665 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/09/21,5.597723651999998 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/05,8.503902499699997 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/08,2.606467255 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/07,4.975861528739164 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/10/30,4.845543649435895 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/10/22,12.017035614999996 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/22,11.481942922374168 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/12/10,3.9984184407692287 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/12/01,2.537102250000004 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/24,6.637511023076916 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/01/11,4.259447754807693 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/01/10,12.32948333453335 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/04/09,3.4039377999999965 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/04/08,6.158485838666662 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/04/01,16.85523409019 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/09,9.757429167969176 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/10,18.49679227730001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/02,4.1862916786958335 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/31,4.226968180362493 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/06/04,17.39895000920003 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/06/03,8.106167046342504 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/27,18.714766671386663 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/26,15.07136000805001 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/06/22,17.218799999784995 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/06,2.9955216307692285 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/05,15.266875011737502 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/24,20.990408333333317 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/08/06,4.655402081538456 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/30,10.900395450000008 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/22,3.941715909999992 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/09/11,7.654560606761672 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/09/06,24.44116666666665 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/08/31,4.029361369999998 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/08/23,10.340034090000003 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/08/22,16.97600000004751 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/10/03,9.063682500594997 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/09/28,6.216999998420006 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/10/02,6.274625003380834 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/10/01,15.36087424333331 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/11/03,3.083545929999997 +Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/11/26,6.806515910452498 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/01/05,12.997404167769185 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2014/12/27,22.761225000000003 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/02/06,22.689058333333342 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/01/28,21.85934999973752 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/02/06,22.689058333333342 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/01/28,21.85934999973752 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/03/02,22.674233333333337 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/03/01,21.750616666666684 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/03/02,22.674233333333337 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/03/01,21.750616666666684 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/04/02,12.717991672369156 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/04/02,12.717991672369156 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/05,8.370771346024407 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/04,5.968964027919998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/05,8.370771346024407 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/04,5.968964027919998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/06/06,13.130725000047514 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/29,14.186200000190004 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/06/06,13.130725000047514 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/29,14.186200000190004 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/08,14.055216677096668 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/06/22,14.420450000237498 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/07,7.670800000435004 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/08,14.055216677096668 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/06/22,14.420450000237498 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/07,7.670800000435004 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/09,19.138216666966656 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/31,17.676383333333312 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/24,20.749176666666656 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/01,14.10908125009498 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/23,2.7640250000475017 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/09,19.138216666966656 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/31,17.676383333333312 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/24,20.749176666666656 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/01,14.10908125009498 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/23,2.7640250000475017 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/25,10.734037083675831 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/09,21.01232500017 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/25,10.734037083675831 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/09,21.01232500017 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/26,21.330391666529145 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/10/11,12.854975000295 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/10/04,5.9987035214598805 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/25,13.151758333333326 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/26,21.330391666529145 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/10/11,12.854975000295 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/10/04,5.9987035214598805 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/25,13.151758333333326 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/04,20.41683335417584 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/05,2.622075000000007 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/04,20.41683335417584 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/05,2.622075000000007 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/29,11.04320397055896 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/12/07,3.0081500000000063 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/29,11.04320397055896 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/12/07,3.0081500000000063 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/05,19.298500018495005 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/03/27,15.054762501085 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/04,3.5122750000000047 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/05,19.298500018495005 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/03/27,15.054762501085 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/04,3.5122750000000047 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/07,10.672216669376668 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/28,18.79065837243335 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/21,13.999412501422505 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/29,3.8482886399999967 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/07,10.672216669376668 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/28,18.79065837243335 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/21,13.999412501422505 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/29,3.8482886399999967 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/23,17.414058333165848 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/07,14.971458333413322 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/31,5.153447729999997 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/22,18.787925001150004 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/23,17.414058333165848 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/07,14.971458333413322 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/31,5.153447729999997 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/22,18.787925001150004 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/24,16.187924999999996 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/07/02,9.279600004214998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/23,13.74090908999998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/24,16.187924999999996 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/07/02,9.279600004214998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/23,13.74090908999998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/11,11.899285000047492 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/02,7.640725008715 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/07/26,10.37071666654667 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/11,11.899285000047492 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/02,7.640725008715 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/07/26,10.37071666654667 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/03,15.823801666714155 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/27,13.417710416714163 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/11,3.0694356900000006 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/04,17.15485374999999 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/26,23.681003337933344 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/03,15.823801666714155 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/27,13.417710416714163 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/11,3.0694356900000006 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/04,17.15485374999999 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/26,23.681003337933344 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/10/05,17.082016666664185 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/28,20.93785000000001 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/10/06,14.718199999999976 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/10/05,17.082016666664185 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/28,20.93785000000001 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/10/06,14.718199999999976 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/11/07,5.140351971102562 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/11/07,5.140351971102562 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/12/09,5.415925274999993 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/11/23,2.5736000000000026 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/12/09,5.415925274999993 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/11/23,2.5736000000000026 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/01/02,11.85984999981 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/01/01,21.95438333328585 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/12/25,20.81540625020001 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/01/02,11.85984999981 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/01/01,21.95438333328585 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/12/25,20.81540625020001 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/03,9.814750000000014 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/03,9.814750000000014 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/26,8.036081260132491 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/27,8.240320833520844 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/26,8.036081260132491 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/27,8.240320833520844 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/08,3.6579944637810735 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/03/30,9.47003333583333 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/08,3.6579944637810735 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/03/30,9.47003333583333 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/24,8.004199999077507 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/23,7.30200908999999 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/24,8.004199999077507 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/23,7.30200908999999 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/11,9.27632709261334 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/03,5.6680787916666615 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/11,9.27632709261334 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/03,5.6680787916666615 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/04,12.064775009860004 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/05,18.705166674184145 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/26,17.855549999540013 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/04,12.064775009860004 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/05,18.705166674184145 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/26,17.855549999540013 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/29,30.336133333333382 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/06,2.772302250047502 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/28,17.66310833302333 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/29,30.336133333333382 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/06,2.772302250047502 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/28,17.66310833302333 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/30,19.23226 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/29,11.799699999999998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/30,19.23226 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/29,11.799699999999998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/01,13.878850000452491 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/22,8.393298670175 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/30,6.195384099999991 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/23,16.926599999999976 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/01,13.878850000452491 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/22,8.393298670175 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/30,6.195384099999991 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/23,16.926599999999976 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/24,12.744976336724172 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/11/10,13.06330833353332 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/25,4.253791985576925 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/24,12.744976336724172 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/11/10,13.06330833353332 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/25,4.253791985576925 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/12/11,10.754110995221096 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/12/03,3.0600000000000067 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/03/01,8.519808340835825 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/04/11,14.833489584323363 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/05/05,12.211797734599996 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/05/29,6.331076515385006 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/07/07,18.233200002300013 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/06/30,13.372604182579158 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/06/21,29.587237500270003 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/07/08,6.560100000095003 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/06/29,7.578741068533342 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/06/22,17.99511742563331 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/08/09,14.742941666714165 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/08/24,8.063400025702501 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/09/01,8.694250000072499 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/08/25,16.71479166666666 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/11/04,4.796266606666662 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/12/23,14.433800000457516 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/01/31,22.76205 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/03/29,6.098524996530013 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/04/30,4.891279974290233 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/05/08,4.022576819999998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/06/08,9.647078041150843 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/06/01,11.259833333733338 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/06/09,7.916219547999994 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/05/31,7.006940910602504 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/10,12.907039999142496 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/03,5.355984090552502 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/06/24,17.495429166284154 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/02,4.873249999999993 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/08/11,10.449614173821663 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/08/04,17.997091666714155 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/26,20.78193333338084 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/08/03,18.11755 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/27,22.608133333333328 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/09/05,17.45295833333332 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/09/21,11.427156253284991 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/10/06,13.340649999784976 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/11/08,14.02341073012333 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/10/30,6.857074999785008 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/10/23,9.3654062552775 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/11/24,13.04043335408083 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/01/02,8.576449998902524 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/03/06,10.076408332858351 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/04/07,20.27041252975752 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/03/22,23.68231531007278 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/05/02,9.587975003670012 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/04/23,18.77866742896669 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/06/11,6.46772121340583 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/05/26,6.841483333475841 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/06/26,11.902695829148332 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/07/04,14.914458338005836 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/08/06,12.341656282532504 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/07/28,11.805133333760834 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/08/05,4.274163619999997 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/08/22,15.237758332498352 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/08/30,4.407858574615378 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/10/09,9.227531255092494 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/09/23,17.61961666528918 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/10/01,6.785427384615375 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/09/22,18.44861666666668 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/11/10,10.19524500259 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/11/09,16.551399999755002 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/12/03,6.80407499344501 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/02/21,22.34590833333334 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/10,15.752558333315823 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/03,12.558681260467496 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/03/25,10.319429167626677 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/02,18.05142503684751 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/26,16.343300002300012 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/27,10.969943749259995 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/06/06,7.960175000660006 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/06/05,5.0538772749049965 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/05/29,13.25594999935499 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/06/29,14.828741668681657 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/06/21,17.418750000585003 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/08/09,16.495051670926674 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/07/31,11.843756254287507 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/07/24,18.232824998822508 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/08/08,9.023050000047496 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/07/23,15.223595833070863 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/08/25,10.20851668830916 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/08/24,12.933566666761664 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/09/26,14.563175015837516 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/10/11,18.05289166709415 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/09/25,15.875531250522483 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/11/04,11.468994891767496 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/10/27,10.357758335205832 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/11/29,8.270870854170825 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/12/07,12.28779999999998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/11/24,10.510426506739158 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/11/21,3.2580214566666648 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/01/23,22.304175000000008 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/02/24,7.042850001785005 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/03/05,22.18061666666668 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/06,12.61949584549084 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/03/28,10.41331666666668 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/06,9.262106056666656 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/05,5.174878083333329 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/08,8.169950004999993 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/07,6.740161387263328 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/30,7.082535457999987 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/29,6.5918587640058375 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/22,3.3143750000000063 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/05,25.082341668966706 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/31,10.102649999805005 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/08,7.895190906577507 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/31,11.454466666809164 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/24,8.223410607294165 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/23,21.381749999540013 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/09,20.12222500009497 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/04,17.110183344703348 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/22,18.59257083219334 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/11,17.403185606856653 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/10,15.205775007522504 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/03,15.887633333428322 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/02,13.618866666714151 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/25,18.935583333433318 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/24,14.912091669014142 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/08/07,14.464559999737505 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/26,21.90473333333335 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/08/11,7.796175000290001 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/09/10,9.01850208395332 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/08/24,7.853425038237506 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/08/28,12.975756250047482 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/02,17.982433333475825 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/06,16.93255833309582 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/09/29,3.9224000002899952 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/09/21,18.339150000000007 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/05,4.326851674884994 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/31,5.5334500002350095 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/08,12.43897951999998 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/07,13.463601526666652 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/30,17.314754549999964 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/23,15.339000000189996 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/22,20.682133336393303 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/22,11.31045125182 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/12/10,3.0698386399999977 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/24,3.57188911538462 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/02/11,22.304175000000008 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/04/09,19.39962196910916 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/04/08,9.63082505 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/04/01,16.665734090452496 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/09,9.801741668399174 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/11,2.9855522500000005 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/10,14.879390833190834 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/02,12.991100000399989 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/31,10.463785603380838 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/06/04,13.90936666671418 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/06/03,4.80812083241333 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/27,14.65983333340583 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/26,6.750410607448337 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/07/06,6.685175000715009 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/07/05,22.956158333405845 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/10,8.612324993134997 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/06,7.0732499999999945 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/07/30,8.469812119999999 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/07/22,3.715209099999995 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/09/11,10.13450958465082 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/09/06,16.21969374962249 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/31,16.69818124976249 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/23,15.197522916666651 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/22,14.52219333333333 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/10/03,7.841628809798325 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/09/28,5.814699995255015 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/10/02,18.213016666381677 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/10/01,17.683633333333322 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/11/03,13.811058347233343 +Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/11/26,20.20668333367084 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/01/05,15.380375000584984 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/01/28,21.64230833307085 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/01/28,21.64230833307085 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/03/02,22.44997500000001 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/03/02,22.44997500000001 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/05/05,10.980341668994184 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/05/04,12.607258345983348 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/04/27,6.790725000617494 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/05/05,10.980341668994184 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/05/04,12.607258345983348 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/04/27,6.790725000617494 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/06,2.8961515249283307 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/05,3.076975000095004 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/06,2.8961515249283307 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/05,3.076975000095004 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/08,17.039041666261664 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/22,3.9568757534058254 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/08,17.039041666261664 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/22,3.9568757534058254 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/09,2.668499999999999 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/31,3.552110607439163 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/24,3.794031641610956 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/01,4.4663507410256384 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/23,3.2210022500475004 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/09,2.668499999999999 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/31,3.552110607439163 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/24,3.794031641610956 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/01,4.4663507410256384 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/23,3.2210022500475004 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/01,10.772664586578353 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/25,6.648135645723338 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/09,6.644704925619997 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/01,10.772664586578353 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/25,6.648135645723338 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/09,6.644704925619997 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/03,7.105270827343346 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/26,3.3167528746666624 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/11,3.650274999999998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/04,4.300450000072496 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/03,7.105270827343346 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/26,3.3167528746666624 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/11,3.650274999999998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/04,4.300450000072496 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/11/04,6.072082573478327 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/11/04,6.072082573478327 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/11/29,7.036690042475951 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/11/29,7.036690042475951 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/01/07,6.67322499667001 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/01/08,2.8395250000000054 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/01/07,6.67322499667001 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/01/08,2.8395250000000054 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/05,6.018388258966675 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/03/27,15.486169444639442 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/05,6.018388258966675 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/03/27,15.486169444639442 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/07,4.560308335895832 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/28,14.475316687366671 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/21,6.841644165281671 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/29,6.543225759213321 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/07,4.560308335895832 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/28,14.475316687366671 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/21,6.841644165281671 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/29,6.543225759213321 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/23,3.5255090906524966 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/07,14.50041001272252 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/31,4.196131820797493 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/22,16.468558343683352 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/23,3.5255090906524966 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/07,14.50041001272252 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/31,4.196131820797493 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/22,16.468558343683352 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/07/01,13.870150000047513 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/24,7.713109091400002 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/23,3.8132443807692273 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/07/01,13.870150000047513 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/24,7.713109091400002 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/23,3.8132443807692273 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/11,4.090872577999993 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/02,4.909763640554998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/07/26,3.8906000018116593 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/10,2.5376250000000016 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/03,13.36063333331831 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/11,4.090872577999993 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/02,4.909763640554998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/07/26,3.8906000018116593 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/10,2.5376250000000016 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/03,13.36063333331831 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/03,4.069459843550828 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/27,3.0425931811599964 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/11,3.8598468047435857 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/04,3.962975000072496 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/26,2.6969329207692287 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/03,4.069459843550828 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/27,3.0425931811599964 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/11,3.8598468047435857 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/04,3.962975000072496 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/26,2.6969329207692287 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/10/05,2.486508941333333 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/28,2.2252697028991646 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/10/06,3.8501776153846152 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/27,4.586075758930835 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/10/05,2.486508941333333 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/28,2.2252697028991646 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/10/06,3.8501776153846152 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/27,4.586075758930835 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/07,2.874885425 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/07,2.874885425 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/12/09,4.334932978076916 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/30,6.204804171756657 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/23,2.687525000000006 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/12/09,4.334932978076916 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/30,6.204804171756657 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/23,2.687525000000006 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/01/02,7.455137084183321 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/12/25,6.078204161153841 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/01/02,7.455137084183321 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/12/25,6.078204161153841 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/10,14.190983333095843 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/03,9.83048333333335 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/10,14.190983333095843 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/03,9.83048333333335 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/26,8.697058339860826 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/19,10.644433333048337 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/27,19.743166667116665 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/26,8.697058339860826 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/19,10.644433333048337 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/27,19.743166667116665 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/08,4.12590304855083 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/30,9.295149999715 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/23,17.3194062519625 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/22,12.679312500190008 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/08,4.12590304855083 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/30,9.295149999715 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/23,17.3194062519625 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/22,12.679312500190008 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/24,7.515091666736668 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/23,4.625794549999994 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/24,7.515091666736668 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/23,4.625794549999994 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/11,6.662870834673332 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/03,4.070990019999996 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/11,6.662870834673332 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/03,4.070990019999996 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/04,2.705234089999997 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/05,4.415432786217945 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/26,11.025225000189982 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/04,2.705234089999997 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/05,4.415432786217945 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/26,11.025225000189982 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/29,4.263068185072489 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/06,5.277428330769221 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/29,4.263068185072489 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/06,5.277428330769221 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/30,3.413489998362495 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/29,3.112775230769228 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/30,3.413489998362495 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/29,3.112775230769228 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/10/01,3.3336795599999967 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/22,4.609348375859278 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/30,4.457138499999998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/23,2.6298784307692302 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/10/01,3.3336795599999967 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/22,4.609348375859278 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/30,4.457138499999998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/23,2.6298784307692302 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/10/24,3.813987267145 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/11/10,4.158833346153841 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/10/24,3.813987267145 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/11/10,4.158833346153841 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/12/11,8.480392250551098 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/12/03,3.480772729999996 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/12/27,9.95733958474085 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/01/29,21.151200000522508 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/03/01,6.552568775145005 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/04/11,10.96854586292084 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/05/05,5.5128613649999885 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/05/29,4.230512873623325 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/07/07,10.069533340305831 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/06/30,4.59072500209 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/06/21,6.969203332760839 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/07/08,5.047711387179478 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/06/29,3.7213575783333273 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/06/22,4.19860091826923 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/08/09,3.5459590999999966 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/08/24,7.148899999497493 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/09/01,14.98832499976998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/08/25,5.645438373076916 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/11/04,5.534404169351661 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/12/07,9.669226697556663 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/12/23,9.20516042045666 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/01/31,22.539900000000006 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/03/29,16.089702086945863 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/04/30,5.673174999955005 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/05/08,3.568517440769229 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/06/08,16.71514168736668 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/06/01,13.47030833351834 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/06/09,7.052675759155823 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/05/31,14.143708333405831 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/10,13.979775000167496 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/03,2.415183327971667 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/02,3.5498500000000064 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/08/11,2.6523060688416664 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/08/04,3.7908877282174944 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/26,15.361050002420011 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/08/03,3.659625000409994 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/27,4.614220450119996 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/09/05,3.2565121333333296 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/09/04,3.200697804999998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/09/21,4.617134089999997 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/10/06,11.432749999984985 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/11/08,8.701987672030265 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/10/30,11.507414184524183 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/10/23,5.878788613221119 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/03/06,8.775883333380845 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/04/07,12.896741689451677 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/03/22,15.846540912300018 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/04/08,14.751325004744976 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/05/02,4.79406916422167 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/04/23,7.522462876666671 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/05/10,4.7404249969230685 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/06/11,3.3922545000000053 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/05/26,4.037161370144999 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/07/04,7.957500002372503 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/08/06,2.508774999999998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/07/28,15.083391687366678 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/08/05,2.943450000000004 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/07/29,4.564881523076913 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/08/22,2.876565909999999 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/09/06,15.27177499999998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/08/30,3.2192545000000017 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/10/09,8.366627919047621 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/09/23,9.947725000522508 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/10/08,18.959741666421674 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/10/01,4.448625000427504 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/09/22,5.868065910965004 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/11/10,6.516697740190002 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/11/09,3.952762341666666 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/12/11,6.660951138519998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/02/21,22.26459166666668 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/04/10,18.147814619870832 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/04/03,9.669250003695003 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/03/25,13.57085467593584 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/04/02,5.085361399999991 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/04/26,10.09030833345333 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/06/06,15.16375583276335 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/06/05,7.820848888168335 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/05/29,4.239374999999995 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/06/29,13.007412500094985 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/06/30,8.916850000217496 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/08/09,16.54545416683413 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/07/31,4.454152270144991 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/07/24,11.066849998730008 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/08/08,6.595325000290009 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/09/10,2.934104549999996 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/08/25,2.962759091639999 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/09/09,3.95714621333333 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/08/24,6.358150000000002 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/09/26,3.383218789739161 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/10/11,3.245646540769228 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/09/25,3.3615149115384586 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/04,9.475388194634426 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/05,3.4330795000000056 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/10/27,8.17454167265415 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/29,3.807440151884166 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/12/07,23.165091666559164 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/24,3.069774218910254 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/21,3.954298322692308 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/01/07,11.615083333333338 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/01/08,4.283894230769231 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/01/07,11.591800000000005 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/06,4.661428792490001 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/06,5.554036379999991 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/05,4.161150000192494 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/03/29,4.18984775480769 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/08,3.5761113999999976 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/07,12.371341681616675 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/30,5.51826590999999 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/29,11.905225036800005 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/22,3.4182250000000085 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/05,4.4339083382366615 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/31,14.606125000094998 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/08,13.766141666856662 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/31,13.157837500357491 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/24,15.702849999725007 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/09,8.722062876666662 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/04,3.4562909123674954 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/22,14.48260833599083 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/11,4.099165909999991 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/10,7.164100015597491 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/03,3.8481805326923055 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/02,3.618239403333328 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/25,4.963084556410248 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/24,4.483449729487175 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/08/07,3.354953773333329 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/26,14.006812499810003 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/26,3.6911250015174977 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/09/10,3.154566514884163 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/08/29,18.58719999990499 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/08/24,9.293149998325 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/08/28,4.561443477884613 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/02,11.812175010142491 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/06,4.381525000072492 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/09/29,4.859630489423076 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/09/21,3.8367946711538417 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/05,11.902008334445837 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/31,7.132724998622512 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/08,3.205744042307688 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/07,3.159161415 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/30,3.429838640000001 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/23,19.397791668666656 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/22,4.4359409249999935 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/22,9.297141947181933 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/12/10,3.2122940582051256 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/12/09,18.14807499940501 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/12/01,19.31240833389083 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/24,5.253190630841726 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/01/11,3.663450004599997 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/01/10,2.7606626766666653 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/04/09,3.984178416923072 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/04/08,3.589285200769228 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/04/01,4.2443919855769225 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/09,10.33224166974168 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/10,18.621041666809163 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/31,3.6522022704349935 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/06/04,8.671625000144997 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/27,8.00610000033751 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/26,11.820854177939166 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/06/22,3.172119705604162 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/06,4.6780429865384505 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/05,15.784891675291671 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/10,16.437977274762478 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/24,7.167683338148334 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/06,4.9806507133333335 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/30,12.166850000247482 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/22,3.622868664102557 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/09/11,3.562696971811661 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/09/06,7.794162491337506 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/31,4.221620191346151 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/23,4.051026609615378 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/22,4.3682613500724905 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/10/03,8.854332500022494 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/09/28,8.281849999175018 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/10/02,4.171369696811663 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/10/01,3.1256978899999965 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/11/03,3.621880415384613 +Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/11/26,17.71738333433332 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/01/05,3.642634094999997 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/01/28,22.27795833333335 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/01/28,22.27795833333335 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/02,22.26459166666668 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/10,21.11538333333335 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/01,21.750616666666684 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/02,22.26459166666668 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/10,21.11538333333335 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/01,21.750616666666684 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/25,12.441924999784996 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/04/02,13.382816666619163 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/25,12.441924999784996 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/04/02,13.382816666619163 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/05/05,10.5089059346825 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/05/04,4.932557987920831 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/04/27,2.618875000000007 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/05/05,10.5089059346825 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/05/04,4.932557987920831 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/04/27,2.618875000000007 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/06,3.7253507784783273 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/05,12.099075000279992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/06,3.7253507784783273 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/05,12.099075000279992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/08,15.149400002014994 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/22,3.155886449999997 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/07,7.827300000434998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/08,15.149400002014994 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/22,3.155886449999997 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/07,7.827300000434998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/09,3.1057249999999947 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/31,14.595108354033329 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/24,3.627503796739161 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/01,3.2075274199999986 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/23,6.271825000000008 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/09,3.1057249999999947 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/31,14.595108354033329 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/24,3.627503796739161 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/01,3.2075274199999986 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/23,6.271825000000008 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/01,8.690360414884193 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/25,7.451254540145 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/01,8.690360414884193 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/25,7.451254540145 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/26,3.211314254666661 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/10/11,14.799833333833329 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/10/04,6.8548587155108125 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/25,6.950633334315822 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/26,3.211314254666661 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/10/11,14.799833333833329 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/10/04,6.8548587155108125 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/25,6.950633334315822 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/04,21.221700020700023 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/05,3.4252250000000077 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/04,21.221700020700023 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/05,3.4252250000000077 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/29,11.067033199096938 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/29,11.067033199096938 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/01/07,7.411424998700011 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/01/07,7.411424998700011 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/01/24,21.675758333333352 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/01/24,21.675758333333352 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/05,14.249608352118331 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/03/27,16.088554168874186 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/05,14.249608352118331 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/03/27,16.088554168874186 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/07,14.588758356618346 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/28,7.997008337933326 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/21,5.286055257996896 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/29,5.012962123333335 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/07,14.588758356618346 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/28,7.997008337933326 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/21,5.286055257996896 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/29,5.012962123333335 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/23,8.491558333595835 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/07,2.847325000000004 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/31,5.362299999999998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/22,7.906616666714179 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/23,8.491558333595835 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/07,2.847325000000004 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/31,5.362299999999998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/22,7.906616666714179 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/01,16.94440000095999 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/24,19.882079166714146 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/09,3.6359250000000087 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/02,3.6832692307692296 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/23,4.032866060769224 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/01,16.94440000095999 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/24,19.882079166714146 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/09,3.6359250000000087 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/02,3.6832692307692296 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/23,4.032866060769224 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/11,4.672636971333322 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/26,14.312933335945836 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/03,7.847250000579996 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/11,4.672636971333322 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/26,14.312933335945836 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/03,7.847250000579996 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/03,10.1819795400725 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/27,3.0932727212324944 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/11,5.711259089999995 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/04,10.080258333665842 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/26,2.9297136649999977 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/03,10.1819795400725 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/27,3.0932727212324944 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/11,5.711259089999995 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/04,10.080258333665842 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/26,2.9297136649999977 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/10/05,9.704900004934998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/28,10.507483337910832 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/10/06,5.081997729999995 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/27,4.192525000627497 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/10/05,9.704900004934998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/28,10.507483337910832 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/10/06,5.081997729999995 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/27,4.192525000627497 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/07,4.182689348666663 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/07,4.182689348666663 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/12/09,5.18051235230768 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/30,16.492616667046665 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/23,5.101300000072491 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/12/09,5.18051235230768 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/30,16.492616667046665 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/23,5.101300000072491 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/12/25,20.942664583485843 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/12/25,20.942664583485843 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/10,18.945037502162503 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/10,18.945037502162503 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/26,11.428793768554993 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/27,17.06662500711503 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/26,11.428793768554993 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/27,17.06662500711503 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/08,15.926863641802472 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/03/30,11.537689584238342 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/03/22,15.245974999905007 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/08,15.926863641802472 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/03/30,11.537689584238342 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/03/22,15.245974999905007 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/24,8.908866666584169 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/23,12.521875006995002 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/24,8.908866666584169 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/23,12.521875006995002 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/11,8.649115544890833 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/10,13.09997499999998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/03,4.126856819999992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/11,8.649115544890833 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/10,13.09997499999998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/03,4.126856819999992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/04,14.251375013799992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/05,2.7347066807692304 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/04,14.251375013799992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/05,2.7347066807692304 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/29,4.374004599999994 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/28,13.091699999999992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/29,4.374004599999994 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/28,13.091699999999992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/08/30,10.230943180095004 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/08/29,11.295583335775838 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/08/30,10.230943180095004 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/08/29,11.295583335775838 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/08,7.947270827368343 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/01,23.93569394460001 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/22,25.755025 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/30,2.7889473600000008 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/23,22.35860833352332 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/08,7.947270827368343 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/01,23.93569394460001 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/22,25.755025 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/30,2.7889473600000008 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/23,22.35860833352332 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/24,6.968201521666662 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/11/10,5.353355692454161 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/25,2.424586 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/24,6.968201521666662 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/11/10,5.353355692454161 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/25,2.424586 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/12/11,12.11171395872861 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/12/03,13.394524999984982 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/01/28,13.628999999904996 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/03/01,8.52427501306999 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/04/11,15.000385418959194 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/05/05,16.472466682861686 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/05/29,3.919669703623325 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/07/07,8.497125000120011 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/06/30,9.385537502387496 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/06/21,8.053000000432501 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/07/08,3.7953568199999936 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/06/29,5.299550020706662 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/06/22,2.90673426730769 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/08/09,11.870375278300266 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/08/24,14.460043438945842 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/08/25,15.616487502584985 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/11/04,10.91801737666666 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/12/07,8.43633917350166 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/12/23,12.256499999715 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/01/31,22.76551666666667 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/04/30,9.132341677794166 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/05/08,3.10226645 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/06/08,14.426858350863345 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/06/01,11.873258331153329 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/06/09,12.818170469999972 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/05/31,15.056437499715 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/10,20.344458333285807 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/03,3.2181310573916653 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/02,2.878804500000005 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/08/11,24.83754166666667 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/08/04,26.601350000047518 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/26,15.25499999978499 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/08/03,12.4089000026 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/27,20.65159166910917 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/09/05,13.91164583350086 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/09/04,12.367916678266663 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/09/21,14.887914583333318 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/11/08,14.25238781435416 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/10/30,6.729199999725011 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/11/24,8.715374997760001 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/03/06,8.849975000000015 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/02/28,21.57322500000001 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/04/07,19.581720839803356 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/03/22,24.501758349550823 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/04/08,21.70892499904752 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/05/02,9.467775002282492 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/04/23,17.35459395610002 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/05/10,3.429495499999995 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/05/26,21.78642500000001 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/07/05,17.768262500022498 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/06/26,12.52251083314335 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/07/04,2.635341424999999 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/08/06,14.612283333333348 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/07/28,5.104138642224169 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/08/05,9.658000000217491 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/08/22,8.38454242333334 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/09/06,14.487008333333318 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/08/30,7.1701250001449965 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/10/09,5.586150002347508 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/09/23,16.09920000004752 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/10/08,13.408900000399983 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/09/22,20.364308333428315 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/11/10,10.242185517310268 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/11/09,10.88963697133333 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/12/11,15.154508333533316 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/02/21,22.26459166666668 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/04/10,10.061299998405 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/04/03,12.220645465587497 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/03/25,9.351606236545011 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/04/02,22.074141673709164 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/04/26,13.2004250124225 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/06/06,15.279881249050014 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/06/05,6.114070830898332 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/05/29,4.992675000867498 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/08/09,11.49031666688166 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/07/31,4.25848408999999 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/07/24,18.78876249999998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/08/08,23.41000833373332 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/07/23,6.898350756761679 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/09/10,10.422706056666671 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/08/25,3.3346000006950054 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/09/09,3.597800000000004 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/08/24,5.718274999999997 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/09/26,7.742141667476668 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/10/11,8.463128637999997 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/09/25,13.253949999999977 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/04,14.337073753380002 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/05,7.272436369999996 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/10/27,5.293331819999989 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/29,11.04641674742167 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/12/07,14.182225001605014 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/24,8.762587866666662 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/21,16.093684092300013 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/01/07,22.663366666666672 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/01/23,23.228724999999997 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/02/24,6.64867500131001 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/06,13.297395834788338 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/03/28,22.76205 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/06,15.568387127300005 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/05,4.90270307333333 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/03/29,5.756907973076913 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/08,5.301539398333323 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/07,5.669172365469997 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/30,8.082141524666659 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/29,7.028749246666664 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/05,20.24581666911169 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/31,14.850599999354998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/08,6.706010611610827 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/31,12.510420833595829 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/24,16.354424999984982 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/09,8.147552270142501 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/04,4.133127270072493 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/22,8.760981666374176 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/11,3.86682499999999 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/10,12.335012500119996 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/03,10.486134090000006 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/02,8.961283337933327 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/25,4.862871966666659 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/24,6.397034233666663 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/08/07,4.3882787978991615 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/26,18.496645832568312 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/09/10,7.456713256999168 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/08/24,5.303200017967503 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/08/28,17.72812802999998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/08/27,8.861900000479995 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/02,20.20625833333333 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/06,18.633616666766656 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/09/29,14.34131514671414 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/09/21,11.365271061333328 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/05,4.299898334695835 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/31,3.884591667226676 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/08,10.246061359999995 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/07,4.345224311666665 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/30,3.695700000119995 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/22,21.317108340233325 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/22,12.85705958879833 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/12/10,5.047969280769226 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/12/09,12.100600000384992 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/12/01,3.629350000000007 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/24,6.781652038461545 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/01/11,10.23715000012 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/02/11,22.35326666666668 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/04/09,28.82557833591829 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/04/08,19.69490834037585 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/04/01,22.467950004505006 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/09,10.928514589035856 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/10,17.014550004287493 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/02,2.871784000000001 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/31,10.438410603333336 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/06/04,20.69040833333335 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/06/03,5.034658338925831 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/27,14.631633335705828 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/26,3.750297729999996 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/06/22,17.052525000355 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/06,3.519275000192494 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/05,6.193650005650002 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/10,17.28761666800666 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/24,9.899660604030837 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/06,2.7205606 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/30,3.350252279999998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/22,3.6098962134058254 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/09/11,16.317315277730255 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/09/06,12.72435833352334 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/31,18.05635985229998 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/23,10.815108333333344 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/22,18.896818333428325 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/10/03,9.43108167615166 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/09/28,10.716379168081676 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/10/02,17.270599999762485 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/10/01,20.73196666666665 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/11/03,15.977101522933326 +Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/11/26,18.31109166886666 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/01/05,8.389000001385 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/03/10,22.113474999737512 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/03/10,22.113474999737512 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/05/05,11.173366668491663 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/05/05,11.173366668491663 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/06/06,12.885641687366675 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/05/29,7.728864881739875 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/06/06,12.885641687366675 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/05/29,7.728864881739875 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/07/08,6.678633334648327 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/06/22,3.4269864249999955 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/07/08,6.678633334648327 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/06/22,3.4269864249999955 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/08/09,2.6938710616666635 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/07/24,6.433852085155828 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/08/01,3.0437522500000056 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/08/09,2.6938710616666635 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/07/24,6.433852085155828 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/08/01,3.0437522500000056 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/09/10,9.9965878862525 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/09/10,9.9965878862525 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/09/26,4.252525001200001 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/10/04,4.358464883444878 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/09/26,4.252525001200001 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/10/04,4.358464883444878 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/11/29,9.032963640215003 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/12/07,19.60209999954001 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/11/29,9.032963640215003 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/12/07,19.60209999954001 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/01/24,21.867666666666683 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/01/24,21.867666666666683 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/03/04,11.099458333118337 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/03/04,11.099458333118337 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/05,5.9578750050724985 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/05,5.9578750050724985 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/07,14.689720840218342 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/21,8.672650011620005 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/29,9.293875000239996 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/07,14.689720840218342 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/21,8.672650011620005 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/29,9.293875000239996 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/23,16.17304170576668 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/31,4.2699750000474985 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/23,16.17304170576668 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/31,4.2699750000474985 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/06/24,5.980526514733338 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/07/02,2.9411500000000075 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/06/24,5.980526514733338 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/07/02,2.9411500000000075 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/11,8.6077624988075 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/07/26,11.797408363233355 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/03,3.5279750999999986 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/11,8.6077624988075 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/07/26,11.797408363233355 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/03,3.5279750999999986 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/27,4.488480303453335 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/09/04,4.048675000144997 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/27,4.488480303453335 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/09/04,4.048675000144997 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/09/28,2.852921966739165 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/10/06,3.1019282480769226 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/09/28,2.852921966739165 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/10/06,3.1019282480769226 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/11/07,2.7909321236263724 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/11/07,2.7909321236263724 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/12/09,3.1092384615384594 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/12/09,3.1092384615384594 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/12/25,15.06378333465086 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/12/25,15.06378333465086 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/02/27,2.943475000000006 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/02/27,2.943475000000006 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/04/24,18.727991708066707 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/04/24,18.727991708066707 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/11,9.8258250007775 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/03,4.931500392172492 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/11,9.8258250007775 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/03,4.931500392172492 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/27,6.731874992585011 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/07/05,2.936980474038461 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/27,6.731874992585011 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/07/05,2.936980474038461 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/07/29,4.431834865072496 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/08/06,4.211475000072496 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/07/29,4.431834865072496 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/08/06,4.211475000072496 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/08/30,2.9672954501449977 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/08/30,2.9672954501449977 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/10/01,3.2579621133333303 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/09/23,2.7210223899999963 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/10/01,3.2579621133333303 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/09/23,2.7210223899999963 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/11/10,12.28042500026499 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/10/25,2.4205745999999992 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/11/10,12.28042500026499 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/10/25,2.4205745999999992 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/12/04,6.20242499492001 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/01/29,22.830552083423346 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/05/05,3.031306066666669 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/05/29,5.798345456956673 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/06/30,9.297824987802493 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/07/08,3.683015909999993 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/06/22,2.2883465499999995 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/08/09,3.422874999999993 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/08/25,3.4691791199999944 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/12/07,6.632083377520829 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/12/23,8.873222916334175 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/04/30,4.406397737419999 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/05/08,2.949423250000001 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/06/01,9.370545828095846 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/06/09,3.406186899999993 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/07/03,8.370441671314163 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/08/04,7.989650003627515 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/07/27,3.3942181999999947 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/09/05,2.413590909999999 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/09/21,5.80314924338084 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/11/08,5.409874999340002 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/10/23,7.649647925901672 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/05/02,11.126833374733351 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/05/10,3.0589052249999984 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/05/26,2.9709568204100005 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/07/05,8.773308336173331 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/08/06,3.254178787319162 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/08/22,3.397137123768327 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/08/30,3.2456750000000043 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/10/09,3.2483621334058306 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/11/10,9.294627919047612 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/04/03,15.17404167356668 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/06/06,21.014041666666664 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/05/29,4.763061365000003 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/09/10,3.547851571666661 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/08/25,6.247834091570004 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/11/05,3.3215139730769216 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/12/07,4.945529171291665 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/11/24,2.5293935999999984 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/11/21,3.737825919999996 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/12/23,13.678225000047489 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/04/06,8.042886745252503 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/04/06,2.566270825000004 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/03/29,7.150957578846144 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/05/08,2.7280918399999994 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/04/30,3.9063573199999935 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/06/05,13.792716692014162 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/05/24,3.911649999999989 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/07/04,3.5800250199999937 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/06/22,9.644473335588348 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/07/11,20.673033333733333 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/07/03,7.049666677064158 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/06/25,4.344930964999992 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/08/07,3.253105907999995 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/09/10,3.179412877029165 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/08/24,4.106918024066785 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/08/28,2.9227411057692283 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/09/29,5.856369924615377 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/09/21,3.966546213623332 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/11/05,12.702566692926675 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/10/31,6.58713485406583 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/11/08,2.4051842249999997 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/10/23,12.376599999999994 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/11/22,7.351365837073328 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/12/10,2.3449888499999973 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/11/24,3.660450000000005 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/01/11,3.9003955048076944 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/04/09,2.5224312500000003 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/04/01,16.655416668966694 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/05/31,3.4699431801449983 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/06/04,12.713891672416668 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/05/27,5.766750000385006 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/06/22,5.143402290217494 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/07/06,3.202923830769228 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/08/10,8.334631244225012 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/07/24,8.648386360700005 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/07/30,3.621557920769229 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/07/22,3.926868180000002 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/09/06,3.3762863605799964 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/09/01,3.593815128116664 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/08/31,2.6154998249999992 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/08/23,2.2091865307692307 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/10/03,8.968625000237509 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/09/28,11.019777083933365 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/10/02,2.463777330000001 +Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/11/03,3.1501598699999978 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/01/05,16.64721666706666 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2014/12/27,23.47630833333333 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/01/05,16.64721666706666 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2014/12/27,23.47630833333333 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/02/06,21.838800000000013 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/02/06,21.838800000000013 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/03/01,21.88613333333335 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/03/01,21.88613333333335 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/03/25,11.779008332258332 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/04/02,12.825941666619164 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/03/25,11.779008332258332 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/04/02,12.825941666619164 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/05/05,8.088674995944999 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/05/04,5.461337127736666 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/05/05,8.088674995944999 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/05/04,5.461337127736666 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/06/06,14.767300009200008 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/06/06,14.767300009200008 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/08,10.786456665954178 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/06/22,5.8210829625858365 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/08,10.786456665954178 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/06/22,5.8210829625858365 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/09,3.6385500001449937 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/31,12.682233333333343 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/24,14.837233355493336 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/01,12.550249999569989 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/23,6.652508333333347 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/09,3.6385500001449937 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/31,12.682233333333343 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/24,14.837233355493336 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/01,12.550249999569989 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/23,6.652508333333347 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/01,10.853789625218331 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/25,2.6444636302900006 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/09,9.409275000217498 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/01,10.853789625218331 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/25,2.6444636302900006 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/09,9.409275000217498 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/26,4.234237737999996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/10/11,4.635800000410005 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/10/04,4.741348217120713 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/25,11.827650000189992 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/26,4.234237737999996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/10/11,4.635800000410005 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/10/04,4.741348217120713 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/25,11.827650000189992 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/04,6.551867430145 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/05,17.695287500184993 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/04,6.551867430145 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/05,17.695287500184993 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/29,5.89614027233346 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/29,5.89614027233346 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/01/07,7.493114583225846 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/01/07,7.493114583225846 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/01/23,22.177183333333343 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/01/23,22.177183333333343 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/05,13.629088654132495 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/03/27,11.574225001754996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/04,12.17162499978498 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/05,13.629088654132495 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/03/27,11.574225001754996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/04,12.17162499978498 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/07,7.5093583351858335 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/28,12.41221668061417 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/21,7.430398891414172 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/29,6.67051742666665 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/07,7.5093583351858335 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/28,12.41221668061417 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/21,7.430398891414172 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/29,6.67051742666665 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/23,6.30415000019001 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/07,5.391575766666659 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/31,7.236141666761671 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/22,9.772125000119992 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/23,6.30415000019001 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/07,5.391575766666659 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/31,7.236141666761671 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/22,9.772125000119992 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/07/01,21.843083333688337 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/24,5.291259091157502 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/23,2.909302249999997 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/07/01,21.843083333688337 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/24,5.291259091157502 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/23,2.909302249999997 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/11,5.568300000237505 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/07/26,3.7240499999999943 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/03,10.361937497717488 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/11,5.568300000237505 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/07/26,3.7240499999999943 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/03,10.361937497717488 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/03,11.023746210072506 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/27,14.76548750019002 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/11,3.406949999999996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/04,17.893175000047503 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/26,8.55637424333333 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/03,11.023746210072506 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/27,14.76548750019002 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/11,3.406949999999996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/04,17.893175000047503 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/26,8.55637424333333 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/10/05,12.946350000095004 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/28,14.204725000240003 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/10/06,12.623405151333335 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/10/05,12.946350000095004 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/28,14.204725000240003 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/10/06,12.623405151333335 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/11/07,4.471326887435897 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/11/07,4.471326887435897 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/12/09,3.644000000000008 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/11/23,3.5901782334615344 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/12/09,3.644000000000008 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/11/23,3.5901782334615344 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/12/25,16.76410000253752 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/12/25,16.76410000253752 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/10,15.99553333463835 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/10,15.99553333463835 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/26,9.687415092077508 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/19,12.753408333190832 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/27,21.641749999650013 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/26,9.687415092077508 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/19,12.753408333190832 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/27,21.641749999650013 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/08,13.33352208644582 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/03/30,9.430799999714996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/08,13.33352208644582 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/03/30,9.430799999714996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/24,8.231508337028338 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/23,5.759563639999995 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/24,8.231508337028338 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/23,5.759563639999995 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/06/11,8.141616676196671 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/06/03,3.600410270769229 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/06/11,8.141616676196671 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/06/03,3.600410270769229 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/04,6.931450000237497 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/05,2.5097515 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/04,6.931450000237497 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/05,2.5097515 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/05,6.597474992800012 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/29,4.509344698333323 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/06,8.199050758765829 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/28,8.120241667174149 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/05,6.597474992800012 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/29,4.509344698333323 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/06,8.199050758765829 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/28,8.120241667174149 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/30,8.431867423573337 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/29,15.78218333338085 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/30,8.431867423573337 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/29,15.78218333338085 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/01,3.1866287868116627 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/22,6.264027275072507 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/30,3.3293250000000056 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/23,6.865008333333338 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/01,3.1866287868116627 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/22,6.264027275072507 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/30,3.3293250000000056 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/23,6.865008333333338 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/24,6.809475007347498 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/11/10,2.2732844875 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/25,5.432031814999993 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/24,6.809475007347498 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/11/10,2.2732844875 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/25,5.432031814999993 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/12/11,6.4236916580866765 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/03/01,13.872131250457526 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/04/02,11.083474999762512 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/04/10,8.48434999804251 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/05/05,10.111666708066664 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/05/29,14.786183333380851 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/07/07,13.583833333453349 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/06/30,5.530976519611669 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/06/21,9.525091676846673 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/07/08,6.096433333523335 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/06/29,7.600214426428332 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/06/22,3.632399999999994 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/08/09,9.28090909270501 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/08/24,6.8384000025375 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/08/25,7.146950000500009 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/11/04,4.696000971999995 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/11/21,10.333692970169164 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/04/30,5.471150006410007 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/05/08,3.9187477299999967 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/06/08,6.184689586725835 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/06/01,15.118362499952502 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/06/09,4.693804549999998 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/05/31,14.08580000024 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/07/10,17.368414169351674 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/07/03,7.872118181230002 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/06/24,19.218479166904157 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/08/11,17.729525000200002 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/08/04,7.825033333740836 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/07/26,23.430141666714167 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/08/03,5.824100000642504 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/07/27,10.574687502942496 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/09/05,4.057718180217494 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/09/04,2.8516250000000047 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/09/21,8.502525000237506 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/11/08,10.899575076680003 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/10/23,9.828808041087502 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/01/02,8.878258332905864 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/03/06,8.19425833245834 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/04/07,20.31211253205753 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/03/22,25.683966666761663 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/04/08,13.387433334323344 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/05/02,10.291943316320236 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/04/23,24.128183347133344 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/05/10,8.742362271999998 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/04/24,13.190625000970003 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/06/11,2.774025000000006 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/05/26,21.224341682886703 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/07/04,4.9504249999999965 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/08/06,6.457922170687501 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/07/28,19.470683335633357 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/08/05,3.110510611666665 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/08/22,4.359409090144994 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/09/06,13.22178333333332 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/08/30,6.000185634615374 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/10/09,6.352078788405836 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/09/23,19.63358333311832 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/10/01,2.4633124168956044 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/09/22,21.066008333405826 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/11/10,9.641744707913317 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/11/09,20.677441665991672 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/02/21,22.30574166666668 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/10,10.39116667071918 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/03,8.63074166732167 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/03/25,15.054481252497528 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/02,7.191499999999984 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/26,6.479751521714165 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/27,16.761066666836665 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/06/06,14.56982500019001 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/06/05,8.84637500047751 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/06/29,8.486316667944175 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/07/31,9.661309090000008 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/07/24,19.236833333333315 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/08/08,9.360050000169998 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/07/23,2.983677269999999 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/09/10,15.97320833333332 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/08/25,11.123083333620825 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/09/02,13.671083333413325 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/08/24,3.161149246811663 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/09/26,3.8862568100724943 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/10/11,4.462871219349164 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/09/25,4.940914551999997 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/11/04,15.62119166666667 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/11/05,4.691398388461532 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/10/27,15.395883333333328 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/11/24,2.853939480769231 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/11/21,4.550196899999993 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/01/07,22.40836666666668 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/01/07,21.517850000000017 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/02/09,21.791766666666685 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/03/05,22.18061666666668 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/06,11.716941667566664 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/06,6.158162881666657 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/05,4.303554172521662 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/03/29,4.2001500000000025 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/08,4.7690135014058255 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/07,6.348087878185837 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/30,6.090192277999995 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/29,6.249195464999994 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/22,3.905885606931665 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/06/05,8.285450000695006 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/31,16.90318333271331 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/31,11.581812504884992 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/24,20.648716666916684 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/09,7.681451513478334 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/04,3.547445450144996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/06/22,22.835233333675824 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/11,7.086928030072499 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/10,4.713307982339998 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/03,9.834164396666669 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/02,11.812634854101669 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/06/25,8.63612575678668 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/06/24,6.309294091999993 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/08/07,4.077975000362494 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/08/03,14.55562500011998 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/27,14.016716666951664 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/26,4.491800000674996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/09/10,4.196875000144996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/08/28,5.114744091999996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/08/27,4.3396499999999945 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/02,7.592381066666669 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/06,4.304558193072494 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/09/29,12.787774999569988 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/09/21,4.238493179999995 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/05,4.480698112580829 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/31,16.3030351294375 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/08,7.558994131999984 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/07,3.984214581999999 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/30,3.541631589999998 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/22,5.555075010047493 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/22,8.870727088958336 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/12/10,3.873853191999999 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/12/09,11.905974999999986 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/24,3.3403500000000044 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/01/10,4.0587212548076925 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/04/09,8.99013029999999 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/04/08,5.362821371999992 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/09,9.97041458378584 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/10,15.9584022787125 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/02,15.387225000199978 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/31,11.67457575700417 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/06/04,7.305158333928336 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/27,13.098375000024996 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/26,5.295243619319998 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/06/27,7.5726916552916705 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/06/22,8.553449998062499 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/07/06,7.970450759346672 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/07/05,9.83902500033751 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/10,15.987225000354988 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/06,9.657877273333336 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/07/30,9.726278026714184 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/07/22,4.0903090899999945 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/09/11,17.454675000155003 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/09/06,16.799691672869166 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/09/01,2.7926416766433304 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/31,2.2720204500000007 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/23,6.371436349999997 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/22,17.905066669014165 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/10/03,11.73257916946666 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/10/02,3.820706844999991 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/10/01,8.028756820000003 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/11/03,6.2404197009924935 +Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/11/26,6.6441499990725 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/01/05,21.75304166666668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/01/05,21.75304166666668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/01/29,22.26459166666668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/02/06,21.919450000000012 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/02/06,21.919450000000012 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/01/29,22.26459166666668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/02/06,21.919450000000012 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/02/06,21.919450000000012 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/03,8.77181666579167 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/03,8.710316665791673 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/03,8.77181666579167 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/03,8.710316665791673 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/28,6.336986374767499 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/06,2.760934995 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/28,6.336986374767499 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/06,2.760934995 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/06,4.572320113386899 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/06,4.525709994389282 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/30,3.128296546174047 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/07,11.8078000002375 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/29,6.2709333338108175 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/29,6.473525000309985 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/22,5.913525002299995 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/06,4.572320113386899 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/06,4.525709994389282 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/30,3.128296546174047 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/07,11.8078000002375 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/29,6.2709333338108175 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/29,6.473525000309985 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/22,5.913525002299995 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/08,10.053225005852491 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/08,9.853666672946662 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/22,3.4392400549999933 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/22,3.732292354999994 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/08,10.053225005852491 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/08,9.853666672946662 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/22,3.4392400549999933 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/22,3.732292354999994 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/09,7.283075003117502 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/09,6.606950002972504 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/24,8.118700000287498 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/24,13.92300833587334 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/10,2.7334750000000043 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/01,2.807279500000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/01,3.053725000000002 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/09,7.283075003117502 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/09,6.606950002972504 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/24,8.118700000287498 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/24,13.92300833587334 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/10,2.7334750000000043 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/01,2.807279500000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/01,3.053725000000002 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/25,18.53133333352085 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/25,19.75392916656668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/11,3.5588292057692272 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/02,11.4955750000725 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/02,11.969850000072508 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/25,18.53133333352085 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/25,19.75392916656668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/11,3.5588292057692272 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/02,11.4955750000725 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/02,11.969850000072508 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/10/05,6.331937493180017 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/26,4.0430606966666565 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/26,4.374608396666655 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/27,3.0049317932692285 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/10/05,6.331937493180017 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/26,4.0430606966666565 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/26,4.374608396666655 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/27,3.0049317932692285 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/05,2.170483949999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/05,2.591956173626373 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/05,2.170483949999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/05,2.591956173626373 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/29,9.601253615858598 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/29,8.541974446196933 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/22,6.526770566847736 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/30,3.731385495512816 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/29,9.601253615858598 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/29,8.541974446196933 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/22,6.526770566847736 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/30,3.731385495512816 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/01/08,21.77565833333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/01/08,21.77565833333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/01/08,21.77565833333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/01/08,21.77565833333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/05,13.078371122516112 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/05,8.50189027988776 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/05,13.078371122516112 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/05,8.50189027988776 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/07,18.88611916704668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/07,13.688666671781675 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/30,4.247381205333329 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/21,12.611041696639177 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/21,13.032725029972504 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/29,3.4931179749999983 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/29,4.514077269999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/07,18.88611916704668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/07,13.688666671781675 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/30,4.247381205333329 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/21,12.611041696639177 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/21,13.032725029972504 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/29,3.4931179749999983 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/29,4.514077269999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/23,10.2436312519125 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/23,9.035091067053566 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/31,4.953236007449166 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/31,4.585831837712499 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/24,14.350358333118317 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/23,10.2436312519125 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/23,9.035091067053566 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/31,4.953236007449166 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/31,4.585831837712499 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/24,14.350358333118317 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/03,4.429989778934998 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/24,2.378410605725833 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/24,2.290494695653334 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/11,10.688300000237488 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/02,3.2041500000000083 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/02,2.7583192307692315 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/25,3.757845454999997 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/03,4.429989778934998 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/24,2.378410605725833 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/24,2.290494695653334 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/11,10.688300000237488 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/02,3.2041500000000083 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/02,2.7583192307692315 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/25,3.757845454999997 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/11,7.866058337145829 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/11,7.854325003717496 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/04,2.9638856 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/26,13.22067916722168 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/26,13.176520833675845 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/03,3.4945072949999973 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/03,3.716666419999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/27,2.910165158141025 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/11,7.866058337145829 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/11,7.854325003717496 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/04,2.9638856 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/26,13.22067916722168 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/26,13.176520833675845 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/03,3.4945072949999973 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/03,3.716666419999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/27,2.910165158141025 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/05,4.878459420769229 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/27,3.4905288016666622 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/27,3.241530301666663 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/04,3.5259431999999964 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/04,3.035452605769228 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/05,4.878459420769229 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/27,3.4905288016666622 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/27,3.241530301666663 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/04,3.5259431999999964 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/04,3.035452605769228 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/07,2.815664413333332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/28,5.001900002562501 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/28,5.146435610895833 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/21,2.564893200000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/06,2.8441486182692297 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/06,2.810948618269229 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/29,3.0217650375 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/07,2.815664413333332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/28,5.001900002562501 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/28,5.146435610895833 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/21,2.564893200000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/06,2.8441486182692297 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/06,2.810948618269229 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/29,3.0217650375 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/08,3.375035509999998 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/23,8.131195435072492 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/07,2.8666826682692306 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/07,2.8113735182692285 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/08,3.375035509999998 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/23,8.131195435072492 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/07,2.8666826682692306 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/07,2.8113735182692285 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/12/10,7.74992083263835 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/23,3.4821500000000065 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/23,3.2497500000000072 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/12/10,7.74992083263835 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/23,3.4821500000000065 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/23,3.2497500000000072 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/01/02,11.170050000185007 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/01/02,11.170050000185007 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/01/27,22.407050000000005 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/01/27,22.407050000000005 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/08,15.132762501150014 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/27,21.66638333333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/27,21.66638333333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/20,17.013283333285827 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/08,15.132762501150014 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/27,21.66638333333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/27,21.66638333333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/20,17.013283333285827 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/23,22.34590833333334 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/23,22.451158333333343 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/09,13.454658333238337 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/23,22.34590833333334 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/23,22.451158333333343 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/09,13.454658333238337 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/24,11.486133333405828 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/24,11.07179166673916 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/24,11.486133333405828 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/24,11.07179166673916 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/11,4.162728018216783 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/11,4.206911351120116 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/03,4.404317819653332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/03,5.685819708582496 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/11,4.162728018216783 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/11,4.206911351120116 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/03,4.404317819653332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/03,5.685819708582496 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/27,8.738937495462501 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/27,6.40786249022001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/05,2.5085658000000013 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/05,2.4155830750000025 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/27,8.738937495462501 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/27,6.40786249022001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/05,2.5085658000000013 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/05,2.4155830750000025 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/29,5.79734470673917 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/29,5.79364470673917 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/06,4.638193199999991 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/06,5.24009319999999 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/30,2.926433004807692 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/29,5.79734470673917 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/29,5.79364470673917 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/06,4.638193199999991 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/06,5.24009319999999 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/30,2.926433004807692 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/30,11.657612500902507 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/30,12.191200000142503 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/30,11.657612500902507 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/30,12.191200000142503 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/10,6.437599992140008 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/01,4.334702319999992 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/01,4.390502319999992 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/24,2.524616678333332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/02,3.1198274663461523 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/23,3.463197734999994 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/23,4.163638649999991 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/10,6.437599992140008 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/01,4.334702319999992 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/01,4.390502319999992 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/24,2.524616678333332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/02,3.1198274663461523 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/23,3.463197734999994 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/23,4.163638649999991 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/11,8.420146099047612 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/10,3.063300000000007 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/10,3.2117500000000074 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/25,2.322488550000002 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/25,2.307285300000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/11,8.420146099047612 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/10,3.063300000000007 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/10,3.2117500000000074 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/25,2.322488550000002 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/25,2.307285300000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/12/04,5.5297924170459565 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/12/04,5.210077501395002 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/01/05,22.26459166666668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/03/26,21.52226083333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/03/26,21.04199166676169 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/05,4.012838634999999 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/05,3.475995455 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/29,11.017558333453335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/29,12.99547500000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/30,8.186650000792483 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/07/09,4.100099999999987 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/06/30,19.947199999905 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/06/30,15.357475000095006 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/07/08,10.886675006947478 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/07/08,14.2617500207725 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/07/01,2.494375000000004 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/06/22,2.8795739999999985 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/06/22,2.786469455 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/10,2.997681229102564 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/09,5.824750000047498 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/09,6.392730303428339 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/09/03,3.644650971923073 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/25,6.102850002299996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/25,3.762974999999997 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/10/05,2.51135125 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/12/07,21.49190833333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/12/07,11.83479166666667 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/11/22,3.265400000000008 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/02/09,22.30117500000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/02/09,22.407050000000005 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/02/26,21.838800000000013 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/05/09,7.686035415569165 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/04/23,4.8624772774675 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/05/08,4.527118169999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/05/08,3.852993849999999 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/04/22,2.452039192307692 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/04/22,2.4239891923076917 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/10,12.150974997789996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/01,9.588180414954191 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/01,8.734199998797523 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/09,2.764305750000002 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/09,3.065173199999998 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/07/03,11.800900001249994 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/26,2.1569295576825 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/08/04,5.2624931804325 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/08/04,4.258783334143332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/08/05,4.994000049999993 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/07/27,3.544536365120001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/07/27,4.438150000072494 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/05,4.102215206666656 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/05,3.739537906666659 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/06,3.0757925480769246 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/30,8.826449993740006 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/21,3.6477954499999936 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/21,3.2379871133333307 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/10/08,2.8182353865384577 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/29,11.277324999999983 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/29,12.684683333333329 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/11/08,5.394949998235005 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/11/08,5.394949998235005 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/11/09,3.3721522500475025 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/12/11,3.662025000167505 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/11/25,3.36074696742769 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/05,22.34590833333334 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/28,9.823583333333348 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/21,22.539900000000006 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/03/07,21.675758333333352 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/29,21.750616666666684 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/20,21.88613333333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/20,21.88613333333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/04/01,13.919550000237509 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/02,4.328489412516669 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/02,4.3248894125166695 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/04/25,7.6132776568833345 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/10,5.5959886394325 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/10,4.8526541696191625 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/03,3.562600000000008 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/27,3.478640776333329 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/06/04,4.203024999999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/26,3.872475000000007 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/26,4.017375000000007 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/07/05,12.578300009319996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/07/05,12.647050009319996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/07/06,3.017119379807692 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/06,6.176981066811667 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/06,6.049681066811668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/07/30,9.391695842223331 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/07,3.192961092948717 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/31,2.7644995541025628 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/22,9.31505001239249 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/22,9.237950012657492 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/30,3.397929500000006 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/30,3.5610500000000083 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/23,2.6744342432692307 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/09,5.000034159999988 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/09,4.691822759999989 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/01,3.0459780630769218 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/01,2.8221826923076923 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/09/24,4.078975000554996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/11/10,4.136725163666663 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/11/10,3.8167797136666617 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/11/03,5.180199998665006 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/25,5.939140001672502 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/25,14.717204166669164 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/12/29,13.351641666404165 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/01/29,11.802908333333336 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/01/29,9.723433333333348 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/02/06,21.846700000000013 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/01/30,21.66638333333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/03/02,22.539900000000006 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/03/02,22.539900000000006 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/04/03,22.32207499935501 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/04/03,22.32207499935501 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/04/04,12.810249999952491 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/03/26,21.750616666666684 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/05/06,3.684686350072499 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/06/06,19.448408334003325 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/06/06,14.189225001192504 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/06/07,5.814324999999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/05/29,10.425518341430813 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/05/29,12.776301686264162 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/06/23,3.506925000095005 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/02,8.342064580920837 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/07/24,11.416220831718338 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/10,4.773417156410245 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/07/25,3.104225 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/25,6.896554546425 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/25,6.506118181497502 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/09/11,4.823162834615379 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/09/02,9.062275000000009 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/09/02,2.553004500000004 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/26,4.54134319999999 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/06,4.608302910714278 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/10/28,6.600613615072493 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/10/28,7.967269572380945 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/05,2.8562962823076936 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/05,3.62275264807692 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/10/29,2.70860535576923 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/12/07,2.9144272500000064 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/12/07,2.5339295000000037 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/24,2.678126605769229 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/24,2.653956868269228 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/21,3.314927980769228 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/21,2.95753025576923 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/01/08,21.75304166666668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/12/23,4.022357043269231 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/12/23,4.0071908125 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/02/01,22.26459166666668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/01/25,12.33914166705166 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/01/24,21.856800000000018 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/02/26,22.40535000000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/06,6.679849998265016 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/03/30,22.337341666666678 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/06,11.887022941039156 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/06,13.412584646505827 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/03/29,21.88613333333335 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/03/22,11.436808333238336 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/09,2.48202475 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/08,5.030299999999998 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/08,4.928175000000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/01,4.4830750003124935 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/30,3.565724062999997 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/30,6.802295454999999 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/25,2.385900000000002 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/24,3.0303189534783286 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/24,3.329478033768328 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/07/03,6.200125000262484 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/07/03,7.303966666666646 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/06/26,3.968565999999992 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/06/25,2.3914157000000027 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/06/25,2.394427075000003 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/07/28,4.584961365917496 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/10,3.022583327609164 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/10,3.479549237319162 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/24,7.031910350847739 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/24,9.125006202126071 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/29,4.984400000144988 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/28,3.524536168333332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/28,3.411898938333328 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/10/09,6.3944962497125 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/22,5.023150000185006 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/30,12.983774999999982 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/29,18.30777500015499 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/29,16.347191666836647 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/21,3.2355595949999945 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/21,3.1581527599999943 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/09,3.546882076923077 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/08,2.659058293269231 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/08,2.535749993269228 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/10,2.2822749499999992 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/10,2.417914849999998 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/02,20.59805833284333 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/02,20.257441665721675 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/24,3.297704500000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/24,2.734322250000001 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/26,7.733974999755005 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/02/04,22.14189166666668 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/04/10,11.76292499995249 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/04/02,22.19909999978501 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/04/01,14.95557500030501 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/04/01,14.161037499810009 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/09,10.282816669704175 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/09,10.316841669324171 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/11,8.291925003402488 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/11,8.16283333728332 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/31,3.102721827999998 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/31,3.097404406333333 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/26,3.98717562466666 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/06/04,7.400400002029984 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/06/04,7.762150001649982 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/28,15.007316669086675 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/27,19.955266668966665 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/27,24.31663333333334 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/06/22,3.105114997999996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/06,13.224958333118316 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/06,13.00518333311832 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/06/21,2.8252370807692317 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/05,2.8286750006174985 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/31,3.429500000000003 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/30,3.9422750001924936 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/30,5.374950000409992 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/23,3.842675713380837 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/22,4.863543958467497 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/22,4.736863654110829 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/06,3.663670450507496 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/06,3.464057573840829 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/01,2.7879121284783333 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/01,4.166900000119996 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/31,3.0917475999999997 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/31,3.08097485 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/23,2.6826703500000018 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/23,3.6896272999999953 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/03,7.201711371666664 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/03,9.253941666809176 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/28,15.089048153400803 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/03,2.5933436000000016 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/02,3.625389209999994 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/02,3.5524983099999927 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/25,2.5821096682692297 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/11/11,3.0337000000000067 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/11/03,4.231359719999993 +Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/11/03,2.254858874999999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/01/05,10.697191666451676 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/01/29,22.26459166666668 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/02/22,21.88613333333335 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/02/22,21.88613333333335 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/04/28,6.9921583405183325 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/05/06,4.515509099999994 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/06,4.122066051045117 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/06,4.124666051045116 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/07,14.431658333405812 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/05/29,6.934000000192507 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/05/29,7.067550000192506 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/05/22,3.450069350769225 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/07/08,4.873684101297504 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/07/08,4.929015160780836 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/22,3.182353048550829 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/22,7.055209105145 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/23,14.538033333413326 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/09,5.152788640409999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/09,5.3210727308450005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/10,5.006375000217493 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/03,5.784749992430017 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/25,6.389950005527499 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/25,5.5031250056 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/11,2.6739267803571427 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/02,12.314774999554992 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/02,3.453875000000005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/10/05,12.787850021884989 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/26,3.148276521666662 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/26,3.077701521666663 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/27,2.7333879615384613 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/05,2.4923686249999992 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/05,2.177533849999998 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/29,6.974274998835013 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/29,6.653524998190012 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/22,7.554424995625011 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/30,4.266437692307687 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/01/08,21.648191666666683 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/01/08,21.527391666666684 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/02/02,3.147988461538465 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/02/26,22.404625000000006 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/05,13.144879041582785 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/05,7.9729863049352705 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/03/29,6.34782499668501 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/07,3.357509871829172 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/07,3.8270201031916713 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/30,3.733331091666662 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/21,4.712009575438568 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/21,4.660159576966069 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/29,3.871364383333329 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/29,3.540931794999995 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/23,4.538354173689172 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/23,3.376884097498339 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/31,5.692285243268323 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/31,4.78221023912083 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/24,6.1504757568816695 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/03,3.6753454602899938 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/06/24,8.241324995667496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/06/24,6.723399995825007 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/11,14.633675000189976 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/06/25,3.352845461538456 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/11,7.131750005197502 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/11,7.183783338533333 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/04,3.190702274999998 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/26,3.939888660072496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/26,3.843638660072495 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/03,3.2484732249999984 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/03,2.6247108500000014 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/27,4.077749660256406 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/05,3.9865124807692256 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/27,12.57605416714168 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/27,12.977550000570009 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/04,3.789327249999996 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/04,4.352836349999995 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/28,6.893250000434998 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/10/07,3.214436994666664 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/28,3.1414650030724967 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/28,3.2166454550724977 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/21,3.3183595879999994 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/10/06,2.585856561538461 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/10/06,2.45105431153846 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/29,2.629585600000001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/08,3.2424525 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/10/23,3.5887009069999936 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/07,5.115310711538462 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/07,2.5813775682692306 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/12/10,7.673800416249183 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/23,3.043775000000005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/23,3.147825000145005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/01/11,20.847208333190856 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/01/02,22.47810000000001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/12/25,22.23560833333335 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/12/25,22.211958333333342 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/02/04,21.675758333333352 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/03/08,24.51653958378085 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/02/20,14.200408335585823 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/03/23,22.451158333333343 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/03/23,22.451158333333343 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/04/09,9.718349999762522 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/05/03,10.464890844108329 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/04/24,6.339484090217503 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/04/24,6.343250000217503 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/06/11,5.630820295424167 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/06/11,5.874445299976667 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/05,5.899261384050828 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/05,6.085837139919995 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/06/28,4.608595143076916 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/07,6.495912498502505 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/29,19.800625 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/29,19.899075 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/06,5.3900382730769225 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/06,4.029137880769224 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/30,2.7002662548076923 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/30,5.422441668989171 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/30,3.868525000524999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/23,4.758113256881664 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/10,14.33032083500585 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/01,3.0997551499999947 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/01,3.149094649999995 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/09/24,3.201579540217497 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/02,2.800945942307693 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/09/23,4.376703199999989 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/09/23,4.353903199999989 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/11/11,4.310291811999999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/11/10,3.2898692307692348 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/11/10,3.2519500000000026 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/25,6.154207789999991 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/25,2.6535912500000025 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/12/04,5.628680311460838 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/12/04,4.2332717257519015 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/01/05,22.539900000000006 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/03/26,20.92328333309586 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/05,8.429016671266655 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/05,6.378716666666657 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/29,13.50968334253333 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/29,13.129000006899998 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/30,7.928583339178334 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/07/09,3.936629599999992 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/06/30,16.400891666236657 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/06/30,16.51109166738665 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/07/08,5.233775386122496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/07/08,7.862581828101662 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/07/01,8.070350000144995 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/06/22,3.843811349999997 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/06/22,3.9179068249999967 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/10,3.3044643749999985 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/09,4.265606749999998 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/09,3.707008999999998 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/09/03,8.263854500000003 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/25,13.707331250385009 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/25,13.3993000002 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/10/05,2.5211925000000024 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/12/07,10.494183333333348 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/11/21,21.57322500000001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/12/08,21.67155833333335 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/11/22,3.0423750000000003 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/09,22.64890000000001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/09,22.64890000000001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/02,22.404625000000006 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/01,21.867666666666683 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/01/25,7.703625760406672 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/03/06,23.218616666666662 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/03/05,21.75304166666668 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/26,21.919450000000012 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/05/09,8.952474994430005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/04/23,6.57481099134667 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/05/08,6.748033337933327 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/05/08,8.835816675866655 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/04/22,2.503265399999999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/04/22,2.3697882999999997 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/10,13.16587499774 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/01,10.061412499687515 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/01,8.108722914476685 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/09,9.086344700065837 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/09,9.19001553263417 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/08/04,11.561572916856685 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/08/04,11.738168749905016 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/08/05,4.702552299999993 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/07/27,3.050052250000001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/07/27,7.891000000072499 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/05,3.9887947966666566 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/05,3.957769796666656 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/08/29,3.36411749666666 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/06,2.458841730769232 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/30,5.749799999265007 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/21,3.6979401466666606 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/21,3.60643787666666 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/10/08,2.879007261538458 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/29,7.442398490740818 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/29,7.461465157442485 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/11/08,4.5682749984650055 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/11/08,5.546575000200004 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/11/09,3.4257500000475023 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/12/03,15.02968710076333 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/11/25,4.950957366538454 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/02/05,22.34590833333334 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/03/08,22.308199999355008 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/02/21,22.137733333333344 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/04/01,4.2600419855769225 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/02,7.289161374999997 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/02,7.09255076833333 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/04/25,12.588508374853346 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/10,2.616602250000005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/10,2.610102250000005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/27,3.824063639999991 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/06/04,4.061006820625 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/26,3.9977749999999945 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/26,4.120600000072497 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/07/05,17.117966667676654 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/07/05,16.678758334253313 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/06/28,10.194329171271669 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/07/06,3.264349827472527 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/06,3.696877280072496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/06,3.656352280072496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/07/30,3.3151583417391635 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/07,2.6773360000000004 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/31,3.542370465869997 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/30,2.6907545000000037 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/30,3.1953750000000083 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/23,12.03842499999998 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/09,4.861584149999988 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/09,4.665804559999989 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/01,3.212111249999996 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/01,2.9489859999999983 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/09/24,4.878750000724997 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/11/10,4.308905466999995 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/11/10,4.320551680333329 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/25,7.691533339945832 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/25,4.396325000047504 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/12/29,2.98016802 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/01/29,10.91686666652418 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/01/29,10.441023333048356 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/02/06,21.848400000000016 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/02/06,21.867666666666683 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/01/30,21.856800000000018 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/03/11,9.601469166214187 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/03/02,22.674233333333337 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/03/02,22.663366666666672 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/04/03,9.145374999867498 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/04/03,9.119574999867496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/04/04,8.283009296606771 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/05/06,2.7803085 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/06/06,14.752387916524176 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/06/06,15.102129583190838 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/06/07,4.986150000047496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/05/29,12.37368333333332 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/05/29,12.35188333333332 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/06/23,3.047716173076923 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/02,3.188703035285001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/10,5.634475000547504 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/10,13.698012500555008 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/10,8.274470833360837 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/25,7.141659091570002 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/25,7.333834091570003 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/11,3.0170999499999995 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/26,3.078427250000003 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/26,6.89907198000833 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/26,6.9740594743983335 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/06,4.923809146047612 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/10/28,7.001949997545012 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/10/28,8.148524991065003 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/05,3.130699999999999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/05,3.117969230769228 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/10/29,3.0269160048076924 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/24,2.356602199999997 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/24,2.1135725999999964 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/21,2.483704350000002 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/21,2.308258725 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/01/08,21.919450000000012 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/02/26,12.558591666666668 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/02/26,22.23439166666668 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/03/30,22.26459166666668 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/04/06,5.214250001157496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/03/29,21.791766666666685 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/03/22,10.541574999810011 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/09,2.560530675000002 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/08,5.13745 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/08,5.389125 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/01,5.037175000264992 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/04/30,7.11285833943832 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/04/30,7.306625005987489 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/26,16.691158333733316 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/25,3.5216750000000063 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/24,8.752449993834999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/24,5.225340624589403 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/07/11,12.35039999999998 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/07/11,12.831358333405817 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/07/03,3.8758431999999927 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/07/03,3.2990212133333285 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/06/26,4.87222500052999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/06/25,2.983108925 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/06/25,3.076280087499999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/08/05,4.954075000144993 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/10,2.530141673333333 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/10,3.2242060573916635 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/08/29,3.2243724550000006 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/08/28,3.776977309999992 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/08/28,4.106812284999991 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/29,12.841308333333318 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/29,12.709333333118316 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/22,2.792854499999999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/21,4.190124999999991 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/21,4.045409100072491 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/10/31,7.326424987275005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/10/31,6.776841657886677 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/09,2.5735415668956048 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/08,2.484669175 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/08,2.233149849999999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/12/10,2.977845299999999 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/12/10,2.414470050000002 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/12/02,17.98332499995499 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/12/02,20.902841666606665 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/24,5.100925000384996 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/24,9.14087500024 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/02/04,22.22352500000001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/02/21,8.91315833431833 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/10,15.089835417371686 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/09,12.668933333238328 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/02,12.817399999737496 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/01,15.19929242357084 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/01,12.975559096153836 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/09,10.56587916991918 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/11,6.665275002492487 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/11,7.499125000192484 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/31,3.353627270144996 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/26,3.947150000072493 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/06/05,13.774300000357488 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/06/04,4.887847370613331 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/06/04,4.878381839562499 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/28,7.258883333955838 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/27,26.2878 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/27,25.053108333380838 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/06/22,3.398852270217493 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/06,4.767559100289994 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/06,3.946059100217491 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/31,10.67992179724429 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/30,7.913533342653315 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/30,7.218700004767477 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/23,4.258368199999991 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/22,4.031155313405823 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/22,4.119421213405825 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/06,4.220021218333326 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/06,4.189521218333323 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/01,2.723234858405833 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/01,3.804546972149162 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/08/31,3.722827249999997 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/08/31,4.1047272499999945 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/08/23,4.173050049999993 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/08/23,3.815974999999996 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/03,7.044213640000005 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/03,6.08166969840584 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/28,7.54589583196585 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/23,9.927337498720007 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/03,3.1564408500000014 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/02,3.134920390000001 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/02,2.717079450000002 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/25,3.1826991999999974 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/11/11,3.4955932001199987 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/11/03,3.141410325 +Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/11/03,3.008240602499998 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/01/05,10.740675000890011 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/01/05,10.740675000890011 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/23,22.539900000000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/22,21.36779166666669 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/22,12.373549999999996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/23,22.539900000000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/22,21.36779166666669 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/22,12.373549999999996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/04/28,7.180908335513336 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/06,2.8422393450000016 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/04/28,7.180908335513336 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/06,2.8422393450000016 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/06,5.267345116834401 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/30,6.252099251560839 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/07,12.556883333333316 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/29,3.518511954999996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/29,3.545580154999996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/22,4.130675000142498 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/06,5.267345116834401 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/30,6.252099251560839 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/07,12.556883333333316 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/29,3.518511954999996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/29,3.545580154999996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/22,4.130675000142498 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/07/08,5.39909166883667 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/22,13.292366719566685 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/23,15.320449999984978 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/07/08,5.39909166883667 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/22,13.292366719566685 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/23,15.320449999984978 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/09,2.955953033333332 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/07/24,6.607137503555002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/10,3.514500000000008 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/01,2.256502249999999 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/01,3.316800000000008 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/09,2.955953033333332 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/07/24,6.607137503555002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/10,3.514500000000008 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/01,2.256502249999999 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/01,3.316800000000008 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/03,8.10721874862752 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/25,3.0400427897435907 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/11,2.847925000000004 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/02,12.632011365072506 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/02,11.135419230841729 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/03,8.10721874862752 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/25,3.0400427897435907 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/11,2.847925000000004 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/02,12.632011365072506 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/02,11.135419230841729 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/10/05,10.939658349338336 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/26,11.818675020749993 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/27,2.780338043269229 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/10/05,10.939658349338336 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/26,11.818675020749993 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/27,2.780338043269229 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/05,8.128150001617483 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/05,8.55717500142498 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/05,8.128150001617483 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/05,8.55717500142498 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/29,3.974722863739164 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/22,3.430076676282046 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/30,13.131958333533328 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/29,3.974722863739164 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/22,3.430076676282046 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/30,13.131958333533328 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/03/05,10.663224999785006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/03/05,10.663224999785006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/05,12.05133667344916 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/05,12.05133667344916 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/07,7.057885421511665 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/30,3.4411638237391644 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/21,4.496430678052495 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/29,3.238234549999996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/29,3.1936481749999968 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/07,7.057885421511665 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/30,3.4411638237391644 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/21,4.496430678052495 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/29,3.238234549999996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/29,3.1936481749999968 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/23,12.587845838035843 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/31,3.976075002907496 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/31,4.885512506367496 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/24,3.915550000000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/23,12.587845838035843 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/31,3.976075002907496 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/31,4.885512506367496 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/24,3.915550000000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/06/24,8.707624997102497 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/11,4.022436349999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/02,2.686679500000003 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/02,3.560650000000008 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/06/25,4.193250491025635 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/06/24,8.707624997102497 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/11,4.022436349999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/02,2.686679500000003 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/02,3.560650000000008 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/06/25,4.193250491025635 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/11,7.588815146956671 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/04,2.5770356066666653 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/26,4.038250002612503 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/03,2.9616772500475013 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/03,2.9244022500475007 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/27,2.7774044999999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/11,7.588815146956671 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/04,2.5770356066666653 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/26,4.038250002612503 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/03,2.9616772500475013 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/03,2.9244022500475007 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/27,2.7774044999999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/05,3.4826682399999966 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/27,2.353781820000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/04,3.106109099999997 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/04,2.8355249999999965 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/28,5.083816667101665 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/05,3.4826682399999966 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/27,2.353781820000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/04,3.106109099999997 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/04,2.8355249999999965 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/28,5.083816667101665 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/07,4.278155356120112 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/28,3.2773506264058296 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/21,2.6703432000000014 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/06,2.7868099182692294 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/06,2.8532871682692296 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/29,4.021929499999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/07,4.278155356120112 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/28,3.2773506264058296 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/21,2.6703432000000014 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/06,2.7868099182692294 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/06,2.8532871682692296 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/29,4.021929499999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/08,4.643141669986667 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/23,3.728368313811665 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/07,3.109018754807692 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/07,3.213580254807693 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/08,4.643141669986667 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/23,3.728368313811665 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/07,3.109018754807692 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/07,3.213580254807693 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/10,9.344666533457769 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/09,3.3341000000000105 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/23,3.557488499999999 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/23,3.744809 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/10,9.344666533457769 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/09,3.3341000000000105 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/23,3.557488499999999 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/23,3.744809 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/01/02,22.539900000000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/25,10.344541666571676 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/01/02,22.539900000000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/25,10.344541666571676 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/03/08,15.119309851694164 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/02/20,14.997674999905009 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/03/08,15.119309851694164 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/02/20,14.997674999905009 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/03/23,21.179198333285854 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/04/09,20.869923335543348 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/03/23,21.179198333285854 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/04/09,20.869923335543348 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/04/24,8.108187506900014 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/04/24,8.108187506900014 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/11,15.863924999999997 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/03,9.25498864211501 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/03,10.194029921815837 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/11,15.863924999999997 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/03,9.25498864211501 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/03,10.194029921815837 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/05,2.637752250000005 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/05,2.652802250000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/28,4.606925000072494 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/05,2.637752250000005 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/05,2.652802250000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/28,4.606925000072494 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/07,8.5509733904436 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/29,15.257108356333331 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/06,6.878750000290001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/06,2.573431750000003 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/30,3.004736791895604 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/07,8.5509733904436 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/29,15.257108356333331 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/06,6.878750000290001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/06,2.573431750000003 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/30,3.004736791895604 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/08,6.49450840423333 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/30,3.576687877174161 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/23,6.25810229321 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/22,2.380775000000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/22,3.5759795000000025 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/08,6.49450840423333 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/30,3.576687877174161 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/23,6.25810229321 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/22,2.380775000000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/22,3.5759795000000025 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/10,3.9720388907135695 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/01,5.4504207541025576 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/24,3.630632573405828 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/02,2.732890980769229 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/23,3.6099913749999946 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/23,3.457834055 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/10,3.9720388907135695 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/01,5.4504207541025576 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/24,3.630632573405828 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/02,2.732890980769229 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/23,3.6099913749999946 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/23,3.457834055 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/11,4.730500806047612 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/10,3.235025000000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/10,5.117175 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/25,6.982825001472484 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/25,10.601625000832485 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/11,4.730500806047612 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/10,3.235025000000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/10,5.117175 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/25,6.982825001472484 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/25,10.601625000832485 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/12/04,4.109338214050716 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/01/05,22.47810000000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/01/06,21.791766666666685 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/03/26,21.265948333285856 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/05/05,3.435431829999997 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/05/05,3.424024979999998 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/04/28,2.546677250047497 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/05/29,13.918683347228349 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/07/09,4.078434199999993 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/07/08,5.320550000889996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/07/08,7.45272500074499 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/07/01,5.668654499999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/06/22,2.780846625000002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/06/22,2.493429500000002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/08/10,3.519165085164832 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/08/09,10.69430833367083 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/08/09,10.817833333670828 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/09/03,2.495225000000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/10/05,4.923325000289994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/12/07,5.688574997160006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/12/08,13.587974999707503 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/11/22,3.4806567500725 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/02/09,11.757974999124997 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/01/25,12.651566667019168 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/03/05,22.115583333333348 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/02/26,21.75304166666668 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/05/09,4.244605340902739 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/04/23,3.1071091005949985 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/05/08,4.3498500002875 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/05/08,4.426625000119999 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/04/22,2.49563229230769 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/04/22,2.393405104807691 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/09,2.8540136 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/09,2.874586274999999 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/07/03,3.375718200434997 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/26,2.423471221740832 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/25,2.3348522500000035 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/25,3.4114500000000008 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/08/05,2.7434726059981696 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/07/27,3.736130000072493 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/07/27,3.569980000072492 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/05,3.82191970666666 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/08/29,3.795120404487179 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/06,3.1397947932692296 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/21,2.6892075783333342 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/10/08,2.87489226153846 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/29,4.839025000192502 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/29,4.457665909999999 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/11/08,8.063524176734159 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/11/09,3.241449999999998 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/12/03,12.027285222541462 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/11/25,5.081512201923069 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/02/05,22.451158333333343 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/02/21,22.476608333333346 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/04/01,22.82094999985752 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/02,9.197512509200015 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/04/25,6.993116674171668 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/10,2.8863317500000005 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/10,3.1914317500000027 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/03,2.5605618999999984 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/27,8.796533340805839 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/06/04,5.562200002540007 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/26,5.155200000434993 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/26,12.846708333118322 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/07/05,3.953425000072494 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/06/28,3.545994161379165 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/07/06,3.956643952152009 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/08/06,3.3368992634058285 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/07/30,3.110656820072498 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/08/07,4.289127979487177 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/08/31,3.5157325834783277 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/08/23,2.856904655769233 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/10/09,5.236466565714279 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/09/23,12.622854170419188 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/10/10,14.432600002019994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/11/10,4.709064449380947 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/11/03,5.820799998665008 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/10/25,10.849490833165824 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/12/29,2.9370913199999986 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/01/29,23.02285 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/01/30,21.838800000000013 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/03/02,22.137733333333344 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/04/03,9.98953333323833 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/04/04,4.416274999999999 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/05/06,2.4972797750000013 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/04/27,20.440224999955 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/04/27,13.953083333118313 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/06/07,3.509025000000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/05/29,3.841100000167499 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/05/29,3.219325000192498 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/06/23,2.77406968076923 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/08/02,6.104752501015002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/07/24,11.3347000009975 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/08/10,4.7615554423076825 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/07/25,2.48230225 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/09/03,3.439414125235831 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/08/25,4.876233335188331 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/09/11,2.803354500000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/08/26,5.247852289999992 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/11/06,9.272400635714275 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/10/28,5.165986377514994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/10/29,2.9721668207417564 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/11/24,2.93059166826923 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/11/21,2.3387214750000003 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/11/21,3.620870961538456 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/01/08,21.867666666666683 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/01/24,21.75304166666668 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/02/26,22.169733333333344 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/03/29,21.66638333333335 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/03/22,4.449856134615383 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/09,2.479545130000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/08,3.9577289633333272 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/08,3.876198488333328 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/01,9.234075000692483 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/04/30,4.590625002300001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/04/30,3.8245250000000017 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/31,13.33237499988 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/25,2.7627772500000027 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/24,14.508541669181657 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/24,12.036125000887484 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/06/29,16.352741666236646 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/07/11,9.02351488190986 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/07/11,5.336731548906543 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/07/03,4.242775002752498 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/07/03,4.772575005314995 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/06/26,21.32645833473834 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/06/25,2.623902175 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/06/25,2.633749925 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/10,3.1912742416666617 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/08/24,7.3320666576716755 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/08/29,2.4806249999999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/08/28,2.5463586250000025 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/08/28,2.517158625000002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/22,4.658285829775838 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/29,3.154925000000007 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/29,3.205825000000009 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/22,2.607393020000002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/21,4.020572724999994 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/21,3.78494773 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/10/31,11.46582500654 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/10/26,5.723399990910014 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/09,3.2075019230769226 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/08,2.169102099999998 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/08,2.198061074999998 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/12/10,4.784025792307695 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/12/10,2.0843225749999963 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/24,5.081575000192496 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/24,3.478425000000006 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/02/04,22.25651666666668 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/10,16.13472500062 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/09,14.899197916834185 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/09,17.237809089715 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/02,13.157441666524171 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/01,14.113099999857509 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/01,13.566474999857505 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/09,19.538895837480847 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/11,6.826135606666671 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/11,5.063885606666666 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/31,8.690579540119998 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/26,3.649619706739161 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/06/04,4.428585233858334 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/06/04,5.171926903014996 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/28,7.296625000647505 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/27,25.448950000095 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/27,25.448391666666662 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/06/22,7.016339995545009 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/06,3.2983522500000024 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/06,3.305402250000004 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/06/21,4.641654019230771 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/31,6.444228330986727 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/30,3.9238250001449937 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/30,3.051502250000002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/23,3.6687007133333354 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/22,5.513673112740829 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/22,3.919104171491664 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/06,7.0560750002174935 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/01,3.356193190072495 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/01,4.380959753846144 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/08/31,2.7154271000000016 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/08/31,2.621013475000002 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/08/23,3.4811431999999964 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/08/23,3.370393199999997 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/10/03,17.367658347133343 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/28,9.365945832288356 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/10/03,2.662023850000001 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/10/02,4.077850000145003 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/10/02,4.913785606884165 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/25,2.9984145592032974 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/11/03,2.4168187803571417 +Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/11/03,2.1560656999999974 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2014/12/26,8.297873370458337 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2014/12/27,13.55511818004748 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2014/12/26,8.297873370458337 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2014/12/27,13.55511818004748 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/04/02,12.815250000242504 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/04/02,12.815250000242504 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/03,4.670562046332505 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/04,7.495908335633325 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/03,4.670562046332505 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/04,7.495908335633325 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/28,9.385399998217498 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/28,9.385399998217498 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/07,9.269879549191652 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/07,9.269879549191652 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/08/07,8.281256665796683 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/31,8.594076136985006 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/22,11.747244999927505 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/23,3.5224936153846165 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/08/07,8.281256665796683 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/31,8.594076136985006 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/22,11.747244999927505 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/23,3.5224936153846165 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/08,10.10201837328333 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/01,16.740191692291685 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/09,3.409152250047504 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/08,10.10201837328333 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/01,16.740191692291685 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/09,3.409152250047504 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/10,12.236441665924156 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/11,10.73647575666666 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/10,12.236441665924156 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/11,10.73647575666666 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/11/04,13.318766529350276 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/26,12.352915811839436 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/11/04,13.318766529350276 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/26,12.352915811839436 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/12/06,6.625774995380011 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/12/06,6.625774995380011 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/01/07,9.23164809389945 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/01/07,9.23164809389945 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/03/27,7.777266671709162 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/03/27,7.777266671709162 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/04/28,19.75418333396584 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/04/28,19.75418333396584 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/06/07,2.3614272500000038 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/06/07,2.3614272500000038 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/06/22,9.000150000015008 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/07/09,7.552725000554995 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/06/22,9.000150000015008 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/07/09,7.552725000554995 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/09,10.272699999617512 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/02,7.826385003365 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/10,4.689987747692299 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/09,10.272699999617512 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/02,7.826385003365 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/10,4.689987747692299 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/03,9.338844444444446 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/11,17.004625000189993 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/26,3.439550000000001 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/03,9.338844444444446 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/11,17.004625000189993 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/26,3.439550000000001 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/10/05,22.52221333342835 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/27,22.790341669156657 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/10/05,22.52221333342835 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/27,22.790341669156657 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/01/01,6.839663392051276 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/01/01,6.839663392051276 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/10,7.640274999977513 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/02,22.689058333333342 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/10,7.640274999977513 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/02,22.689058333333342 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/05,10.517892392727498 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/26,6.18512499604001 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/06,6.869070835835827 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/05,10.517892392727498 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/26,6.18512499604001 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/06,6.869070835835827 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/22,7.346909090289996 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/22,7.346909090289996 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/05/09,12.508179500144983 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/04/23,13.707625000095009 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/05/09,12.508179500144983 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/04/23,13.707625000095009 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/06/02,7.289212494980012 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/06/02,7.289212494980012 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/07/04,10.764806249855 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/06/26,2.3315249999999987 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/07/04,10.764806249855 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/06/26,2.3315249999999987 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/08/29,17.820325004409998 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/08/29,17.820325004409998 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/09/22,16.895875000544997 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/09/30,4.551344296153838 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/09/22,16.895875000544997 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/09/30,4.551344296153838 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/10/24,10.283295853128331 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/10/24,10.283295853128331 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/12/03,23.95450833793332 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/12/27,11.75503958606335 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/04/02,7.694725451539163 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/03/25,7.603524180512814 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/05/28,7.199850000047499 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/07/07,15.141158333333344 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/06/21,5.82562501109501 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/06/29,5.810775000902495 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/07/31,9.661000000072503 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/08/24,13.183896527872768 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/09/01,12.204900000247497 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/11/04,4.3771390280566616 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/12/06,3.12000000000001 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/01/31,11.758474999762504 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/03/04,22.26459166666668 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/02/24,11.9401250004275 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/06/08,5.209660613623335 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/05/31,12.883649999849997 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/07/10,4.15633182249 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/08/11,21.215795832185844 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/07/26,11.123020833405803 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/08/03,8.080075000452506 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/09/28,13.198450001809997 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/01/02,12.639992367341105 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/04/07,7.782658085755241 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/03/22,7.679549751206115 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/06/26,14.069608363423354 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/07/04,2.8683750000000003 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/07/28,3.192631068840829 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/08/29,6.853899996885011 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/09/06,13.442083333428329 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/09/22,20.03637500016749 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/11/09,3.415653883974357 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/12/03,10.399786670799166 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/01/28,21.75304166666668 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/04/10,10.896554168471674 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/04/02,3.9766091099999943 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/04/26,12.17481876144001 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/06/05,19.052562499999997 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/06/29,4.940189997999997 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/07/07,5.031650000072491 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/07/31,8.620558347448327 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/07/23,2.623675000000002 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/08/24,6.818607731999992 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/09/25,12.951908333570833 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/11/04,10.62826666541418 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/11/07,13.311225000095009 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/10/27,13.841917423380805 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/02/24,9.656016666666682 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/03/28,4.57892499997001 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/04/05,2.714575000000002 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/03/28,6.356898384358966 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/05/07,18.124133333380826 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/04/29,9.288490911666662 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/10,4.8868333403758335 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/05,3.912924999999993 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/05/24,15.187720833475828 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/08,2.460125000000001 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/05/23,6.678549999999999 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/09,3.5937571075808967 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/27,5.20749613556083 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/22,6.87601668070167 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/10,2.72766379 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/02,5.193883333428333 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/24,3.5011831999999954 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/31,8.088987502470008 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/26,3.8681568258449976 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/08/11,4.701938649999995 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/08/03,4.033888679999993 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/26,5.536495110256401 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/08/29,20.567515833428335 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/08/27,14.419883333333315 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/10/02,6.26442499691501 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/11/10,3.4732166805074987 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/10/24,8.427646865714282 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/11/07,3.291252540769229 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/10/30,5.475380461999989 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/10/22,3.8439363099999992 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/11/22,9.384068762080004 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/12/01,9.544449160607828 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/11/23,4.236691930769223 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/02/08,7.049799997990013 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/03/07,8.88117010307692 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/04/08,12.51445625033248 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/04/27,8.054438654684997 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/05/10,3.351800000434997 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/04/24,6.632800000674995 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/06/03,18.989045833285832 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/05/26,3.32446096474359 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/07/05,9.779018179999994 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/07/24,17.993725000214994 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/08/06,9.207615146666662 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/09/11,6.741824997990011 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/08/22,3.770145673076923 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/10/08,3.5626833336183377 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/10/01,7.744051368000002 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/11/10,18.626366666666662 +Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/11/26,12.03347499844 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2014/12/26,10.166463748752498 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2014/12/27,4.650511370131662 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2014/12/26,10.166463748752498 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2014/12/27,4.650511370131662 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/05,9.71926666666668 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/05,9.71926666666668 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/28,22.34590833333334 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/20,21.75304166666668 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/28,22.34590833333334 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/20,21.75304166666668 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/04/09,17.96755833418333 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/04/09,17.96755833418333 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/03,9.03644754561 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/11,10.47422916737917 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/04,11.302123513394998 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/03,9.03644754561 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/11,10.47422916737917 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/04,11.302123513394998 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/28,19.838375000095024 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/06/05,19.191135607663355 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/28,19.838375000095024 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/06/05,19.191135607663355 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/07,20.55494999999998 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/07,20.55494999999998 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/08/07,18.30046666542168 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/31,9.450875005394984 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/22,9.064141665756678 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/30,2.9086818249999964 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/23,7.674611111681113 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/08/07,18.30046666542168 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/31,9.450875005394984 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/22,9.064141665756678 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/30,2.9086818249999964 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/23,7.674611111681113 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/08,10.25526500133001 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/01,16.650933333665822 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/09,9.362400000652498 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/08/31,2.6976500000000003 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/08,10.25526500133001 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/01,16.650933333665822 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/09,9.362400000652498 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/08/31,2.6976500000000003 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/10,6.066206709192619 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/24,6.037500006840003 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/11,6.451439541999992 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/10,6.066206709192619 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/24,6.037500006840003 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/11,6.451439541999992 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/11/04,6.479602265000002 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/26,5.877463635072502 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/11/03,7.813569121999985 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/11/04,6.479602265000002 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/26,5.877463635072502 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/11/03,7.813569121999985 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/01/07,7.75714842632944 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/01/06,5.63845893935897 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/01/07,7.75714842632944 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/01/06,5.63845893935897 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/02/07,4.914265318666666 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/02/07,4.914265318666666 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/03/27,9.998363635645012 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/03/26,12.08428636229999 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/03/27,9.998363635645012 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/03/26,12.08428636229999 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/04/28,3.717760709983213 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/04/27,11.927884095511676 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/04/28,3.717760709983213 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/04/27,11.927884095511676 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/07,3.316358202948716 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/07,3.316358202948716 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/22,7.872999996340005 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/23,8.985250000167495 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/22,7.872999996340005 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/23,8.985250000167495 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/09,6.354870828823339 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/02,15.1881124998925 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/07/24,18.746549999755 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/10,2.766425000000004 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/07/25,11.71787499848 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/09,6.354870828823339 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/02,15.1881124998925 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/07/24,18.746549999755 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/10,2.766425000000004 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/07/25,11.71787499848 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/10,2.497953182688334 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/03,4.973838630217493 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/11,3.433834099999995 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/02,3.915648675384612 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/26,2.6984250000000047 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/10,2.497953182688334 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/03,4.973838630217493 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/11,3.433834099999995 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/02,3.915648675384612 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/26,2.6984250000000047 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/10/05,2.6665287867391667 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/26,5.968899997330007 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/10/04,4.232178330769226 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/27,4.165086379999994 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/10/05,2.6665287867391667 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/26,5.968899997330007 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/10/04,4.232178330769226 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/27,4.165086379999994 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/12/07,3.64823794230769 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/12/07,3.64823794230769 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/01/01,7.18989883358974 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/01/01,7.18989883358974 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/10,8.078149999270009 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/09,4.515737078846146 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/02,2.944025000000005 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/10,8.078149999270009 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/09,4.515737078846146 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/02,2.944025000000005 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/05,8.821618090906941 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/26,23.64040833333333 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/05,8.821618090906941 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/26,23.64040833333333 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/29,12.114287501335 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/22,7.71129861230769 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/29,12.114287501335 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/22,7.71129861230769 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/05/09,12.911860001730012 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/04/30,16.568083333405838 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/04/23,16.306025002822498 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/05/09,12.911860001730012 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/04/30,16.568083333405838 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/04/23,16.306025002822498 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/09,4.388026848773217 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/02,6.599564130601907 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/01,6.371655686328319 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/09,4.388026848773217 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/02,6.599564130601907 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/01,6.371655686328319 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/07/11,8.73537499902001 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/07/04,3.996152270362499 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/26,4.1744682999999965 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/07/11,8.73537499902001 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/07/04,3.996152270362499 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/26,4.1744682999999965 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/08/05,3.0021809379999995 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/08/05,3.0021809379999995 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/08/29,7.228875001477502 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/08/29,7.228875001477502 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/29,7.036641660051674 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/30,3.685931750119999 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/21,3.0505250000724926 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/29,7.036641660051674 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/30,3.685931750119999 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/21,3.0505250000724926 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/11/08,9.810602269999992 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/11/08,9.810602269999992 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/12/03,20.714745848510816 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/11/24,9.407761369999989 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/01/03,12.575233338258348 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/12/27,8.453700009949994 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/12/26,15.269450004744977 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/02/05,13.360541666404169 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/02/28,4.363800006929165 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/02/21,23.081675000000004 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/04/09,5.016195832078341 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/04/02,11.637275098152504 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/03/24,9.773603813782506 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/03/25,6.224113686153843 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/05/28,2.6864795000000017 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/07/07,15.049800025300016 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/06/21,9.02737284615274 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/06/29,16.297216702389193 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/07/31,5.921978330841724 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/08/31,4.565733336418333 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/08/24,4.982275003697503 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/09/01,4.524875000144994 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/08/23,7.44987500021751 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/10/10,3.248700941999997 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/09/24,13.68596668168919 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/11/11,3.604425000000008 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/11/04,6.072682587961665 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/01/06,6.095030437290002 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/03/11,8.507058332668356 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/02/24,12.73380000000001 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/03/27,9.132883335633329 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/05/06,7.655275373980836 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/06/08,5.575850000142506 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/06/07,4.496091614043328 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/05/31,13.183683335468343 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/07/10,3.606852270289997 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/07/09,20.603000000189997 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/06/23,8.213924999624998 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/08/11,5.530050001372502 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/07/26,3.991229167169172 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/08/10,8.821437748373333 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/08/03,8.151141668091658 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/07/25,5.309400000144993 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/09/03,18.99595000018752 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/08/26,20.050975003497538 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/10/05,7.243391666739182 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/10/06,4.771200000767495 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/09/27,6.266081820000002 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/10/29,8.505474999999988 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/11/30,5.984804170924159 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/01/02,8.6867873643186 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/03/05,11.996542425633328 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/04/07,6.724875001342508 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/03/22,7.9372277787802705 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/04/06,13.755753783333308 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/05/25,12.10137506447249 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/06/09,2.7425795799999992 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/05/24,15.789091666756688 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/06/26,3.8619333369566617 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/07/11,3.0368250000000017 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/07/04,5.461683333670833 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/06/25,4.373112757692304 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/07/28,4.218627269999992 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/08/05,4.112285504871789 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/09/06,17.755174999999987 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/09/22,24.060199999999988 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/11/09,5.92113938666666 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/12/03,8.952040838848333 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/12/11,6.725155687807496 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/01/28,13.470133333613326 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/02/20,21.75304166666668 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/04/09,9.061066666749175 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/04/02,3.99596666666666 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/04/26,6.276253031309166 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/05/11,2.549954500000002 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/05/04,5.137634854994997 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/06/05,17.67154999999998 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/06/29,4.2938500003575015 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/07/07,9.816819231106727 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/06/28,8.613941676271667 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/08/08,13.200416666739171 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/07/23,7.161159109999995 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/09/09,2.994118447115385 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/08/31,5.680603638072497 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/08/24,3.829486389999992 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/10/11,4.755600002169996 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/10/02,2.966990969999998 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/11/04,7.804960416426685 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/11/07,14.006100000332497 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/11/03,3.354925000000006 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/10/27,13.553424999984983 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/01/07,10.546758333333347 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/01/06,4.685277498461531 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/03/03,13.835041666571662 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/03/28,14.480720830558337 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/04/05,6.479516792307691 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/05/07,19.22378333361334 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/04/29,10.9858250193625 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/04/28,9.257224999892514 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/05,3.5265621357974943 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/05/24,13.302425000142504 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/05/30,5.538868279972501 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/05/23,5.129759100047491 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/09,3.0148969666666634 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/27,7.555379162186671 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/22,6.908048335923338 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/10,6.4097358974358976 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/09,13.028393760942508 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/02,3.057102309999998 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/24,4.261606749999999 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/23,5.462808333405833 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/31,14.16636249852501 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/26,15.494524998924996 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/08/11,3.284365430769228 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/08/03,3.869744696739165 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/08/29,3.084296971739162 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/09/03,13.036024999999997 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/08/27,4.747195430000001 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/02,5.98769999409001 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/05,5.100712231999994 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/10,10.883632595280826 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/05,9.730216665736682 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/24,10.51588777238094 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/07,5.615396311999993 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/06,3.758765761538457 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/30,2.9107506282051263 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/29,4.766854579999993 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/22,5.021000901999994 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/22,13.157427101528334 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/12/01,4.110015594230762 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/23,23.19800001610001 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/01/09,3.888925305769226 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/02/08,13.86966666666666 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/02/03,12.838241666666674 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/03/07,4.473701591153838 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/02/26,4.774168933846143 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/10,9.889175000722506 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/08,14.3741533208167 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/07,5.359109195082499 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/27,9.877958333573345 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/05/10,5.619903026714172 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/05/09,19.91961666628169 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/24,11.131746480841723 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/06/10,11.530112498812509 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/06/03,17.962933333500835 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/06/02,10.954441668139156 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/05/26,5.725016666761672 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/05/25,12.3159250016225 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/07/05,7.673443180047496 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/07/04,22.27234166828168 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/06/27,2.326525 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/07/24,8.423600000795 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/08/06,3.552340909999996 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/07/28,5.896394459510953 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/11,3.9225117990109855 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/06,3.4453067500000003 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/08/30,3.522352250000004 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/08/29,7.7157000012074946 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/08/22,2.754525000000005 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/10/08,3.5884212104099986 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/21,3.5155242468116588 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/10/09,5.921557176923069 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/10/01,4.363431820072495 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/30,3.394322909999996 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/22,7.575335003492496 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/11/01,5.50791061688416 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/10/24,17.79117499975501 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/11/26,9.79632500016748 +Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/11/25,23.35102500009249 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2014/12/26,6.810974996470011 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2014/12/27,4.219030461999997 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/02/05,22.47810000000001 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/02/28,22.34590833333334 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/04/01,10.667116665591674 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/04/02,10.078900004599989 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/05/03,10.658138003664169 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/05/04,15.283343343683352 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/05/28,9.060258349235834 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/06/05,5.762001147213327 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/06,9.125608333578356 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/07,21.080554166666644 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/08/07,9.561819167094182 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/22,7.747062500235006 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/30,5.408787904277499 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/23,6.613800000047504 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/09/08,13.357350416286677 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/09/01,5.389604167001675 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/09/09,3.880424999999991 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/08/31,8.116750000144995 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/10/10,5.436536404380944 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/09/24,9.412512499499998 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/10/11,3.260603647435892 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/11/04,7.659486354999996 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/10/26,6.195560608405828 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/11/03,3.0114135666666657 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/12/06,6.485424997975009 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/01/07,9.909451528227766 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/01/06,5.437775490384606 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/02/07,18.351866673566647 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/03/27,6.639996980995836 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/04/28,8.858345835075838 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/06/07,3.179475 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/06/22,5.897099992815006 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/09,7.146191665711668 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/02,6.524056823047505 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/07/24,10.903049999237492 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/10,3.852172488717944 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/01,3.1566500000000066 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/07/25,17.109074999554988 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/10,11.641332499715018 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/03,4.457711360217491 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/11,4.4338894384615335 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/02,12.538125000072482 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/26,4.333326146410249 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/10/05,3.1551916584058306 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/26,7.996366655661667 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/10/04,5.185954120256403 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/27,3.8812273999999936 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/01/01,2.949677250000006 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/02/10,22.090908333333346 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/02/09,22.373083333333344 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/02/02,21.268550000000022 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/03/05,13.596905841970838 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/02/26,23.317533333333326 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/03/30,6.58937499711501 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/03/22,13.176991666389164 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/05/09,11.904300000047495 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/04/30,20.529043749215017 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/04/23,13.624700002347502 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/09,12.396683334805832 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/02,5.040850831923333 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/01,4.732577249999991 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/07/04,4.289021213788335 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/25,6.250799993415009 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/07/03,2.595506749999998 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/26,3.910865909999993 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/08/29,3.112834091522501 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/09/29,8.269249987764997 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/09/22,9.875125001282504 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/09/30,8.334525001182493 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/09/21,10.515216668081647 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/12/03,9.36442106140582 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/11/24,4.246922948666666 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/12/27,7.504762518882502 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/02/21,11.092641666666664 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/04/09,6.842991664384165 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/04/02,7.398775055344996 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/03/24,8.162499186409168 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/03/25,10.52675600051282 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/05/28,2.623504499999996 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/07/07,2.5092113399999985 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/06/21,4.910808343350836 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/06/29,3.77899924666666 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/07/31,2.6659750000000035 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/08/31,13.09759166808917 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/08/24,3.89400000082 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/09/01,2.9816022500475 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/10/10,5.318522769999991 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/09/24,12.891564775629988 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/11/11,5.111350000434993 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/11/04,6.953700391728329 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/01/31,12.123875000047503 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/02/24,13.122988256619166 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/05/06,6.364679552372492 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/06/08,4.845700002632502 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/06/07,25.68502500058001 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/05/31,9.34853333391333 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/07/10,2.3093750011174987 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/07/09,14.68482500007249 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/06/23,11.281212506204994 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/08/11,8.131658338740829 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/07/26,2.876475000720001 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/08/10,3.1288272500000063 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/08/03,6.97964167028167 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/07/25,18.655691666284174 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/09/04,2.7154250000000046 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/08/26,4.434199999999995 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/10/06,3.142201060769226 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/09/27,4.04887425166666 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/10/29,3.7614548107692274 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/11/30,6.458804170449155 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/01/02,17.115564449566925 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/03/05,6.496698621999991 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/04/07,9.759060416436668 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/03/22,8.682356066013323 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/05/25,6.42322499995 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/06/09,4.039872730072502 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/05/24,12.344112508975025 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/06/26,5.62353560963583 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/07/11,8.173200000937495 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/07/04,3.11405893 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/06/25,3.840675000000001 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/07/28,4.11986817999999 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/08/05,3.6828249999999954 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/09/06,13.634350000405009 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/09/22,16.990591666739178 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/11/09,3.071094311538461 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/10/31,4.656258200072496 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/12/03,11.366275309481658 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/12/11,21.54156250240001 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/02/05,20.07072291915669 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/04/02,4.418256258666662 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/04/26,6.424644700113333 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/05/11,2.440254500000003 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/05/04,8.218045079736665 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/06/05,17.321033333405822 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/06/29,11.586879166524186 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/07/07,5.149825000624997 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/06/28,5.600786667911675 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/07/31,8.881520879258337 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/08/08,16.986050000187493 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/07/23,18.81881667136166 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/09/09,3.401305376923075 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/08/31,2.673952250000006 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/08/24,8.666640155775843 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/10/11,5.647990540809996 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/10/02,6.1192477300725 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/11/04,7.194874999977517 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/11/07,13.915200002585005 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/10/27,9.892425000217496 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/01/06,20.16255833335084 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/02/24,10.080983333333348 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/03/28,7.378026266712498 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/04/05,14.384116666866651 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/05/07,15.483449999997513 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/04/29,7.703074999040002 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/04/28,11.76771458204584 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/10,2.6410250010224985 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/05,4.20514317999999 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/05/24,11.560408333380838 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/08,3.309034000000001 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/05/30,20.29800833333085 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/05/23,2.9522067500000007 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/09,3.5984431799999936 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/22,4.113825002129999 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/10,3.037920286538461 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/09,8.131266666976675 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/02,4.256352270144994 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/24,3.1162886899999984 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/26,20.337774999999983 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/08/11,3.5000331307692267 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/08/03,3.275422730652498 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/25,4.519792055563331 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/08/29,2.894059105072499 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/08/27,5.2692295 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/02,8.118674993235006 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/11/10,4.007832844102561 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/24,8.413528685714281 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/11/07,2.8314953499999973 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/30,3.6069759666666656 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/29,3.5002068300725018 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/22,5.854606918739162 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/11/22,10.381420850013336 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/12/01,4.3980544788461495 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/11/23,8.391686976405824 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/02/08,6.585124992555008 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/03/07,3.214581897435894 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/04/08,14.81418819582192 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/04/27,9.183163645665008 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/05/10,21.143858335965845 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/04/24,8.568052250144994 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/06/10,17.99972460036585 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/06/03,18.46083144396668 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/06/02,10.970224999572494 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/05/26,2.766178370769229 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/07/05,2.742700000000002 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/07/04,4.253524999999991 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/07/24,4.103187729012497 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/08/06,3.801146223333325 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/07/28,8.124800003289995 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/09/11,4.158294533470124 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/09/06,12.316116666666645 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/08/29,2.9744500000000045 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/08/22,3.680923069102556 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/08,3.630833333403341 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/09,2.7611522500000065 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/08,12.52038333311832 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/01,4.194099999999993 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/09/30,3.522625000000001 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/09/22,13.51046668053918 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/11/01,3.609944884615385 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/24,18.31148333373334 +Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/11/26,20.328716667411665 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/26,13.888409556094173 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/27,20.336450004599996 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/27,4.50747124666666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/26,13.888409556094173 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/27,20.336450004599996 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/27,4.50747124666666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/01/27,22.47810000000001 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/01/27,22.47810000000001 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/02/28,22.30574166666668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/02/28,22.30574166666668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/01,22.29679999935501 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/09,7.62099999412 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/01,22.29679999935501 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/09,7.62099999412 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/03,6.057100001997503 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/11,17.134666666666657 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/04,4.974106822299999 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/04,20.726816689094196 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/25,6.334512727999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/03,6.057100001997503 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/11,17.134666666666657 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/04,4.974106822299999 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/04,20.726816689094196 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/25,6.334512727999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/28,6.479625001697503 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/27,17.64405416659666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/28,6.479625001697503 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/27,17.64405416659666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/06/29,8.577635417274184 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/07,11.9340000006275 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/07,8.918725000435005 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/06/29,8.577635417274184 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/07,11.9340000006275 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/07,8.918725000435005 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/07,10.147760036824993 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/31,13.26307500014251 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/22,5.6200400786116695 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/30,3.932681819999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/23,3.136352250047501 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/23,5.102434100047493 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/07,10.147760036824993 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/31,13.26307500014251 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/22,5.6200400786116695 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/30,3.932681819999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/23,3.136352250047501 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/23,5.102434100047493 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/08,14.04122500987499 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/01,17.337035010170027 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/09,2.536125000047498 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/09,2.510450000047498 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/31,19.451341666761675 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/24,13.797608333333342 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/24,13.025374999857512 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/08,14.04122500987499 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/01,17.337035010170027 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/09,2.536125000047498 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/09,2.510450000047498 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/31,19.451341666761675 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/24,13.797608333333342 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/24,13.025374999857512 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/10,9.03842709858583 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/24,7.211545878080833 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/11,17.18439291728415 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/11,21.75586166685668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/25,16.836520833478342 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/25,18.31848750016752 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/10,9.03842709858583 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/24,7.211545878080833 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/11,17.18439291728415 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/11,21.75586166685668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/25,16.836520833478342 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/25,18.31848750016752 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/11/04,19.46205835197083 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/26,20.588687502494984 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/11/03,10.79088638999999 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/11/04,19.46205835197083 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/26,20.588687502494984 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/11/03,10.79088638999999 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/12/06,19.110154167616667 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/12/06,19.110154167616667 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/01/07,9.811025005292503 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/01/06,10.631094455384607 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/01/07,9.811025005292503 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/01/06,10.631094455384607 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/02/07,18.92891666666669 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/02/07,18.92891666666669 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/02,7.89317499971001 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/02,7.89317499971001 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/04/03,4.775924999970009 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/27,15.327602912700012 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/26,4.963713659999997 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/04/03,4.775924999970009 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/27,15.327602912700012 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/26,4.963713659999997 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/05/06,5.605625002047491 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/05/06,5.335887503162496 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/04/27,5.019170469999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/05/06,5.605625002047491 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/05/06,5.335887503162496 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/04/27,5.019170469999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/07,3.522975000000008 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/07,3.1934750000000025 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/07,3.522975000000008 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/07,3.1934750000000025 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/22,5.851324999570008 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/22,5.851324999570008 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/09,7.676575010362502 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/02,9.74277291707666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/07/24,8.631996241537488 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/10,15.387966676666649 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/10,12.77968408999998 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/09,7.676575010362502 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/02,9.74277291707666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/07/24,8.631996241537488 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/10,15.387966676666649 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/10,12.77968408999998 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/10,11.31847340324583 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/03,12.646556813405825 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/25,8.144649985694992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/11,16.69446818999997 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/11,10.037308488666664 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/02,3.094650000000002 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/26,10.04735833340584 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/26,11.092783333453331 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/10,11.31847340324583 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/03,12.646556813405825 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/25,8.144649985694992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/11,16.69446818999997 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/11,10.037308488666664 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/02,3.094650000000002 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/26,10.04735833340584 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/26,11.092783333453331 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/10/05,4.541872031047615 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/26,20.656149999087503 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/27,7.178376367999991 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/27,8.040949999999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/10/05,4.541872031047615 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/26,20.656149999087503 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/27,7.178376367999991 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/27,8.040949999999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/02/02,21.791766666666685 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/02/02,21.791766666666685 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/05,8.700439174254164 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/05,8.700439174254164 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/29,8.183545833833332 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/22,5.375428035679157 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/29,8.183545833833332 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/22,5.375428035679157 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/08,4.246328166712736 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/09,2.619966906666667 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/09,3.957894006666665 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/30,20.13479583340585 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/23,10.862262873333318 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/23,11.803681063333316 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/08,4.246328166712736 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/09,2.619966906666667 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/09,3.957894006666665 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/30,20.13479583340585 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/23,10.862262873333318 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/23,11.803681063333316 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/09,5.610610825183337 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/02,3.854602299999991 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/10,10.603101667984143 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/10,6.815104551937501 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/01,3.533912561538461 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/09,5.610610825183337 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/02,3.854602299999991 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/10,10.603101667984143 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/10,6.815104551937501 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/01,3.533912561538461 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/07/11,5.140917428550832 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/25,27.41561250110252 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/07/03,12.085012499974985 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/26,6.601336359999989 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/26,3.4578704799999973 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/07/11,5.140917428550832 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/25,27.41561250110252 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/07/03,12.085012499974985 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/26,6.601336359999989 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/26,3.4578704799999973 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/30,11.460500231282037 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/30,10.224571910512823 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/21,15.5607250001675 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/30,11.460500231282037 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/30,10.224571910512823 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/21,15.5607250001675 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/11/08,5.4619838027692245 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/11/08,5.4619838027692245 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/12/03,13.918016669061666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/12/03,3.5162213566666645 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/11/24,9.750536359999993 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/02/05,21.75304166666668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/02/05,21.791766666666685 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/02/28,17.165611364842484 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/04/02,9.294508334915829 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/04/01,14.348502084303355 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/04/26,3.977395450217496 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/04/26,5.022034856666655 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/05,6.38464999128001 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/05/27,11.454041666474156 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/04,5.470520154474164 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/05/28,6.74335000385 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/05/28,10.8633750185675 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/07/07,7.587379398119998 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/21,3.143341666581671 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/07/06,2.7830750000000046 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/29,19.791391684946667 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/29,10.394266667279163 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/07/31,6.455575000192497 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/07/31,5.773775001424999 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/08/31,17.815666249999996 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/08/24,15.25557083340581 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/09/01,5.96135728087667 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/09/01,6.301861754101664 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/08/23,14.55254166671417 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/10/10,8.22350227999999 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/09/24,16.014375013560006 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/11/04,6.361266406673212 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/11/04,6.005540546154999 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/01/31,22.447608333333346 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/03/03,21.791766666666685 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/02/24,23.96396666666665 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/03/27,11.803526270122491 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/04/04,7.701054167051671 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/05/06,4.413687727999996 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/06/08,6.150975000145013 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/06/07,14.559983351733354 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/05/31,16.63115833769333 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/05/31,13.771800004170007 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/07/01,13.862414768810002 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/07/09,12.64431041645417 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/06/23,16.28543334497584 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/02,10.013945861245828 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/07/26,8.410074998692524 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/10,18.03473334019085 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/03,10.882673112933334 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/03,10.757609170979164 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/07/25,13.700837507905 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/09/11,7.880304170249154 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/09/04,3.748934250769228 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/09/04,7.602201050769237 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/26,8.572631441116664 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/10/05,21.433625000000028 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/10/06,4.691950000000005 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/09/27,21.608025006900004 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/11/06,21.88374168736668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/10/29,8.754818179999985 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/11/22,3.5587166638741694 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/11/23,18.410995836133345 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/11/23,19.067825000399992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/01/09,11.26175833333334 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/01/02,10.589550007874998 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/04/07,12.363437501492506 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/03/22,14.888158340760832 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/04/06,8.096234089999989 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/04/22,8.544650002517495 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/10,5.964862502822493 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/01,5.527924232798448 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/05/25,9.537874999999996 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/09,3.746987128333328 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/05/24,7.823251576914996 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/03,16.29677500002249 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/26,4.388869120072492 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/11,9.034025021929995 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/04,3.014633999999999 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/04,2.937156749999998 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/25,4.753350000724995 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/28,10.046541667429178 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/08/05,21.573020005217494 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/08/05,15.049868180047472 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/05,8.14397041927418 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/08/29,7.309499999649994 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/06,11.96313333333332 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/30,12.485053913738335 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/21,8.859570453333333 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/22,17.96075833307083 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/22,18.26950833333332 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/11/08,22.869725016479983 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/10/23,13.725295833433314 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/11/09,15.797176513333293 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/11/09,3.752268450769229 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/10/31,4.723093199999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/12/03,9.082891672556672 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/12/11,5.104022729999996 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/12/11,4.299590909999995 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/12/02,5.694551923076916 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/02/05,22.34590833333334 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/01/28,21.88613333333335 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/01/28,21.66638333333335 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/04/01,12.03611502694249 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/03/25,9.859626678316904 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/04/02,4.059484099999995 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/04/02,5.084122799999998 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/04/26,9.086855300000003 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/05/11,3.397279500000006 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/04,7.557067423478344 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/05,6.527091675914173 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/05,4.297600000145 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/05/27,5.213327250072493 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/29,14.821039998955008 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/28,5.029160609273334 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/07,15.441283336063345 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/07/31,12.35424166992918 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/07/22,7.196685832003348 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/08,9.94590000009499 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/08,3.261550000000002 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/07/23,18.69281666671416 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/07/23,7.663275000047515 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/31,8.84825833359833 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/24,11.409068750309986 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/24,12.524837083593328 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/10/10,6.3497249953800114 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/10/02,17.459716666879164 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/11/04,6.543908324720848 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/11/07,8.921574236666663 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/11/03,4.067166812307689 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/11/02,4.082569924615382 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/10/27,2.811152250000006 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/10/27,2.831925000000006 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/01/07,12.093999999984998 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/01/07,12.173624999985 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/01/06,8.099904949933594 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/01/30,22.14189166666668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/03/03,22.47810000000001 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/03/03,22.14189166666668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/02/24,22.29457500000001 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/02/24,22.14189166666668 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/04,3.747275000022511 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/05,2.736452250000005 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/05,3.362902250000006 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/04,3.3025750000000067 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/07,18.320458333533324 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/07,18.035054166866654 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/28,11.910750003307507 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/10,10.036920834773332 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/05,3.036071229565831 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/05,5.918817428840835 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/24,18.24541250460002 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/30,7.283250001034989 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/23,4.698034100072496 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/23,5.227759100072491 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/09,9.7379162501425 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/09,9.104691250142505 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/27,18.17476666685669 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/10,20.571291669061644 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/10,15.886983333380815 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/09,7.929203054259172 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/02,19.160375002157483 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/02,13.435853033824156 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/01,8.482585872664057 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/24,12.554568179999992 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/24,8.219313660000001 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/23,11.1468000055275 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/26,10.22472916654666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/11,14.297718180047474 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/11,14.991677270047472 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/10,8.243611340072498 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/03,12.216958335200834 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/03,9.562254170756663 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/02,2.5865250000000013 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/25,12.732630254499163 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/29,24.598941669014184 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/27,11.654177250000002 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/27,11.389874999999986 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/07,6.872474993875011 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/05,6.340155476999995 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/10,11.453809860914166 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/05,12.450666668686672 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/05,9.425250001765002 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/24,5.95704546 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/07,11.680026506739155 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/07,12.235919686739148 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/29,9.756481016739167 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/22,10.349942416666666 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/22,2.6186429499999986 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/22,9.39076000474499 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/22,10.50449792063916 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/12/01,6.7117033836372375 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/12/01,5.92983660140205 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/23,5.2260874585897374 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/23,5.78158432135455 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/01/09,4.705937896153838 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/02/03,22.337341666666678 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/03/07,7.624060057948714 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/03/07,10.506658449116856 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/02/26,5.190128019487171 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/10,14.819350002300016 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/08,31.079533340233347 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/08,12.253285603380816 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/07,7.16999166898166 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/03/30,4.192909730769225 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/02,15.518677361206104 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/27,6.014221441249166 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/10,20.454258333333332 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/10,23.504183333333334 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/09,5.188340079510838 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/10,14.065945833500828 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/24,10.703004170764189 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/10,5.212761435979169 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/03,15.298366670116682 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/03,12.395050006367514 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/02,16.581000000262474 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/26,3.4179397307692265 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/26,2.7536149007692297 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/25,5.328701267593217 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/05,3.8143453751925 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/05,3.7590362501925023 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/04,4.61311250236 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/26,19.086670834598337 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/24,18.913302083333317 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/24,21.18154791673916 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/06,10.25512575671418 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/06,15.2376111111111 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/28,20.313283333333334 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/09/11,3.6080925803333286 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/30,9.434992674615382 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/30,9.28009702615384 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/29,4.404427963333334 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/22,14.625174999984976 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/22,17.867812499954997 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/08,8.850483222600822 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/08,10.337918754597492 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/09/21,14.579237504862473 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/01,8.270241666666674 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/01,16.71545833361833 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/09/30,17.194680833333333 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/09/22,20.85708333338083 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/24,3.127281750000002 +Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/11/25,6.19114556853988 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2014/12/27,11.893458338550827 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2014/12/27,11.893458338550827 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/02/06,21.31009166666669 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/02/06,21.31009166666669 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/04/26,9.483730047257506 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/04,13.110763272336664 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/04/26,9.483730047257506 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/04,13.110763272336664 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/06/06,7.742912512352502 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/28,9.79766666711668 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/29,18.74810833399837 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/06/06,7.742912512352502 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/28,9.79766666711668 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/29,18.74810833399837 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/08,13.23616666695167 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/06/22,12.29299167986417 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/07,3.4456750000000023 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/08,13.23616666695167 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/06/22,12.29299167986417 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/07,3.4456750000000023 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/08/09,14.686975000000004 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/31,8.113647920851662 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/24,12.250952084000849 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/08/01,8.356322922554169 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/23,21.929299999380035 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/08/09,14.686975000000004 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/31,8.113647920851662 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/24,12.250952084000849 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/08/01,8.356322922554169 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/23,21.929299999380035 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/02,3.6544045000000023 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/02,3.6544045000000023 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/26,9.960041665804177 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/10/11,14.90685000009501 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/10/04,20.93803750103754 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/25,11.245708717484176 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/26,9.960041665804177 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/10/11,14.90685000009501 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/10/04,20.93803750103754 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/25,11.245708717484176 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/11/04,13.608775001877495 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/11/04,13.608775001877495 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/11/29,3.698778046409168 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/11/29,3.698778046409168 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/02/01,8.172949998065013 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/01/24,21.88613333333335 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/02/01,8.172949998065013 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/01/24,21.88613333333335 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/05,9.721781251332496 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/03/27,5.260162493310002 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/05,9.721781251332496 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/03/27,5.260162493310002 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/07,9.69443750193001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/28,6.422024993230009 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/21,15.35802499825249 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/07,9.69443750193001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/28,6.422024993230009 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/21,15.35802499825249 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/23,7.514777089043329 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/07,8.175125758525835 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/31,8.807770839160833 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/23,7.514777089043329 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/07,8.175125758525835 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/31,8.807770839160833 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/24,12.77475000725751 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/07/02,9.34465796765416 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/23,25.95255000116001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/24,12.77475000725751 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/07/02,9.34465796765416 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/23,25.95255000116001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/11,10.900933340468333 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/02,8.69880211394583 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/07/26,16.387311369600013 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/10,2.9835250000000024 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/03,12.070380833370823 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/11,10.900933340468333 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/02,8.69880211394583 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/07/26,16.387311369600013 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/10,2.9835250000000024 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/03,12.070380833370823 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/03,13.656991673589186 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/27,7.51029542432916 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/11,10.670095833570835 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/04,10.967845835823333 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/26,14.038950000000009 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/03,13.656991673589186 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/27,7.51029542432916 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/11,10.670095833570835 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/04,10.967845835823333 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/26,14.038950000000009 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/10/05,12.250220833428347 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/28,11.856891667359177 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/10/06,15.765650000000036 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/27,15.029083333333352 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/10/05,12.250220833428347 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/28,11.856891667359177 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/10/06,15.765650000000036 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/27,15.029083333333352 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/11/07,16.613175000047505 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/11/07,16.613175000047505 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/12/08,8.789441666464182 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/12/09,8.684149997174998 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/12/08,8.789441666464182 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/12/09,8.684149997174998 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/01/02,23.365949999999994 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/01/01,12.50615833333333 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/01/02,23.365949999999994 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/01/01,12.50615833333333 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/08,13.188175025044998 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/03/23,9.61980833558583 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/03/22,3.7385341298076953 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/08,13.188175025044998 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/03/23,9.61980833558583 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/03/22,3.7385341298076953 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/24,14.057024997884987 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/23,16.012662769999974 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/24,14.057024997884987 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/23,16.012662769999974 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/11,8.93006669605917 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/02,7.798991667176682 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/03,14.269037502855 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/11,8.93006669605917 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/02,7.798991667176682 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/03,14.269037502855 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/04,9.011093764334992 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/05,14.036525000237514 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/04,9.011093764334992 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/05,14.036525000237514 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/05,15.590306250237536 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/29,24.103131250140017 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/06,12.515208333428337 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/28,16.63406250014001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/05,15.590306250237536 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/29,24.103131250140017 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/06,12.515208333428337 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/28,16.63406250014001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/30,13.876556251437512 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/22,21.200175000337524 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/30,13.876556251437512 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/22,21.200175000337524 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/08,8.8191136400475 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/01,9.275572403807494 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/09/22,7.293606261109996 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/09/23,15.30020000009501 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/08,8.8191136400475 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/01,9.275572403807494 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/09/22,7.293606261109996 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/09/23,15.30020000009501 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/24,8.651581249455012 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/11/10,3.929357415384613 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/25,13.47580833350086 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/24,8.651581249455012 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/11/10,3.929357415384613 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/25,13.47580833350086 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/01/05,22.47810000000001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/04/02,15.557775139677515 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/04/10,3.2498500000000075 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/06/05,6.026149995807514 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/05/29,10.604329168909176 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/05/28,8.469380684045 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/07/07,14.564879167404186 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/06/30,12.998772506437511 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/06/21,10.95577708899834 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/07/08,12.072031250630012 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/06/29,16.18908333629836 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/08/09,22.969143749447504 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/08/24,18.71440834138085 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/09/01,12.96466168383667 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/08/25,16.57834810862334 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/11/04,4.294041692779998 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/12/07,10.11286666666668 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/03/05,21.750616666666684 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/04/30,6.619940850783338 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/05/08,15.925983351375857 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/06/08,17.721860606666677 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/06/01,6.397470826853351 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/06/09,5.584302884666663 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/05/31,19.743791666591672 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/07/10,8.555967916011666 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/07/03,9.593585412439165 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/06/25,8.77090734205128 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/08/11,20.35844166692421 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/08/04,13.53886875124002 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/07/26,18.589364586270836 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/08/03,11.431877085080846 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/07/27,13.557283333333348 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/09/05,15.433772918724197 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/09/28,14.912606250810011 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/09/21,11.533747919059168 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/09/29,13.1590250003375 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/10/23,11.163369183286669 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/11/23,21.014300000140015 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/04/07,11.269733334475829 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/03/22,26.800000011522503 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/05/02,8.348673361515834 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/04/23,9.956625001964987 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/05/25,6.966970826040846 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/05/26,25.21572500512248 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/07/05,16.966780833143336 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/06/26,8.255245861555835 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/07/04,8.143414289569279 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/08/06,15.45923750973501 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/07/28,10.407149998965002 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/08/05,13.433506252307502 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/07/29,2.471374999999997 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/08/30,10.66817728 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/10/09,10.597162508544995 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/10/01,13.703400000072516 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/09/22,15.540247919844155 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/11/10,14.931339583633324 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/10/25,10.353372918871669 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/11/09,18.94227575910915 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/02/06,21.77184999973752 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/04/10,12.600612530447489 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/04/03,14.54660000230749 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/03/25,13.92190833302834 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/04/02,16.065966669836676 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/04/26,10.0966124947525 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/06/29,10.347320835145842 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/07/07,12.126866666666666 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/08/08,15.639195833595842 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/07/23,17.094383333808356 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/09/10,10.249341674391664 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/08/25,12.358356262787508 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/09/02,8.007350000047497 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/08/24,12.216741669659166 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/09/26,9.7143875076175 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/10/11,11.17784375043 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/09/25,14.364525000167507 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/10/28,11.35478585421584 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/11/05,24.834941666809183 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/11/24,11.98289128307692 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/01/07,22.47810000000001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/02/01,22.451158333333343 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/03/04,11.282841666651672 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/03/29,4.880806037179481 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/03/28,4.050333446153838 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/05/08,22.948883340375826 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/05/07,5.107652657070832 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/04/30,20.76977500546501 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/04/29,7.628831083552501 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/04/22,3.370125000000003 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/05,20.905376668966667 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/08,2.542325000000005 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/05/24,14.429041666784167 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/09,16.757470839250846 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/04,13.651900006252518 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/22,13.39877500358001 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/11,14.540333335010846 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/10,14.866750002442512 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/03,13.3734249997375 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/02,11.462550768016682 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/25,11.372814166834178 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/24,17.147345078786685 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/11,3.3837714807692327 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/03,13.18050000841249 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/26,4.951308335350825 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/09/10,14.931266671451676 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/29,17.979566672476675 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/24,11.986760417829183 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/28,14.797020836398378 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/27,12.034420459999994 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/10/02,17.46540416543168 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/10/06,19.589593750590037 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/09/29,3.143675000000002 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/09/21,10.054202084435826 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/11/08,12.6242750003325 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/11/07,16.420233333190854 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/10/23,11.268265567942493 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/10/22,16.271658334915863 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/11/22,8.414779166974185 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/12/10,10.307797987435883 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/11/24,3.0968250000000035 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/02/03,10.618100000000013 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/03/07,13.631479167816677 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/04/09,26.562025000475025 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/04/08,25.1720166687992 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/04/01,32.4437333380283 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/09,9.818360416334173 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/04/27,14.985266666219175 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/11,25.40009167356668 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/10,12.103518476275944 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/06/05,6.1941249993775065 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/31,14.423315013572507 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/06/04,7.415981673434166 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/06/03,11.558636666844174 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/27,10.152404184501664 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/26,8.347492827260835 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/06,18.23172291690416 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/05,12.585372916714157 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/06/27,7.853543942791674 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/24,9.254595831310862 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/08/07,14.53501666685666 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/08/06,8.109041686079166 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/30,13.185070833333336 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/22,8.139710610200837 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/09/06,10.062462498895004 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/08/31,11.527012502752498 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/08/22,13.936525002300009 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/10/08,7.260690878550839 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/10/03,9.497333349848333 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/10/02,12.530108333285831 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/10/01,14.186750002062482 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/11,3.644000000000008 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/10,26.199200004599984 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/03,15.610100000474995 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/02,14.80650000225252 +Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/26,17.108208379428344 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2014/12/27,3.3726779307692256 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2014/12/27,3.3726779307692256 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/02/05,9.86362499967751 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/01/28,7.468653619607933 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/02/05,9.86362499967751 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/01/28,7.468653619607933 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/03/25,22.156224999570007 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/04/02,13.133225019194995 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/03/25,22.156224999570007 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/04/02,13.133225019194995 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/05/04,3.7303545000000025 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/05/04,3.7303545000000025 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/05/28,17.728616666951666 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/06/05,19.78975000016752 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/05/28,17.728616666951666 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/06/05,19.78975000016752 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/07,13.823475004720017 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/07,13.823475004720017 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/31,4.614766516405823 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/23,7.084872730289998 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/31,4.614766516405823 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/23,7.084872730289998 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/09/01,6.3144500239024985 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/09/01,6.3144500239024985 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/10/11,3.537240427435897 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/10/11,3.537240427435897 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/11/04,7.462303672380949 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/11/04,7.462303672380949 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/12/06,10.461312500465011 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/12/06,10.461312500465011 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/01/07,10.045904285761788 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/12/30,7.073831948461532 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/01/07,10.045904285761788 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/12/30,7.073831948461532 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/03/27,8.231302083098324 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/03/27,8.231302083098324 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/06/07,3.696934 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/06/07,3.696934 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/02,3.028269697101665 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/10,4.461902430256402 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/02,3.028269697101665 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/10,4.461902430256402 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/03,4.222168933550828 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/11,6.307793600000001 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/26,3.743963923846155 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/03,4.222168933550828 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/11,6.307793600000001 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/26,3.743963923846155 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/10/05,6.339206709047615 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/27,5.327845479999992 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/10/05,6.339206709047615 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/27,5.327845479999992 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/11/06,2.989916666034171 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/11/06,2.989916666034171 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/01/01,6.982619720695962 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/01/01,6.982619720695962 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/10,6.194770829498349 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/02,2.6107817500000023 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/10,6.194770829498349 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/02,2.6107817500000023 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/26,24.44116666666665 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/26,24.44116666666665 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/03/22,4.959198446153836 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/03/22,4.959198446153836 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/05/09,8.455788640264997 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/04/23,6.883121282307685 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/05/09,8.455788640264997 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/04/23,6.883121282307685 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/06/02,4.444149873579886 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/06/10,2.7160750000000053 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/06/02,4.444149873579886 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/06/10,2.7160750000000053 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/07/04,4.009976531884165 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/07/04,4.009976531884165 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/08/29,14.197008341578336 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/08/29,14.197008341578336 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/09/22,13.79647250119752 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/09/22,13.79647250119752 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/10/24,3.386372491152497 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/10/24,3.386372491152497 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/12/03,10.826375004647508 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/12/27,11.638139590805832 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/01/28,12.837858222380923 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/04/02,4.752116668009171 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/04/10,2.7677522500000054 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/03/25,7.705134615384599 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/05/28,8.110325000379992 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/07/07,3.48965302876833 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/06/21,8.436325038645 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/06/29,5.916145474798335 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/08/24,1.88815000038 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/09/01,6.000025000359996 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/11/04,8.768451521620838 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/12/06,3.6864377988461503 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/01/31,8.551629174126663 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/02/24,23.96396666666665 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/06/08,4.623433333500834 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/05/31,9.116950000217496 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/07/10,4.768403256714169 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/08/11,5.420225000664996 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/07/26,3.988434846979168 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/08/03,5.430100003012501 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/09/04,3.607900000000007 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/09/28,7.318404168311666 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/11/23,19.993116667019176 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/01/02,8.080652015809282 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/12/25,21.638841668426668 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/04/07,4.432069163771669 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/03/22,4.283172730000001 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/05/25,6.428808333548333 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/06/26,7.104328582831066 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/07/04,5.301401100769227 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/07/28,5.139675000382502 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/08/05,2.6433022500000023 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/10/08,6.357975001539988 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/09/22,5.558734100530001 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/11/09,3.32144706813187 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/12/03,9.13168319277943 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/02/05,14.31618750140502 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/01/28,6.319461191585954 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/02/21,4.217900000000001 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/04/10,10.277360421609169 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/04/02,3.1162886899999998 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/04/26,5.954386367442505 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/05/04,2.926075000000005 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/06/05,13.755200000200007 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/06/29,8.662887492092509 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/07/31,5.682552500047507 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/08/08,8.662250759130831 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/07/23,3.5185000000000035 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/09/09,4.062451407692302 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/08/24,8.935574999999995 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/10/11,5.546525000382494 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/09/25,10.29073750012249 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/11/07,14.7963727032383 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/10/27,3.530185392307692 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/01/31,6.90776772217204 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/02/24,6.750549998850009 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/03/04,7.82095286294127 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/02/24,5.022502181538453 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/03/28,18.484316666851647 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/05/07,15.722449999999997 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/04/29,3.682221981739167 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/10,4.256823531931901 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/05,3.338189408405829 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/05/24,6.001233334045839 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/08,5.65980910014499 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/09,3.631327270145 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/27,6.767683339463329 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/10,13.799954167261667 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/02,3.435675000000005 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/24,2.4112022499999988 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/26,5.129408336230835 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/08/11,3.792156819999997 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/08/03,3.636066832307685 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/26,3.4619294999999983 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/08/29,4.260890910264998 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/08/27,3.0775249999999987 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/10/02,5.962449994320008 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/11/10,4.224919230769232 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/11/07,2.80675225 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/10/30,4.0801015172466615 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/10/22,4.079440358653844 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/11/22,11.88892501719 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/12/01,6.991261121538454 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/11/23,3.734438679999998 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/12/25,5.76101666764416 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/02/08,8.140724998850015 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/02/03,4.756499999985002 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/02/03,13.366933333333334 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/02/20,10.32045337233084 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/03/07,4.169137957307686 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/04/08,4.548249431730764 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/04/27,10.243354166474166 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/05/10,15.286283343683344 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/05/02,7.286025000289998 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/04/24,4.720977249999993 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/06/03,4.608338575050002 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/05/26,2.938050094999996 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/07/05,9.645961333333338 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/07/24,5.818540000167501 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/08/06,4.135558761217943 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/08/30,3.233254500000001 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/08/22,3.6097750000000057 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/10/08,6.432624997975009 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/10/01,4.907577259999994 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/11/10,12.892775000199991 +Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/11/26,2.8943022500000044 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/01/05,8.125707578514167 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2014/12/27,9.213650221932504 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/01/05,8.125707578514167 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2014/12/27,9.213650221932504 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/02/22,22.689058333333342 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/02/22,22.689058333333342 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/05/04,5.467151234699165 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/05/04,5.467151234699165 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/06/06,26.53650834962335 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/05/29,21.18635833235336 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/06/06,26.53650834962335 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/05/29,21.18635833235336 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/06/22,10.929212120000004 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/07,5.510278797748339 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/06/22,10.929212120000004 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/07,5.510278797748339 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/09,9.59733485000001 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/31,12.265930300094986 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/24,6.694967426739166 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/01,14.212227782757768 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/23,7.650114805506669 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/09,9.59733485000001 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/31,12.265930300094986 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/24,6.694967426739166 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/01,14.212227782757768 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/23,7.650114805506669 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/25,3.83837708358084 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/09,16.767850002299998 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/02,14.689555610680838 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/25,3.83837708358084 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/09,16.767850002299998 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/02,14.689555610680838 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/26,11.85306666676168 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/10/11,14.526801515728325 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/10/04,22.600187500184983 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/26,11.85306666676168 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/10/11,14.526801515728325 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/10/04,22.600187500184983 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/04,25.607918342723348 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/04,25.607918342723348 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/29,9.827434788364442 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/21,13.070175000072474 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/29,9.827434788364442 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/21,13.070175000072474 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/01/07,9.465343755592505 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/12/30,10.50741319639194 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/01/07,9.465343755592505 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/12/30,10.50741319639194 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/02/09,14.658895834680836 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/02/09,14.658895834680836 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/03/03,12.106942961538454 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/03/03,12.106942961538454 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/05,10.35158708478583 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/03/27,11.721554655435837 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/05,10.35158708478583 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/03/27,11.721554655435837 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/07,16.629774999289975 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/28,5.108023885654166 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/21,11.274265849328334 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/07,16.629774999289975 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/28,5.108023885654166 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/21,11.274265849328334 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/23,11.872875000569984 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/07,14.837828035411656 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/31,11.393558333333331 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/23,11.872875000569984 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/07,14.837828035411656 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/31,11.393558333333331 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/24,22.741190417146655 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/07/09,3.107502250000004 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/07/02,9.734608333333329 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/23,6.053785606570837 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/24,22.741190417146655 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/07/09,3.107502250000004 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/07/02,9.734608333333329 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/23,6.053785606570837 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/11,10.934764583838328 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/02,19.110633335590823 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/10,5.810305769230762 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/03,2.9027022500000017 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/11,10.934764583838328 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/02,19.110633335590823 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/10,5.810305769230762 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/03,2.9027022500000017 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/03,24.93303333333337 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/27,22.67585227342833 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/11,11.78593335429083 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/04,12.642191666666667 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/26,8.955308333698325 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/03,24.93303333333337 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/27,22.67585227342833 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/11,11.78593335429083 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/04,12.642191666666667 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/26,8.955308333698325 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/10/05,8.155091666666666 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/28,18.024377275633345 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/10/06,14.177323496666638 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/27,8.552086369999992 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/10/05,8.155091666666666 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/28,18.024377275633345 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/10/06,14.177323496666638 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/27,8.552086369999992 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/11/06,6.1763249940300105 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/11/07,21.24199167145668 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/11/06,6.1763249940300105 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/11/07,21.24199167145668 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/12/08,8.73415832730584 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/12/08,8.73415832730584 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/01/02,23.208250000000003 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/01/01,11.911288638270005 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/01/02,23.208250000000003 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/01/01,11.911288638270005 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/02/19,18.31330000211501 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/02/27,11.287700000237496 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/02/19,18.31330000211501 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/02/27,11.287700000237496 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/08,7.4935125033349905 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/03/23,10.6093225001425 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/03/22,10.698378320959227 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/08,7.4935125033349905 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/03/23,10.6093225001425 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/03/22,10.698378320959227 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/24,8.243370417314154 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/23,19.74230833342832 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/24,8.243370417314154 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/23,19.74230833342832 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/11,18.196129166666665 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/10,7.535237500667498 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/03,19.23419167185915 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/11,18.196129166666665 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/10,7.535237500667498 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/03,19.23419167185915 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/04,7.628371682629164 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/05,20.474025002964986 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/26,8.090625000902492 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/04,7.628371682629164 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/05,20.474025002964986 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/26,8.090625000902492 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/29,15.369791666666668 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/08/06,13.515599999999989 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/29,15.369791666666668 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/08/06,13.515599999999989 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/08/30,19.85414166671417 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/07,5.632678310769234 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/08/30,19.85414166671417 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/07,5.632678310769234 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/08,13.170380420186662 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/01,14.541958335155842 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/22,5.499101823472504 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/23,26.85706000690003 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/08,13.170380420186662 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/01,14.541958335155842 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/22,5.499101823472504 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/23,26.85706000690003 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/24,13.448603670822486 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/11/10,14.124925010634994 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/25,34.004250000094984 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/24,13.448603670822486 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/11/10,14.124925010634994 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/25,34.004250000094984 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/12/04,5.994445828803349 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/12/03,10.064129174460824 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/12/28,23.96060833333333 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/02/06,22.529033333333334 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/02/05,22.69252500000001 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/04/02,5.329299999245007 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/03/26,10.021235424859164 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/03/25,12.019952780885264 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/05/05,6.600405308526672 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/05/29,12.085665153428344 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/05/28,6.530875013946666 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/07/07,25.026220000000013 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/06/30,22.608933338028347 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/06/21,5.443304164276669 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/07/08,24.4361750120225 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/06/29,12.583087500332486 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/06/22,13.54346666743167 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/08/09,11.880525000642486 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/08/24,19.58593214295213 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/09/01,13.154550000525012 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/08/25,20.33532499931003 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/11/04,3.114106750000002 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/12/07,8.245708361803326 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/02/01,11.190358333718336 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/03/04,22.348225000000006 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/03/05,21.75304166666668 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/04/30,6.055374996655007 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/05/08,16.70352500459999 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/06/08,14.556600006230015 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/06/01,8.730577499002518 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/06/09,4.841851550932501 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/05/31,18.492283332213347 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/07/10,9.42660416686667 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/07/03,5.010890915940001 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/06/25,3.322852310072496 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/08/11,13.73871249952501 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/08/04,20.201629166379185 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/07/26,16.304586666856654 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/08/03,22.112270833380823 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/07/27,8.335458333380833 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/09/05,9.227928030000005 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/09/04,5.719670843259996 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/09/28,12.961022083473326 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/09/21,26.79182000000001 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/11/08,10.223866667509158 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/10/23,14.911629171174171 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/11/23,28.297876946981948 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/03/07,12.382617423618326 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/02/20,21.919450000000012 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/04/07,13.441450014812496 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/03/22,14.369881249307491 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/05/02,8.981114166691663 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/05/25,5.582479163656672 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/05/26,24.041191671789147 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/07/05,22.358004166666674 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/06/26,8.421905320894169 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/07/04,11.17390833333334 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/08/06,8.185274368115271 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/07/28,11.167225016495005 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/08/05,14.719308335633338 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/09/07,6.247583324228344 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/08/30,3.41408974076923 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/10/09,12.782606317550004 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/09/23,7.140249989990012 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/10/01,4.827626764615379 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/09/22,18.66620833350084 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/11/10,15.270391676369163 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/10/25,6.8266749917250085 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/11/09,6.217166636666661 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/12/03,9.255352085045825 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/04/10,7.955749985735004 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/04/03,14.77903333708582 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/03/25,11.748673377605837 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/04/02,18.40549170581418 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/04/26,14.181450064825004 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/05/29,18.732883332658336 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/06/29,18.606693750095005 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/07/07,5.098500000072491 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/07/31,8.657420476324996 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/08/08,19.45041666709667 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/07/23,6.721075003982504 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/09/10,5.398183333548334 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/08/25,9.568175002890005 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/09/09,6.699804550932499 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/08/24,7.400434090000012 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/09/26,8.519724097999992 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/10/11,20.26997500234753 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/09/25,24.865775000285 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/11/04,6.77886168820917 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/10/28,8.328275035355007 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/11/05,20.030725002347506 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/11/24,3.740695133076916 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/02/24,8.594058333048345 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/02/24,24.120997916714167 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/04/05,15.748908335398344 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/03/29,14.27329755158594 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/05/08,3.4228840999999965 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/05/07,19.47774583470834 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/04/30,20.37108337576836 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/04/29,8.418920822670842 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/04/22,3.4935750000000074 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/06/05,10.425377270047507 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/05/31,6.256381181438214 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/05/24,9.5343250109925 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/09,2.8096733348116647 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/04,3.4286810568116657 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/06/22,13.736641666809184 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/11,21.184195708719443 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/10,28.642016669061675 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/03,5.505412727999993 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/02,14.265687498470012 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/06/25,13.754221221266658 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/06/24,11.83918337018084 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/07,7.208687487870006 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/26,20.421685606666664 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/11,16.444608343275846 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/03,14.323175004694992 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/09/10,22.29692500230001 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/29,15.50747500595997 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/24,3.918528003478332 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/28,17.568068940284977 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/27,15.354108359018335 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/02,21.56592499923501 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/06,5.679704657499879 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/09/21,19.596782578966653 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/08,16.055751513428312 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/07,11.411846966666657 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/30,7.515540929062499 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/23,5.3367831063408335 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/22,35.07946666676162 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/22,16.267477095645837 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/12/10,5.347636673589736 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/24,5.754367066699168 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/23,11.613864406947494 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/12/26,8.37957434930936 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/12/25,8.649258743221917 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/02/03,23.486291666666656 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/04/09,11.003522916951663 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/04/08,12.878408334483336 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/04/01,21.42467500301248 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/04/27,17.02782916685667 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/11,13.419945001844985 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/10,13.566333361900826 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/31,14.778283333025833 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/06/04,11.18404687808834 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/06/03,10.762241667094177 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/27,11.57520750090749 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/26,6.873883331420842 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/07/06,10.374983335290825 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/07/05,8.760118340255822 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/06/27,2.9853750000000083 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/08/06,21.073133333428338 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/07/30,7.3824500002175135 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/07/22,9.799702500162487 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/09/06,12.148246528205268 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/08/31,22.71874861628109 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/08/23,11.677127269999987 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/08/22,27.97612083333336 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/10/08,13.028996215000008 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/10/03,13.218100000095005 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/10/02,11.561799847999978 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/10/01,3.1824500000000087 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/11/10,9.90279166691167 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/11/03,16.91543334820584 +Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/11/26,22.571758333338337 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2014/12/27,4.046679172926664 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2014/12/27,4.046679172926664 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/02/05,22.407050000000005 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/02/05,22.407050000000005 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/02/22,23.552474999999998 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/02/22,23.552474999999998 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/04,4.436101535544163 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/04,4.436101535544163 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/06,18.238800006900014 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/28,6.6922249944000125 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/29,14.790133333428328 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/06,18.238800006900014 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/28,6.6922249944000125 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/29,14.790133333428328 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/29,13.506818750769998 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/22,21.412660606666677 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/07,16.468837500000017 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/29,13.506818750769998 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/22,21.412660606666677 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/07,16.468837500000017 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/09,17.953618940000002 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/31,17.889235608966686 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/24,10.959153030000005 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/01,14.746350013994997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/23,5.279940207635829 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/09,17.953618940000002 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/31,17.889235608966686 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/24,10.959153030000005 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/01,14.746350013994997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/23,5.279940207635829 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/25,10.188148750502494 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/09/09,15.07617499991498 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/09/02,10.54733333342833 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/25,10.188148750502494 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/09/09,15.07617499991498 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/09/02,10.54733333342833 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/10/11,21.44906667145668 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/10/11,21.44906667145668 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/04,28.16550000718497 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/05,2.793200000000003 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/04,28.16550000718497 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/05,2.793200000000003 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/29,14.503623043933612 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/12/07,2.8575272500000013 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/29,14.503623043933612 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/12/07,2.8575272500000013 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/12/30,5.1558750004349925 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/12/30,5.1558750004349925 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/05,8.145912502727489 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/03/27,11.007040021872497 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/05,8.145912502727489 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/03/27,11.007040021872497 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/07,14.403902153210838 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/28,19.47598333361835 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/21,12.699570851123324 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/07,14.403902153210838 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/28,19.47598333361835 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/21,12.699570851123324 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/23,10.682341667309164 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/07,14.517444230769234 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/31,10.928550001662504 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/23,10.682341667309164 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/07,14.517444230769234 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/31,10.928550001662504 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/24,18.17952499999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/07/02,15.642016684349176 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/23,6.755904181713326 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/24,18.17952499999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/07/02,15.642016684349176 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/23,6.755904181713326 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/11,17.15331666671418 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/02,19.928083333333344 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/10,9.949700000072497 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/11,17.15331666671418 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/02,19.928083333333344 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/10,9.949700000072497 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/03,22.022835000000025 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/27,3.588209090072496 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/11,5.973001367999997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/04,5.3171045801449965 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/26,15.24890833338084 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/03,22.022835000000025 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/27,3.588209090072496 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/11,5.973001367999997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/04,5.3171045801449965 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/26,15.24890833338084 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/10/05,26.79548333563337 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/28,19.60833560896669 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/10/06,12.813436971333331 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/27,10.557509089999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/10/05,26.79548333563337 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/28,19.60833560896669 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/10/06,12.813436971333331 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/27,10.557509089999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/11/06,14.94408750441752 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/11/07,3.083085923076924 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/11/06,14.94408750441752 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/11/07,3.083085923076924 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/12/08,7.720819681666661 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/12/08,7.720819681666661 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/10,24.02516666666665 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/10,24.02516666666665 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/26,11.922041666666663 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/27,3.924301547435894 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/26,11.922041666666663 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/27,3.924301547435894 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/08,13.153983348468344 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/03/22,16.536599999999993 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/08,13.153983348468344 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/03/22,16.536599999999993 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/24,10.740625000950008 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/23,4.349997729999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/24,10.740625000950008 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/23,4.349997729999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/11,23.01265833340584 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/02,11.706849995849998 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/10,11.71710417119917 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/03,11.689950023000002 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/11,23.01265833340584 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/02,11.706849995849998 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/10,11.71710417119917 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/03,11.689950023000002 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/04,20.52750000004748 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/05,4.864968189999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/26,6.796300001012496 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/04,20.52750000004748 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/05,4.864968189999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/26,6.796300001012496 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/29,20.541370833380803 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/06,4.231977799999993 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/29,20.541370833380803 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/06,4.231977799999993 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/30,6.422101514273338 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/07,8.868375000362493 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/22,10.633699999952482 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/30,6.422101514273338 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/07,8.868375000362493 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/22,10.633699999952482 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/22,17.797287499999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/30,2.925729500000003 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/23,4.346731819999993 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/22,17.797287499999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/30,2.925729500000003 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/23,4.346731819999993 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/10/24,13.912865840303317 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/11/10,5.45782206615384 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/10/25,6.395591816999989 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/10/24,13.912865840303317 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/11/10,5.45782206615384 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/10/25,6.395591816999989 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/12/04,6.299320829005849 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/12/03,4.289422730094992 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/01/05,24.02516666666665 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/12/28,22.476633333333343 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/02/05,21.77565833333335 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/04/02,4.274941666569179 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/03/26,10.020135425216663 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/03/25,6.445143391282048 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/05/04,6.7986249923700095 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/05/05,17.191025000169997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/05/29,11.725358335918337 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/05/28,2.737375000000005 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/07/07,9.140478786666677 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/06/30,17.30006666685668 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/06/21,23.233137501625 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/07/08,6.588725756739165 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/06/29,9.21247500032001 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/06/22,4.421681819999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/08/09,8.0625000003625 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/07/31,3.2637500000000057 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/08/24,24.18385416906165 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/09/01,10.437291667576654 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/08/25,5.585898671999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/11/04,21.660624999477523 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/02/08,3.995375000239996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/03/04,23.64040833333333 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/04/30,8.9251250685925 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/05/08,4.705006859999992 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/06/08,15.20526668276668 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/06/01,9.193340000522518 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/06/09,6.1313500004275 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/05/31,5.843771214758334 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/07/10,10.446277084728358 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/07/03,3.931277274999993 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/06/25,4.531566174615377 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/08/11,20.73125000006999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/08/04,11.893749998655004 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/07/26,16.353774999714997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/08/03,12.829600000409991 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/07/27,20.24257500237249 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/09/05,2.802459089999998 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/09/21,7.392631820144995 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/11/08,9.45312417584416 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/10/23,11.439129822111054 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/11/23,6.097439671999997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/01/02,9.793177494719998 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/03/07,8.266050000479991 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/04/07,14.900375014109994 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/03/22,22.62705835642833 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/05/02,12.5166000006475 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/05/25,8.13692000056751 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/05/26,5.700018189999993 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/07/05,19.301841676009165 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/06/26,14.999450013182509 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/08/06,8.765176111491112 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/07/28,14.129625000047508 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/08/05,3.920551379999992 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/08/30,9.093434089999992 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/10/09,8.241511556016663 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/10/01,2.3930810000000005 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/09/22,16.531875000099987 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/11/10,20.002966692299168 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/10/25,6.806224991910009 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/11/09,11.685204559999988 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/12/03,12.832810419851688 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/02/05,14.044808333285827 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/02/06,21.750616666666684 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/04/10,7.680374997942502 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/04/03,13.027308336830831 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/03/25,12.6440750090675 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/04/02,11.9133000369475 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/04/26,5.307321273866073 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/05/29,12.847149999569988 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/06/29,20.423975000072502 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/07/07,13.63757500008001 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/08/08,9.83229166666666 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/07/23,4.994650000289987 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/10,15.022683335633332 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/08/25,18.45130833276081 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/09,11.35963333352332 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/02,6.065504520072498 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/08/24,17.946741668966673 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/26,9.095527270845002 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/10/11,9.580450004672487 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/25,11.613750002372496 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/11/04,8.977731084377497 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/11/05,3.538797299999997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/11/24,4.223842229230766 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/01/07,22.274983333333346 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/02/24,11.9213999996775 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/04/05,4.464622729999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/03/29,5.2790456484615325 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/05/08,4.384692282999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/05/07,6.056083719561668 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/04/30,4.398099999999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/04/29,6.614324255793331 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/04/22,2.750397749999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/06/05,5.688947730145 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/05/31,5.624402275457503 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/05/24,8.027160608593315 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/09,6.18170568 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/04,3.950368179999992 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/11,3.2046363599999963 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/10,13.232866666809173 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/03,3.7074621233333263 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/02,7.497093944304166 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/06/25,4.107649999999992 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/06/24,5.315937514155833 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/07,3.268300016957498 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/26,9.707225015327504 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/11,3.2092750000950026 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/03,14.816733333333342 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/27,11.770958333333324 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/09/10,8.71252500036 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/29,8.105675001447501 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/24,3.0840068399999963 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/28,10.028244696739163 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/27,4.356111249999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/02,10.861083333428333 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/06,17.121108333785823 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/09/29,4.690005253846151 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/09/21,6.303722729999996 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/08,5.495184786666661 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/07,8.508846976666664 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/30,3.926075000047498 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/23,9.43634168046666 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/22,4.22894169833333 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/22,16.1155437600125 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/12/10,5.151714196153836 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/24,6.753073873745831 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/23,3.9704022499999994 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/02/20,23.60554166666666 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/03/07,8.614575000384997 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/02/27,4.306399774038463 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/02/20,16.45563333369333 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/04/09,6.600308326666661 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/04/08,7.97247726999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/04/01,7.680877289999989 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/04/27,18.276591666666683 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/05/10,16.942716673191672 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/05/31,16.02970001370749 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/06/11,12.664824999354988 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/06/04,19.70925833793336 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/06/03,8.82894999816001 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/05/27,22.407425002300005 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/05/26,12.952060006070017 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/06,10.652966669061676 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/05,3.741122730072497 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/24,19.34330833295081 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/07,7.187539532307685 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/06,12.930891666666671 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/30,3.496527943333333 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/22,23.090733337670866 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/09/06,12.227094693453322 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/31,12.480941286714158 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/30,10.822825000000002 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/23,12.42473825666667 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/22,3.984562876739163 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/08,5.804316673333334 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/03,4.596259090289994 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/02,8.162334699666658 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/01,5.76026817999999 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/11/10,19.373695833408306 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/11/03,6.390208335483327 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/25,22.426991667051677 +Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/11/26,6.560733338125826 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/01/05,2.8571295000000028 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2014/12/27,8.974874993274993 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/01/05,2.8571295000000028 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2014/12/27,8.974874993274993 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/04,10.198975000714997 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/04,10.198975000714997 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/06/06,12.034775013967508 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/28,10.773306250000012 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/29,4.69033724176821 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/06/06,12.034775013967508 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/28,10.773306250000012 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/29,4.69033724176821 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/08,9.52695625016502 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/06/22,5.575884845833331 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/07,4.022700000000004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/08,9.52695625016502 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/06/22,5.575884845833331 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/07,4.022700000000004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/09,7.063896976666667 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/31,8.621768395577499 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/24,5.451591666786672 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/01,6.994650000072503 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/23,7.61349727533501 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/09,7.063896976666667 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/31,8.621768395577499 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/24,5.451591666786672 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/01,6.994650000072503 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/23,7.61349727533501 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/25,3.926273017435896 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/02,8.40729473333333 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/25,3.926273017435896 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/02,8.40729473333333 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/26,12.643465834940846 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/10/11,19.323338391538435 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/10/04,19.57151666700917 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/25,6.499165912217501 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/26,12.643465834940846 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/10/11,19.323338391538435 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/10/04,19.57151666700917 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/25,6.499165912217501 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/04,8.612215141666656 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/05,5.047529169639165 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/04,8.612215141666656 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/05,5.047529169639165 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/29,5.719174999785006 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/21,10.165800000564996 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/29,5.719174999785006 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/21,10.165800000564996 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/01/07,9.1236250083475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/12/30,10.887531750512808 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/01/07,9.1236250083475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/12/30,10.887531750512808 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/03/03,11.530838639030003 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/03/03,11.530838639030003 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/05,9.272799627696658 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/03/27,14.382003674570006 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/05,9.272799627696658 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/03/27,14.382003674570006 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/07,15.33237500474751 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/28,6.706579158486677 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/21,12.036223463538349 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/07,15.33237500474751 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/28,6.706579158486677 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/21,12.036223463538349 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/23,10.522618751762494 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/31,21.51886667601418 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/23,10.522618751762494 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/31,21.51886667601418 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/06/24,7.884900000000005 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/06/23,13.641512504790018 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/06/24,7.884900000000005 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/06/23,13.641512504790018 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/11,5.223868180072507 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/02,5.0844657193108365 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/07/26,8.200750003719994 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/10,6.139960140769224 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/03,11.717808333333338 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/11,5.223868180072507 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/02,5.0844657193108365 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/07/26,8.200750003719994 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/10,6.139960140769224 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/03,11.717808333333338 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/03,4.728838630217495 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/27,4.265695747435895 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/11,4.6963090901449975 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/04,8.587478763333342 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/26,17.067266671314176 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/03,4.728838630217495 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/27,4.265695747435895 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/11,4.6963090901449975 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/04,8.587478763333342 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/26,17.067266671314176 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/10/05,3.573899236884162 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/28,8.886969696666673 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/10/06,3.380487575000001 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/27,4.917443269999997 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/10/05,3.573899236884162 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/28,8.886969696666673 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/10/06,3.380487575000001 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/27,4.917443269999997 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/11/06,6.037224995810008 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/11/07,6.700857662307686 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/11/06,6.037224995810008 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/11/07,6.700857662307686 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/12/09,16.485975000142478 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/12/09,16.485975000142478 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/01/01,5.245248715432108 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/01/01,5.245248715432108 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/10,6.55354999825251 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/03,8.714566251057498 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/10,6.55354999825251 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/03,8.714566251057498 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/26,10.044300000000025 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/19,9.974562127549172 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/27,14.87806742338081 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/26,10.044300000000025 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/19,9.974562127549172 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/27,14.87806742338081 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/08,10.752918749167511 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/03/23,10.0503500066475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/03/22,2.666725000000004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/08,10.752918749167511 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/03/23,10.0503500066475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/03/22,2.666725000000004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/24,9.5772250009475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/23,14.49419467338081 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/24,9.5772250009475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/23,14.49419467338081 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/11,8.6151943832225 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/02,5.026000000145004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/10,17.631116669066675 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/03,7.798384859674162 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/11,8.6151943832225 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/02,5.026000000145004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/10,17.631116669066675 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/03,7.798384859674162 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/04,11.152612500002512 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/27,9.88695403075278 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/05,13.133400000427496 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/26,3.066550000000004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/04,11.152612500002512 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/27,9.88695403075278 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/05,13.133400000427496 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/26,3.066550000000004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/29,12.15799166666667 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/06,3.1566499999999995 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/29,12.15799166666667 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/06,3.1566499999999995 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/30,6.333234090047507 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/07,3.2615272500000065 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/22,6.406101896973321 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/30,6.333234090047507 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/07,3.2615272500000065 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/22,6.406101896973321 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/08,7.793447735095001 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/01,7.480600011835006 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/22,3.7825413200590425 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/30,2.710350000000005 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/23,15.659660613333296 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/08,7.793447735095001 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/01,7.480600011835006 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/22,3.7825413200590425 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/30,2.710350000000005 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/23,15.659660613333296 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/11/10,21.573491674279158 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/25,5.360477916666662 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/11/10,21.573491674279158 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/25,5.360477916666662 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/12/04,6.1100249951800105 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/04/11,7.833324999892511 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/04/02,11.192675003520012 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/03/26,10.89990792264167 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/03/25,7.444173717948709 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/05/29,8.754011867687773 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/05/28,11.66348598836167 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/07/07,14.721191669161662 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/06/30,5.58330000613 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/06/21,10.957322923106677 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/07/08,7.135850000332491 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/06/29,10.661299999965006 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/08/09,3.739656750000004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/09/02,8.239604168341671 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/08/24,16.313904166856652 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/08/25,3.927553086666664 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/11/04,8.453425025400001 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/12/07,14.346006251225036 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/02/08,4.15216102307692 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/03/05,9.454400892427683 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/05/08,3.790566693550829 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/06/08,5.064552779642495 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/06/01,12.293520833048358 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/06/09,7.510458334805818 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/05/31,20.779768747420025 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/10,8.517024999060027 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/03,10.809197719999997 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/02,7.107279924999992 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/06/25,3.5357500000000037 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/08/11,14.0782800459975 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/26,12.925676250047491 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/08/03,14.862762500380002 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/27,3.18160225 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/05,3.6445721153333297 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/04,4.790556820072493 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/28,6.953050000272503 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/21,11.5292090900475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/29,6.27049633487738 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/10/23,11.12107625138 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/11/23,6.187023532307688 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/01/02,11.002037503180016 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/03/07,16.64373194721943 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/04/07,15.43226666657166 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/03/22,17.919556951296926 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/05/02,6.427072937191664 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/04/23,7.486841666521668 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/05/25,2.6510250005475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/05/26,9.381260422856665 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/07/05,9.19985948907834 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/06/26,5.313228334190838 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/07/04,13.651468711538444 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/08/06,14.408846105714264 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/07/28,4.861558332755837 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/08/05,11.261595084153344 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/08/30,4.293274999999995 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/10/09,6.612724993845011 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/10/01,3.0529660346153844 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/09/22,9.612175003064984 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/11/10,9.17940064580928 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/10/25,16.085629181304157 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/11/09,2.82386945 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/12/03,3.651325000217507 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/12/11,18.945316667499164 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/02/06,19.87951458348584 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/01/28,21.75304166666668 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/03/10,4.366920316346156 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/04/10,14.547422604243334 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/04/03,9.40662542019166 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/03/25,11.061024999197503 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/04/02,8.30800000004749 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/04/26,5.618085411199165 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/06/06,11.72914166749668 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/05/29,20.81805000069252 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/06/29,9.150563194776945 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/07/07,4.663873489137494 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/08/09,10.388120832665834 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/07/31,15.724625029900016 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/08/08,3.0883772500475004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/09/10,12.6801500021 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/08/25,13.360987500142514 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/09/02,3.0114442307692317 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/08/24,8.622004169541656 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/09/26,3.969742288072497 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/10/11,2.681790989999998 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/09/25,11.618789396666672 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/11/04,7.335865056597501 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/10/28,11.960127082193344 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/11/05,7.815709090000001 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/11/24,4.278434100512815 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/01/08,5.525702399239359 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/02/09,16.457324999999994 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/02/24,11.357607530827496 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/03/04,21.920716666666685 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/02/24,11.4613625096475 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/04/05,26.57435001854247 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/03/29,11.793037413211737 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/05/08,9.459359097347509 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/04/30,9.344024999999991 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/04/29,6.694115636004171 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/04/22,9.550579837435892 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/06/05,10.071353786666672 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/05/31,10.662554166999168 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/05/24,25.461433333333343 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/09,9.03387651666667 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/04,7.952738640144997 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/06/22,12.476414172714168 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/11,11.917461359999978 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/10,3.7100182099999968 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/03,12.053816671456666 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/02,32.21043749998501 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/06/25,9.647124950145004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/06/24,5.655323496259164 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/07,7.0028749994975055 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/26,4.798637511780838 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/11,3.792917430769225 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/03,4.963415153768329 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/26,4.461758338865831 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/09/10,3.232406056811665 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/29,9.325681816666672 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/24,15.574999999984998 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/28,4.838996198974357 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/27,3.647275000000004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/02,10.357409584900845 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/06,4.097461508739164 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/09/29,2.772519230769232 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/09/21,6.112434991999994 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/05,15.086462501677511 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/08,5.734179582307686 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/07,3.981092610333331 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/30,4.061999999999997 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/23,20.343845833213344 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/22,4.80922806833333 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/22,12.402880906526672 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/12/10,5.7118989948717855 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/24,7.016900004355824 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/23,10.38864997027763 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/12/26,12.078930993988642 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/12/25,7.653388273076921 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/03/07,15.02618333392333 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/02/27,8.853075000072495 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/03/26,9.033489590615837 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/04/09,13.187247916999176 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/04/08,12.5072250003325 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/04/01,27.46778334281831 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/11,10.46491439 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/10,5.053164036412497 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/06/05,14.18653458460584 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/31,14.87806916679417 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/06/04,15.606243194295832 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/06/03,4.942578930764162 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/27,12.195609584235832 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/26,9.468354166211675 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/07/06,8.86672728 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/07/05,11.2600436120236 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/08/07,2.921975000000005 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/08/06,11.337110606666664 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/07/30,11.06893958969583 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/07/22,2.4910750000000035 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/09/06,4.029149999905004 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/09/08,8.332034615384611 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/08/31,2.927949125 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/08/22,11.33601211666666 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/10/08,11.385221066478325 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/10/03,4.182861329999998 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/09/28,3.256033491410255 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/10/02,7.388637856739157 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/10/01,4.87194962307691 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/11/03,2.9927404999999982 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/11/02,21.352758333473343 +Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/11/26,7.659133349433327 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/01/05,3.4511384307692285 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/01/05,3.4511384307692285 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/05/05,8.37736666857917 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/04/27,5.871555769230763 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/05/05,8.37736666857917 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/04/27,5.871555769230763 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/06/06,7.378253273857025 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/05/29,8.402809102896661 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/06/06,7.378253273857025 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/05/29,8.402809102896661 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/06/22,3.63500702166666 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/06/22,3.63500702166666 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/08/09,4.7074846963333234 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/07/24,3.858970307999993 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/08/09,4.7074846963333234 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/07/24,3.858970307999993 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/08/25,3.343850528205126 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/09/02,7.464150000362498 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/08/25,3.343850528205126 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/09/02,7.464150000362498 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/09/26,10.585550000855 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/09/26,10.585550000855 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/04,8.305537098333323 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/04,8.305537098333323 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/29,3.1897886300000007 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/21,20.608008333918328 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/29,3.1897886300000007 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/21,20.608008333918328 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/01/24,21.919450000000012 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/01/24,21.919450000000012 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/04/05,4.99128334550583 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/04/05,4.99128334550583 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/07,5.747354166554172 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/04/21,7.011579166364169 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/07,5.747354166554172 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/04/21,7.011579166364169 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/23,15.489716250527495 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/31,3.092477250047501 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/23,15.489716250527495 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/31,3.092477250047501 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/06/24,2.991009865579997 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/07/02,8.467300000217497 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/06/24,2.991009865579997 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/07/02,8.467300000217497 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/11,3.321875000262502 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/03,7.195966671456668 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/11,3.321875000262502 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/03,7.195966671456668 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/27,7.220240910167506 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/09/04,3.899593099999994 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/27,7.220240910167506 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/09/04,3.899593099999994 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/09/28,2.9616271216233327 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/10/06,3.4819807448717963 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/09/28,2.9616271216233327 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/10/06,3.4819807448717963 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/11/07,5.129969378205126 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/11/07,5.129969378205126 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/01/02,11.23669166666668 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/01/02,11.23669166666668 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/02/27,2.7093326573076912 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/02/27,2.7093326573076912 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/03/23,13.097331252177495 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/03/23,13.097331252177495 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/04/24,9.152183333023338 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/04/24,9.152183333023338 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/06/03,2.5707750000000003 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/06/03,2.5707750000000003 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/06/27,5.936556255705001 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/07/05,3.7510870163461534 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/06/27,5.936556255705001 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/07/05,3.7510870163461534 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/07/29,6.062106820410003 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/08/06,5.1712841000474885 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/07/29,6.062106820410003 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/08/06,5.1712841000474885 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/08/30,9.861743180000005 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/08/30,9.861743180000005 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/10/01,3.9033166673091695 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/09/23,6.827412271999992 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/10/01,3.9033166673091695 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/09/23,6.827412271999992 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/11/10,3.3279340000724984 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/10/25,2.78489535 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/11/10,3.3279340000724984 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/10/25,2.78489535 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/01/05,24.02516666666665 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/02/06,22.47810000000001 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/05/05,9.409901368072486 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/05/29,3.41698787746416 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/06/30,9.612983334530838 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/07/08,3.352887620769227 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/06/22,4.585500000692496 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/09/02,3.910740540860002 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/12/07,7.841752087323331 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/01/08,24.44116666666665 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/05/08,2.790078639999996 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/07/03,6.3482681800725 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/06/25,2.5399750000000045 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/07/27,4.564029381538458 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/09/05,12.643218180119996 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/09/21,2.9924074247391643 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/09/29,3.6770628867391633 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/11/08,11.231116666666669 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/10/23,10.69363785720034 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/05/02,7.826531256735013 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/05/26,6.388051513525839 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/07/05,13.394687500427503 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/08/06,8.442766669156667 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/08/22,3.4987704505799955 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/08/30,3.48219423076923 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/10/09,5.535274997115006 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/09/23,7.50583335277833 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/11/10,5.075922730214997 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/10/25,7.074726139399998 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/01/29,23.64040833333333 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/03/02,10.547616666429183 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/04/03,11.500940005840002 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/06/06,14.734215000000004 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/08/09,16.902799999617503 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/07/24,7.658187501699997 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/09/10,8.588108338435823 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/09/02,3.435250000000001 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/09/26,3.746622719999996 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/10/28,7.640705942380946 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/11/24,6.9793342307692265 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/03/29,6.071714190384605 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/05/08,4.735742426956664 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/04/30,5.156881822300001 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/04/22,3.761925000000007 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/06/05,3.771394713478328 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/05/31,3.425000002107498 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/05/24,4.00596060681166 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/07/09,3.4133999999999944 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/07/04,4.340995449999992 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/07/11,3.5345794033333267 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/07/03,3.930850000455001 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/06/25,3.845580035576922 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/08/07,3.716016666869169 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/09/10,7.477109091787506 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/08/24,4.846914779230002 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/08/28,3.8750365307692296 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/09/29,4.295984099999995 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/09/21,4.242356820144996 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/10/31,6.553024992800012 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/11/08,5.257050588205125 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/10/23,12.568766666666654 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/11/22,9.827137501029997 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/12/10,3.868557580769231 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/11/24,8.455586747715834 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/01/11,13.842383333333338 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/12/26,4.812847423076917 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/02/20,19.04716666666669 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/03/26,7.779066665954183 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/04/09,16.428132570072464 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/04/01,16.98506042737917 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/05/09,11.963258384385837 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/05/11,4.895458333500833 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/06/05,12.615450004399996 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/05/31,15.397554166904154 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/06/04,12.150703795344162 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/05/27,6.049191667291671 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/07/06,6.941166671224178 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/08/07,2.8630522500000044 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/07/30,3.177550000000001 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/07/22,7.536158335778333 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/09/06,3.743164998072497 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/09/01,3.8946128867391616 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/09/08,7.704650000144997 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/08/31,3.1982469816666668 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/08/23,4.22065682717948 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/10/03,22.78154166580418 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/09/28,4.631264285714281 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/10/02,2.997375000000005 +Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/11/03,2.586122324999999 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/01/05,16.429466666651663 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/01/05,16.429466666651663 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/05/05,10.445578662114988 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/05/05,10.445578662114988 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/06/06,4.771722033765238 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/05/29,4.896675000237498 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/06/06,4.771722033765238 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/05/29,4.896675000237498 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/06/22,6.106787500284996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/06/22,6.106787500284996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/09,3.397708337101663 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/07/24,4.590033333930832 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/01,4.359706440256402 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/09,3.397708337101663 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/07/24,4.590033333930832 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/01,4.359706440256402 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/25,3.1689651468116664 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/09/02,17.942491666666648 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/25,3.1689651468116664 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/09/02,17.942491666666648 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/10/04,14.432424999754994 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/10/04,14.432424999754994 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/11/29,2.734421803000001 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/11/29,2.734421803000001 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/04/05,8.32739959012833 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/04/05,8.32739959012833 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/07,8.610220306879173 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/04/21,6.941463643062503 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/07,8.610220306879173 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/04/21,6.941463643062503 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/23,11.08880000231 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/31,9.868048493234156 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/23,11.08880000231 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/31,9.868048493234156 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/06/24,14.963691685356686 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/07/02,7.192505700091665 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/06/24,14.963691685356686 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/07/02,7.192505700091665 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/11,3.5852590907249926 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/03,3.741804590072496 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/11,3.5852590907249926 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/03,3.741804590072496 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/27,3.1223127251016622 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/09/04,12.292700000094996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/27,3.1223127251016622 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/09/04,12.292700000094996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/09/28,2.770902874739166 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/10/06,2.909501847435896 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/09/28,2.770902874739166 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/10/06,2.909501847435896 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/11/07,3.8791340512820502 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/11/07,3.8791340512820502 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/02/27,10.466041669224172 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/02/27,10.466041669224172 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/04/24,3.3561382623099973 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/04/24,3.3561382623099973 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/06/11,10.692250001245002 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/06/11,10.692250001245002 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/06/27,10.94740833884335 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/07/05,5.4482249999999945 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/06/27,10.94740833884335 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/07/05,5.4482249999999945 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/07/29,4.568395459637503 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/08/06,17.188333332888337 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/07/29,4.568395459637503 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/08/06,17.188333332888337 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/08/30,9.3226700001425 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/08/30,9.3226700001425 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/10/01,6.467030309999996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/09/23,14.560124999999973 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/10/01,6.467030309999996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/09/23,14.560124999999973 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/11/10,13.11832499999998 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/10/25,4.167632626666665 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/11/10,13.11832499999998 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/10/25,4.167632626666665 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/04/11,10.82713333268834 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/05/05,5.723458337980837 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/05/29,6.2534090903375015 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/06/30,7.195500005054999 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/07/08,5.210156819999998 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/08/09,5.727959854270833 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/01/08,24.44116666666665 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/03/05,21.75304166666668 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/05/08,2.7865840899999976 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/06/09,6.44135314656571 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/07/03,6.9169000000724985 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/06/25,6.433754213076915 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/07/27,4.072050000409998 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/09/05,8.892000001577493 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/09/21,9.80201060340583 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/09/29,4.774851147243334 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/10/23,11.41222709965584 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/02/20,21.66638333333335 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/05/02,8.926288675307497 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/05/26,6.517033333380834 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/07/05,12.711091671724176 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/08/06,2.999303783913329 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/08/30,3.256625000000001 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/10/09,3.6464623732023775 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/09/23,10.77214708361832 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/11/10,10.396692337262769 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/10/25,12.149678989722736 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/01/29,22.05074166666668 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/03/02,11.971025000584996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/04/03,12.986805379939163 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/06/06,18.64504999923502 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/08/09,14.75894958755082 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/07/24,17.97162083295082 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/09/10,17.42343333333332 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/09/02,2.799875000000005 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/09/26,5.44275378666667 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/10/28,11.12532694779444 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/11/05,2.530100000000003 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/11/24,6.120610057948715 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/01/24,21.88613333333335 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/03/29,5.954968586923069 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/05/08,4.089880923217496 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/04/30,5.071516673661664 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/04/22,3.540650000000007 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/06/05,2.6370628768841646 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/05/31,4.283591667766666 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/05/24,5.954125003670836 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/07/04,3.702327270434996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/06/22,16.578854166284167 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/07/11,3.4083515170291667 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/07/03,5.302925000095006 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/06/25,3.9742633499999953 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/09/10,3.462816514811662 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/08/24,3.566007299999995 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/08/28,3.431643189999994 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/09/21,6.175775000647506 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/11/05,24.44116666666665 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/10/31,10.463921965870831 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/11/08,2.7824609274358965 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/11/22,9.056377087220827 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/12/10,3.1273480214102567 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/11/24,4.295325000264996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/12/26,3.4526363798076942 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/02/03,22.000250000000012 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/03/26,11.811199999572514 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/04/09,3.0079806507692317 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/04/01,12.426372924554157 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/05/09,16.0765750014 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/05/11,5.350833333840829 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/06/05,21.41906667131418 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/05/31,9.88290000002249 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/06/04,10.366883339145817 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/05/27,7.974983333623332 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/07/06,5.310751513863338 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/08/07,3.488354500000004 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/07/30,4.745321215362496 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/07/22,4.238250000072497 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/09/06,5.0963000026575 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/09/01,3.245693785029164 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/08/31,3.72001289666666 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/10/03,4.027563630289993 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/09/28,3.247513639999996 +DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/11/03,3.0137432499999965 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/01/05,5.579024157692297 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2014/12/27,3.630250000000008 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/01/05,5.579024157692297 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2014/12/27,3.630250000000008 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/02/06,23.552474999999998 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/01/28,5.406233837098783 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/02/06,23.552474999999998 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/01/28,5.406233837098783 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/04/02,19.539533335538344 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/04/02,19.539533335538344 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/05,6.39597498662501 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/04/26,3.48612360129 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/04,2.711202250000002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/05,6.39597498662501 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/04/26,3.48612360129 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/04,2.711202250000002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/06,7.917593957691666 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/28,9.56313458341584 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/05,3.023775000000005 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/29,5.641598188995 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/06,7.917593957691666 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/28,9.56313458341584 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/05,3.023775000000005 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/29,5.641598188995 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/22,5.923475000072503 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/22,5.923475000072503 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/09,2.343488645000001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/31,6.310667086858336 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/24,2.923619712101663 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/01,5.023838323076917 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/23,4.11317350768083 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/09,2.343488645000001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/31,6.310667086858336 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/24,2.923619712101663 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/01,5.023838323076917 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/23,4.11317350768083 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/25,4.335700005289995 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/09,8.463864999787498 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/02,10.39040833664083 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/25,4.335700005289995 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/09,8.463864999787498 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/02,10.39040833664083 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/26,7.916816656674169 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/10/11,3.3642399448717955 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/10/04,17.99142500040001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/26,7.916816656674169 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/10/11,3.3642399448717955 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/10/04,17.99142500040001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/04,3.719641817289998 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/05,6.437252061538451 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/04,3.719641817289998 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/05,6.437252061538451 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/12/07,2.869075000000004 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/21,12.628783333533327 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/12/07,2.869075000000004 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/21,12.628783333533327 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/01/07,6.352745870703328 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/01/07,6.352745870703328 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/02/09,2.696175000000003 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/02/09,2.696175000000003 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/03/03,6.188128182307682 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/03/03,6.188128182307682 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/04/05,7.445039591805831 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/03/27,3.745247227596904 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/04/05,7.445039591805831 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/03/27,3.745247227596904 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/07,11.539139663848337 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/04/21,7.512130300299155 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/07,11.539139663848337 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/04/21,7.512130300299155 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/23,4.569179861348618 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/07,7.389993188563332 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/31,4.678640700256404 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/23,4.569179861348618 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/07,7.389993188563332 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/31,4.678640700256404 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/24,3.347210458434994 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/07/09,5.069525000217492 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/07/02,2.752550000000003 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/23,9.13679166773165 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/24,3.347210458434994 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/07/09,5.069525000217492 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/07/02,2.752550000000003 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/23,9.13679166773165 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/11,3.480702290289994 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/02,3.486905333405826 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/03,5.481025010167494 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/11,3.480702290289994 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/02,3.486905333405826 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/03,5.481025010167494 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/03,3.070290147536663 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/27,3.3011310617391647 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/11,2.619860180000002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/04,4.945361009743584 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/26,12.406783333733326 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/03,3.070290147536663 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/27,3.3011310617391647 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/11,2.619860180000002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/04,4.945361009743584 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/26,12.406783333733326 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/10/05,2.918743180217497 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/28,3.9679477301449975 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/10/06,4.349961983333332 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/27,3.4037443307692272 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/10/05,2.918743180217497 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/28,3.9679477301449975 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/10/06,4.349961983333332 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/27,3.4037443307692272 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/11/06,6.542624993015011 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/11/07,4.627287274999992 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/11/06,6.542624993015011 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/11/07,4.627287274999992 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/12/09,7.12348847187595 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/12/09,7.12348847187595 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/10,6.649350000200009 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/03,13.480708333333324 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/10,6.649350000200009 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/03,13.480708333333324 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/26,24.44116666666665 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/19,8.759127087750834 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/27,3.672982831923077 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/26,24.44116666666665 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/19,8.759127087750834 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/27,3.672982831923077 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/08,14.343625094220004 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/03/23,10.398512506457498 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/03/22,5.466819230769222 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/08,14.343625094220004 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/03/23,10.398512506457498 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/03/22,5.466819230769222 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/24,7.359593747639996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/23,4.381876816346149 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/24,7.359593747639996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/23,4.381876816346149 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/11,5.157247851408572 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/10,4.8542575786958295 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/03,3.712127250047502 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/11,5.157247851408572 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/10,4.8542575786958295 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/03,3.712127250047502 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/04,11.92244999914001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/05,8.905257513846156 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/26,13.376625002372506 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/04,11.92244999914001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/05,8.905257513846156 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/26,13.376625002372506 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/29,6.766865532983331 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/06,14.54625000030998 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/29,6.766865532983331 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/06,14.54625000030998 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/30,4.075220460482499 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/09/07,9.99510797641025 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/22,4.234084099999996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/30,4.075220460482499 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/09/07,9.99510797641025 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/22,4.234084099999996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/10/01,9.47903333371833 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/09/23,9.942875696666666 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/10/01,9.47903333371833 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/09/23,9.942875696666666 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/11/10,5.746937123333327 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/10/25,4.401990050961532 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/11/10,5.746937123333327 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/10/25,4.401990050961532 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/12/04,4.489250000500011 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/12/03,3.6597500000000087 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/01/28,6.194957732144999 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/02/05,5.250854168039163 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/04/02,4.373477651031669 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/03/26,10.99809583821083 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/03/25,5.534363686201348 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/05/05,3.615151140769227 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/05/29,3.531495460434996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/05/28,2.473525000000004 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/07/07,8.430033332998335 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/06/30,6.1846250002375 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/07/08,4.655388323076912 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/06/29,20.98738333347584 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/06/22,13.52535833333333 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/08/09,8.379675000842502 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/09/02,2.1709500011299987 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/08/24,1.5877681806425006 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/09/01,3.6212750000000087 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/11/04,8.526424999739994 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/12/07,8.959230835208327 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/01/31,7.6737600025399955 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/02/08,4.558929901923068 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/02/01,11.7094000001925 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/03/05,8.628638461730953 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/05/08,2.9693460480769223 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/06/08,3.4702575741308284 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/06/01,15.700897500912513 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/05/31,17.98247500011501 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/07/10,8.293825002357506 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/07/03,5.165481819999999 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/06/25,3.1551750000000056 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/08/11,5.116608343300839 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/07/26,10.194522971456928 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/08/03,5.936200000482501 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/07/27,4.869744167094176 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/09/05,2.9020696966666697 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/09/04,2.5004250000000066 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/09/28,7.017699992139999 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/09/21,4.450868180047499 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/11/08,13.083808333333325 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/10/23,2.163825000217498 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/11/23,3.231300000262497 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/01/02,7.594162762380944 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/03/07,7.031711548461531 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/02/20,6.693939799911082 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/04/07,4.615747856161905 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/03/22,4.272579550000001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/05/02,6.922658357643342 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/05/25,9.502129167869157 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/05/26,4.820264311025635 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/07/05,5.924759854003335 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/06/26,3.796802497172505 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/07/04,4.587104364546896 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/08/06,3.659684090217497 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/07/28,5.563390923027505 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/08/05,3.958159090384996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/07/29,5.466197677179481 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/09/06,18.854212499880003 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/08/30,4.523849791153839 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/10/09,7.852666669664162 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/09/23,3.9604249992875062 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/10/08,11.804250001074983 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/09/22,5.139575000552501 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/11/10,6.781684095215002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/10/25,12.089561253497498 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/11/09,3.648011733653843 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/12/03,7.844152083235846 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/12/11,17.522683335733323 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/02/05,8.403689176499158 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/02/06,6.477846510816729 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/01/28,13.1792499998775 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/03/02,4.55717499977001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/02/21,4.2108500000000015 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/03/10,6.061206616538451 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/04/10,7.3640399994975 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/04/03,7.771820836005827 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/03/25,8.482664583600846 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/04/02,5.226225000192492 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/04/26,3.413189285197737 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/06/06,6.430475000140004 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/06/29,5.034144167046675 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/07/07,9.137575000624995 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/06/21,21.54120000042752 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/07/31,5.057281445861669 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/07/24,13.231697500190007 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/07/23,3.512152742783327 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/09/10,3.4171363653375058 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/08/25,8.785181666211672 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/09/02,5.146182815384605 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/08/24,10.095558333405831 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/09/26,5.788025000264998 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/10/11,8.87852651688417 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/09/25,10.396633336725834 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/11/04,5.400674999617499 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/10/28,9.560608334038342 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/11/05,22.21372499972501 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/11/24,6.103844167435893 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/01/07,7.315100002170009 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/01/08,5.680305802098778 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/01,7.3610391779416595 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/09,7.809025000384994 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/01,4.938145113149415 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/01/31,6.3011974554321135 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/01/24,8.772409100000008 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/24,12.262492529747298 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/03/04,9.10181176321943 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/24,5.200444042307684 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/03/28,6.387099996685008 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/04/05,4.288563118846152 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/03/29,5.601249999999993 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/05/08,4.2203695294871775 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/04/30,6.1483750049125065 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/04/29,5.459166101416901 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/04/22,3.9024072038461486 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/06/05,3.049288635289996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/05/31,6.656414778359999 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/05/31,15.553812500069997 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/05/24,4.901462437948709 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/09,3.1230081780724985 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/04,3.111900738405831 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/11,4.308169092307682 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/10,4.62508177717948 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/03,3.556146213333333 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/02,11.260412502042506 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/06/25,4.425873600448713 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/06/24,5.747956398717943 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/26,4.219500003517499 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/11,5.623861350119994 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/03,7.317600582390002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/26,18.651891666666653 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/09/10,3.512675000835001 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/29,4.995788256904171 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/24,3.308927309999996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/28,5.705151354871788 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/27,6.852886023076914 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/02,4.069866409237741 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/06,6.969203182144992 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/09/29,5.291401060769223 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/09/21,4.75036767461538 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/08,4.8680830673076825 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/07,3.803365929999996 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/30,4.304494230841725 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/23,18.25561666685667 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/22,2.6140136500000004 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/22,9.270324063101658 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/12/10,4.551697015384608 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/24,5.333150001047492 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/23,4.172409449038458 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/01/11,5.881025003429993 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/12/26,5.806632751842363 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/12/25,9.827025000382497 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/03,10.515366666666678 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/04,13.449400000000004 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/03,8.246650000000002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/20,11.356608333333345 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/27,3.716875000000006 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/04/09,5.300192436153845 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/04/08,9.125832820911732 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/04/01,4.040137009615381 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/09,6.349169167046667 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/04/22,8.18743749662751 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/11,7.177750000145002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/10,11.119360421294166 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/06/05,11.171922986849168 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/31,10.164291666189158 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/06/04,8.832610764035834 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/06/03,4.848650000144992 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/27,9.776497440998682 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/26,7.0220791808541625 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/06,5.070787877456668 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/05,5.976682423670838 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/24,5.307175000287507 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/07,6.117963461610954 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/06,4.3703765217948645 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/30,3.752975000000007 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/22,5.45310334076922 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/09/06,4.18038015152583 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/09/08,9.542456988461536 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/31,4.141810653333327 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/23,6.476775001327493 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/22,2.903147799999998 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/10/08,2.159300000309997 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/10/03,7.718324986475002 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/10/02,3.899470467179484 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/10/01,4.262589331025637 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/11/03,7.114931830264997 +Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/11/26,8.32382397062024 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/01/05,3.8360668519230745 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2014/12/27,2.830557676666668 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/01/05,3.8360668519230745 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2014/12/27,2.830557676666668 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/01/28,7.94956387597069 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/01/28,7.94956387597069 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/04/02,13.265166666524165 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/04/02,13.265166666524165 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/05/04,10.673718810602502 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/05/04,10.673718810602502 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/06,5.6827875076025 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/06,5.6827875076025 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/22,3.5059157315384613 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/07,4.8284704646225 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/21,9.378800000144995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/22,3.5059157315384613 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/07,4.8284704646225 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/21,9.378800000144995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/09,2.3035681849999987 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/31,3.487896183550832 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/24,3.562097727319161 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/01,5.83227975846153 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/23,6.8008113666666565 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/09,2.3035681849999987 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/31,3.487896183550832 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/24,3.562097727319161 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/01,5.83227975846153 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/23,6.8008113666666565 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/25,6.440946974198331 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/09,5.587149243743331 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/02,8.788545002419992 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/25,6.440946974198331 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/09,5.587149243743331 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/02,8.788545002419992 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/26,22.82949166781916 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/10/11,5.800204018666663 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/10/04,11.702525000000003 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/26,22.82949166781916 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/10/11,5.800204018666663 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/10/04,11.702525000000003 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/11/04,5.856772724999996 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/11/04,5.856772724999996 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/11/29,5.822324999785005 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/11/29,5.822324999785005 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/01/07,8.157763956758608 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/01/07,8.157763956758608 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/03/03,6.778209092609996 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/03/03,6.778209092609996 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/04/05,8.93135208593083 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/03/27,3.4513499993675048 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/04/05,8.93135208593083 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/03/27,3.4513499993675048 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/07,6.850647750192499 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/04/21,8.77057833729332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/07,6.850647750192499 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/04/21,8.77057833729332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/23,7.23467878673917 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/07,2.4826250000000014 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/31,3.3854954899999967 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/23,7.23467878673917 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/07,2.4826250000000014 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/31,3.3854954899999967 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/24,3.4519977301449982 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/07/02,7.820385239534165 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/23,5.8854079570374855 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/24,3.4519977301449982 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/07/02,7.820385239534165 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/23,5.8854079570374855 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/11,5.723134866739168 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/02,7.464624996900013 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/07/26,7.081114601393332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/10,7.458811558461532 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/03,7.472902284999996 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/11,5.723134866739168 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/02,7.464624996900013 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/07/26,7.081114601393332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/10,7.458811558461532 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/03,7.472902284999996 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/03,5.564209090215002 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/27,2.453041960769231 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/11,14.819791701166675 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/04,5.826310434871792 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/26,3.393675000000004 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/03,5.564209090215002 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/27,2.453041960769231 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/11,14.819791701166675 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/04,5.826310434871792 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/26,3.393675000000004 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/10/05,2.9485954599999995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/28,3.240018933478332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/10/06,4.686349008653841 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/27,3.013800349999999 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/10/05,2.9485954599999995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/28,3.240018933478332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/10/06,4.686349008653841 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/27,3.013800349999999 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/11/06,2.815208333153335 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/11/07,4.036915555448713 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/11/06,2.815208333153335 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/11/07,4.036915555448713 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/12/09,5.110853846153838 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/12/09,5.110853846153838 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/03,9.13303041536166 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/03,9.13303041536166 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/26,12.02668333333333 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/19,9.374753203334445 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/27,5.034674723076911 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/26,12.02668333333333 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/19,9.374753203334445 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/27,5.034674723076911 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/08,9.232366716274171 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/03/23,11.209020837913338 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/08,9.232366716274171 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/03/23,11.209020837913338 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/24,7.158237501857482 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/23,3.222330317307692 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/24,7.158237501857482 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/23,3.222330317307692 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/11,13.59120834042835 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/10,6.590350000290003 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/03,2.8869795000000016 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/11,13.59120834042835 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/10,6.590350000290003 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/03,2.8869795000000016 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/07/04,3.877286330289997 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/27,8.589047745240002 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/07/05,11.8368553113553 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/26,8.074375000072497 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/07/04,3.877286330289997 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/27,8.589047745240002 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/07/05,11.8368553113553 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/26,8.074375000072497 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/08/30,5.088511370310003 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/07,6.143029446153833 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/08/22,3.0792022500950056 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/08/30,5.088511370310003 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/07,6.143029446153833 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/08/22,3.0792022500950056 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/08,18.122612500950005 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/01,7.667079174306665 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/22,5.1295208311908365 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/23,15.369006822299994 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/08,18.122612500950005 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/01,7.667079174306665 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/22,5.1295208311908365 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/23,15.369006822299994 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/24,8.797605304854155 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/11/10,6.951174999095 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/25,2.9651737857692293 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/24,8.797605304854155 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/11/10,6.951174999095 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/25,2.9651737857692293 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/12/04,4.115516666689175 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/12/03,2.678070000000001 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/01/05,10.892125000000012 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/12/27,7.740895833613349 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/12/28,6.320425892427684 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/02/06,8.573856247987518 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/01/28,9.577638952788606 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/02/05,5.851729168179159 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/04/02,11.934670655672743 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/03/26,9.9846662552075 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/03/25,5.988120661282046 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/05/05,6.221053638217491 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/05/29,3.2649121034783315 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/05/28,13.270149631852496 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/07/07,3.204325778333329 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/06/30,4.355343193598331 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/06/21,14.86905000207252 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/07/08,6.174683340003334 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/06/29,5.949150000095012 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/08/09,3.8181250000000047 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/09/02,7.239787493230006 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/08/24,2.38997500019 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/08/25,18.107791666421665 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/11/04,4.946725004334996 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/12/07,14.8855729174817 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/01/31,9.113822504187498 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/02/01,8.503402249999995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/05/08,3.190014699999994 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/06/08,3.960265148333328 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/06/01,16.180150007832516 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/05/31,21.439450000180027 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/07/10,11.780754166619188 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/07/03,2.549346218333334 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/06/25,13.348074999999987 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/08/11,13.565033335573348 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/07/26,10.47864027804026 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/08/03,15.222850000095006 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/07/27,9.050881822395006 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/09/05,2.7319681866666663 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/09/04,4.313950000072496 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/09/21,5.592920450072499 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/11/08,9.40463958487832 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/10/23,2.4240500001675 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/11/23,2.918899572435897 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/01/02,9.285481063428325 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/03/07,5.20296084468788 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/02/20,7.0445041673141615 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/04/07,8.10982059080774 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/03/22,4.536854549999998 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/05/26,3.5811001699999974 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/07/05,4.564627276954168 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/06/26,7.709489224676669 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/07/04,5.210502202499996 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/08/06,7.86416124404762 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/07/28,3.816502463356666 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/08/05,12.032983335753334 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/09/06,9.32373333418832 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/08/30,7.972184090570003 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/10/09,7.069574994750009 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/09/23,5.693391667094176 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/10/01,12.978266668051672 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/09/22,6.260933333668347 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/11/10,5.82502579104762 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/10/25,5.563943960529169 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/11/09,3.587843137179486 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/12/03,10.073672107365825 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/12/11,4.628279173211663 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/02/05,8.542351676176661 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/02/06,6.153080194453975 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/01/28,5.978104167776658 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/03/02,7.801199999515013 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/02/21,4.221250000000001 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/03/10,5.029152696923066 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/10,11.304708335200838 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/03,8.928741670984161 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/03/25,4.321481664801672 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/02,3.383525000000005 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/26,9.437570833093336 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/27,12.044274999969993 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/06/29,9.457054166666673 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/07/07,7.873550000144997 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/06/30,9.09675256444006 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/07/24,16.947100000712517 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/08/08,4.004988461538457 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/07/23,3.707275000000004 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/10,5.771136367850001 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/08/25,16.866275000362517 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/09,6.180937504504991 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/02,5.445371266811665 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/08/24,14.882491666904173 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/26,3.2880960649566657 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/10/11,3.278949853333326 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/25,3.441543179999994 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/11/04,7.921399989822501 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/10/28,8.949297286454437 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/11/05,5.07910000007249 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/11/24,5.781212588974355 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/01/07,12.926708333533345 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/01/08,7.392613577226984 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/02/01,8.422445836713328 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/02/01,5.927318120657817 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/01/31,3.834419230769224 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/01/24,10.868116666666678 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/02/24,4.188300000000001 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/03/04,8.695415384615377 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/02/24,3.977797729999998 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/03/28,4.239499999970009 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/04/05,3.361272120769229 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/03/29,6.119762073846147 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/03/28,6.9398302438461466 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/08,4.8866074348116575 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/04/30,3.9026674366666616 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/04/29,4.81153713738083 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/04/22,3.55673744230769 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/06/05,4.123572719999995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/31,5.6512875034275005 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/06/08,5.0051489892307615 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/31,8.127066664849174 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/24,3.266773498333327 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/23,2.7330772500000022 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/09,3.111772719999997 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/04,3.0160704399999987 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/11,4.513104564999993 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/10,4.878909113628332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/03,3.57141212333333 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/02,8.758515156048338 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/06/25,4.017691780448716 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/06/24,3.2335057607692272 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/26,6.713061527825272 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/11,3.512725000000007 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/03,12.22194999851252 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/26,7.310943335193332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/09/10,4.603240910289999 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/29,9.09588333352332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/24,5.628011350072499 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/28,4.068396983333329 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/27,8.046843131868119 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/02,10.473165834710844 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/06,5.220177418739162 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/09/29,3.9162234040386528 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/09/21,3.675789830769227 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/08,4.942221260576913 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/07,3.2716121199999977 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/30,3.229781819999999 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/23,4.444175000529994 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/22,2.9115188199999995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/22,8.857330421304157 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/12/10,5.508796530769221 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/24,4.992933338133332 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/23,2.25275454 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/01/11,2.318102250000002 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/12/26,5.846237480256405 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/12/25,12.279825001400011 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/02/04,10.583666666666684 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/03/07,3.27432500000001 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/04/09,8.862516930626736 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/04/08,11.694338609999988 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/04/01,3.775348449999997 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/09,7.480463256714176 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/04/22,7.321374996255007 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/10,19.520962502775 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/31,15.931608332310836 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/06/04,9.141768218120005 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/06/03,13.569674999737494 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/27,22.564700002537496 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/26,4.029190910144998 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/06,6.14728881564102 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/05,10.904683333720833 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/06/27,2.6690795000000027 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/24,9.095140000119985 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/08/06,7.718594707076667 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/30,8.347030884944289 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/22,3.967954119999995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/09/11,4.417489772989999 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/09/06,5.156912728144995 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/09/08,8.250922561610952 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/08/31,3.805091663623333 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/08/30,10.399750000119994 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/08/22,8.110969326351665 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/08,7.527640834658329 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/03,12.255337500755015 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/02,5.392763607179481 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/01,13.191454394739162 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/11/03,3.174900489999999 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/11/02,10.339474999922489 +Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/25,22.45758333469332 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/01/05,3.7668439138461514 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/01/05,3.7668439138461514 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/02/05,22.407050000000005 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/02/05,22.407050000000005 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/05,7.694591659809171 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/04/26,5.142554167316671 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/04,4.587242046529993 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/05,7.694591659809171 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/04/26,5.142554167316671 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/04,4.587242046529993 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/06,8.072142804817492 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/28,4.360227083130844 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/29,7.232897734143325 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/06,8.072142804817492 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/28,4.360227083130844 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/29,7.232897734143325 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/29,6.049924996055008 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/22,7.646324029132771 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/07,10.792491667174184 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/29,6.049924996055008 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/22,7.646324029132771 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/07,10.792491667174184 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/09,7.370548610968609 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/31,7.038148644019998 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/24,5.859933333618336 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/01,8.01803951250019 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/23,10.827533331660836 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/09,7.370548610968609 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/31,7.038148644019998 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/24,5.859933333618336 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/01,8.01803951250019 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/23,10.827533331660836 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/25,5.821790910072504 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/09,8.986758333380841 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/02,3.0359000000000003 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/25,5.821790910072504 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/09,8.986758333380841 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/02,3.0359000000000003 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/03,23.60554166666666 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/26,8.539849984694994 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/11,3.4255622374358974 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/04,10.477018748832492 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/25,20.50538333331832 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/03,23.60554166666666 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/26,8.539849984694994 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/11,3.4255622374358974 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/04,10.477018748832492 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/25,20.50538333331832 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/11/04,9.172985608333349 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/11/05,5.037268267307682 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/11/04,9.172985608333349 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/11/05,5.037268267307682 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/01/07,8.731996947369446 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/01/07,8.731996947369446 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/03/03,4.503240197115384 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/03/03,4.503240197115384 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/04/05,8.68726583745083 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/03/27,6.9520615313625 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/04/05,8.68726583745083 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/03/27,6.9520615313625 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/07,8.447338651217509 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/04/21,8.174438637965006 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/07,8.447338651217509 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/04/21,8.174438637965006 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/23,11.861558194849438 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/07,8.044534015698334 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/31,6.843908335273333 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/23,11.861558194849438 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/07,8.044534015698334 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/31,6.843908335273333 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/01,11.67991041364167 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/24,6.710775756881675 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/02,2.4669522500000056 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/23,21.29923333513832 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/01,11.67991041364167 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/24,6.710775756881675 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/02,2.4669522500000056 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/23,21.29923333513832 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/11,6.255974060581658 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/02,7.874325000092519 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/26,5.806362506732495 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/03,9.487466676499166 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/11,6.255974060581658 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/02,7.874325000092519 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/26,5.806362506732495 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/03,9.487466676499166 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/03,8.90807651333334 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/27,9.102850000000007 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/11,7.727758347228335 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/04,7.577576533333337 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/03,8.90807651333334 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/27,9.102850000000007 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/11,7.727758347228335 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/04,7.577576533333337 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/10/05,7.977155300072503 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/28,7.145713256761672 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/10/06,5.730632731999995 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/27,3.76491147 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/10/05,7.977155300072503 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/28,7.145713256761672 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/10/06,5.730632731999995 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/27,3.76491147 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/11/06,6.100795828805848 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/11/07,11.928971616410234 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/11/06,6.100795828805848 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/11/07,11.928971616410234 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/12/09,6.541274999985003 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/12/09,6.541274999985003 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/01/01,4.82224545 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/01/01,4.82224545 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/10,22.47810000000001 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/10,22.47810000000001 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/26,10.14150833333336 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/19,11.063595840218332 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/27,12.066986359999984 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/26,10.14150833333336 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/19,11.063595840218332 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/27,12.066986359999984 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/08,6.601452088511673 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/03/23,10.541593751172504 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/08,6.601452088511673 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/03/23,10.541593751172504 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/24,6.736921985730833 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/23,3.644900696666665 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/24,6.736921985730833 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/23,3.644900696666665 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/11,8.197215011142506 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/02,8.779290932874998 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/10,3.939701137762498 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/11,8.197215011142506 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/02,8.779290932874998 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/10,3.939701137762498 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/04,25.52003750137001 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/05,13.703425756904142 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/26,10.175690910094996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/04,25.52003750137001 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/05,13.703425756904142 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/26,10.175690910094996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/29,6.441340910482506 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/06,5.4581750023175015 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/29,6.441340910482506 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/06,5.4581750023175015 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/30,6.475920820280843 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/07,8.923125001014993 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/22,6.757605910000003 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/30,6.475920820280843 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/07,8.923125001014993 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/22,6.757605910000003 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/01,9.120225000000003 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/22,4.001419808301072 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/23,11.34959863199999 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/01,9.120225000000003 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/22,4.001419808301072 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/23,11.34959863199999 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/24,3.2407272752150025 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/25,6.045284931999996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/24,3.2407272752150025 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/25,6.045284931999996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/12/04,4.358199999712511 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/01/28,10.752358333048331 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/02/05,13.523149999952496 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/04/02,3.851050000567508 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/03/26,10.386539590195833 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/03/25,9.841214033219426 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/05/05,3.4806840902175016 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/06/05,3.089485829855833 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/05/29,7.278901523525833 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/05/28,5.798125000072494 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/07/07,25.070562499755013 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/06/30,11.101250000047504 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/07/08,12.964311360047471 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/06/29,11.228299999974997 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/08/09,8.243400000507505 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/09/02,3.958512123810833 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/08/24,9.468536666951662 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/08/25,14.361716667066656 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/11/04,5.865158335775825 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/02/08,4.599085527884605 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/02/01,21.77565833333335 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/03/04,22.26459166666668 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/05/08,4.766450000144996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/06/08,5.174703036808338 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/06/01,11.51310416551418 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/06/09,18.89743333333332 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/05/31,16.718875000457512 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/07/10,8.966372915574166 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/07/03,7.787100170400268 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/08/11,4.120593940506666 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/07/26,13.01208126058752 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/08/03,11.71480000012 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/07/27,10.735270449999996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/09/05,3.797981056884165 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/09/04,5.749644130769229 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/09/28,9.362470833428327 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/09/21,5.551496963405834 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/11/08,10.116166666666684 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/10/23,11.786140722963342 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/11/23,7.375699999999994 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/01/02,11.83326731247594 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/04/07,4.296511874885236 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/03/22,12.278102791720269 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/05/02,7.346075031772501 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/05/25,9.95816666783666 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/05/26,4.815494101999994 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/07/05,7.808537500075001 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/06/26,4.318168332183332 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/07/04,3.878536349999997 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/08/06,7.150812361906108 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/07/28,7.6612250000625 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/08/05,14.96663003998001 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/07/29,7.544782576859166 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/09/06,12.530558333428328 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/08/30,3.1184817500000026 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/10/09,4.110141665661668 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/09/23,7.822485415209181 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/10/08,3.2935942307692314 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/10/01,4.370679057692301 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/09/22,14.720741668966662 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/11/10,8.224072097967772 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/10/25,12.687542395984996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/11/09,5.472102719435892 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/12/03,8.47857291666419 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/01/28,22.373083333333344 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/03/02,10.504633333333349 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/10,3.845479047871546 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/03,8.804675002170006 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/02,5.185778792046666 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/26,5.848528748110004 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/27,3.568927250000006 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/06/29,14.47810223574668 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/07/07,10.871432656425846 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/06/30,8.507128330841727 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/06/21,21.77349999969251 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/08/09,15.00420000136252 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/07/24,7.714704153614175 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/08/08,11.242500000072498 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/09/10,3.732100002107498 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/08/25,13.108439999240012 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/08/24,14.644187880047507 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/09/26,4.108987876956663 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/10/11,4.462535021999996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/09/25,4.941181819999998 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/11/04,7.55972499647001 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/10/28,11.144224635026674 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/11/05,16.47927255158593 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/11/24,10.314712526410254 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/01/08,6.15042191056032 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/02/09,13.328791666619166 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/02/24,8.425033333010859 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/02/24,8.67117499952502 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/04/05,13.139049999999996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/03/29,7.9856986123076865 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/08,3.232072734999995 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/04/30,16.647016705839196 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/04/29,7.8498187347775 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/04/22,3.554644230769229 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/06/05,3.09214393333333 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/31,6.978602281540004 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/31,20.099825000175 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/24,5.720141670192496 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/23,4.473324999999996 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/09,10.401878636714995 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/04,6.561151110873609 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/06/22,8.299381664661677 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/11,9.752142781027766 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/10,12.067850001292516 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/03,7.485925007699998 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/02,5.112574997132503 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/06/25,4.805087628205127 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/06/24,7.482889551999992 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/07,10.974175000427516 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/26,6.888081820000008 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/11,3.109425000000007 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/03,16.080100002300018 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/26,8.198284090312502 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/09/10,4.6180710614058285 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/29,13.770404087491563 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/24,4.252053043695829 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/28,9.711054688739164 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/27,8.233419848666667 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/02,13.828970661705828 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/06,4.290691901999995 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/09/21,21.316991665519197 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/31,7.985074993927505 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/08,2.9126010557692283 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/07,3.723828669999997 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/30,6.014283337673326 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/23,15.113658333533316 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/22,5.366129688739163 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/22,7.357252088215837 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/12/10,5.881993615384604 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/24,5.379741679919992 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/23,4.480531938739167 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/01/11,18.17640833401333 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/12/26,5.762356304615378 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/12/25,3.2285250000000074 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/02/03,6.9619249993100025 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/02/20,7.528733333333337 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/03/07,3.1762750000000053 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/02/27,4.98342614035 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/03/26,16.149475000610025 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/04/09,10.98021134469499 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/04/08,15.425003320816698 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/04/01,3.655709956666664 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/09,8.366823333808322 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/11,4.036053033333326 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/10,14.855778366788329 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/02,3.4930545000000053 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/04/24,6.602631126153844 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/06/05,15.446358332568334 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/31,11.445616666451649 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/06/04,8.473404049092494 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/06/03,20.48896666749417 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/27,21.54651666695166 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/26,8.897333333405841 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/06,10.720218001538456 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/05,15.04576527777776 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/24,14.216293749880004 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/07,12.599550000072515 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/06,12.342454543380816 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/30,10.058050000049992 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/22,12.59658334053333 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/09/06,8.405087361601106 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/09/08,3.620450000000009 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/31,3.971155457072496 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/30,3.215950000000007 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/23,7.622200000284994 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/22,9.25382425673916 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/10/08,7.528405418566662 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/10/03,7.132849999280011 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/09/28,3.697821966811663 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/10/02,3.9383273749999934 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/10/01,14.407421061333324 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/11/03,8.489525003449986 +Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/11/26,14.397633345175846 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2014/12/30,13.05596666642917 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2014/12/30,13.05596666642917 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/07,7.1708208382433325 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/04/28,9.752297772858334 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/06,6.681033333380842 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/04/29,4.0964070884615325 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/07,7.1708208382433325 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/04/28,9.752297772858334 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/06,6.681033333380842 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/04/29,4.0964070884615325 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/30,15.351625000000002 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/23,3.2363772713774943 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/30,15.351625000000002 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/23,3.2363772713774943 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/07/10,20.62958333295082 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/06/24,3.5538922679999945 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/07/02,2.6042250000000053 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/06/23,8.767375000262495 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/07/10,20.62958333295082 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/06/24,3.5538922679999945 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/07/02,2.6042250000000053 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/06/23,8.767375000262495 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/02,12.960625009610007 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/10,3.958086389999992 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/03,4.413699999999991 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/02,12.960625009610007 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/10,3.958086389999992 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/03,4.413699999999991 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/03,10.48971667358667 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/11,9.115100004265004 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/04,12.3421 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/26,9.286421361999992 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/03,10.48971667358667 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/11,9.115100004265004 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/04,12.3421 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/26,9.286421361999992 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/05,5.8395064431941615 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/28,20.967216666376675 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/06,12.95769404199998 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/27,15.2285174233333 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/05,5.8395064431941615 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/28,20.967216666376675 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/06,12.95769404199998 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/27,15.2285174233333 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/30,13.091300015837502 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/22,17.27598333327084 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/30,13.091300015837502 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/22,17.27598333327084 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/12/08,6.930429550357502 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/11/22,11.617983335190832 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/11/23,20.84917499950001 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/12/08,6.930429550357502 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/11/22,11.617983335190832 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/11/23,20.84917499950001 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/01/25,22.34590833333334 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/02/02,12.588010834003342 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/01/25,22.34590833333334 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/02/02,12.588010834003342 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/06,7.605849584690828 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/02/27,14.21088750097002 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/06,7.605849584690828 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/02/27,14.21088750097002 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/07,13.492391671806676 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/29,4.60256591512 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/22,13.287233611158594 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/30,4.1426136413949965 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/07,13.492391671806676 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/29,4.60256591512 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/22,13.287233611158594 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/30,4.1426136413949965 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/05/09,3.072150000522502 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/30,3.418041667046667 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/22,6.924334100722491 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/05/09,3.072150000522502 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/30,3.418041667046667 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/22,6.924334100722491 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/05/25,6.358025000332487 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/02,12.702275000309994 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/05/25,6.358025000332487 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/02,12.702275000309994 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/03,4.468764402952504 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/26,14.455108349695834 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/11,7.1284310756724905 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/04,3.765152189999996 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/25,6.591158335705841 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/03,4.468764402952504 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/26,14.455108349695834 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/11,7.1284310756724905 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/04,3.765152189999996 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/25,6.591158335705841 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/04,10.43712727009501 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/05,6.303400000857493 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/27,7.433861349999988 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/04,10.43712727009501 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/05,6.303400000857493 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/27,7.433861349999988 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/05,11.877651666961656 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/29,10.703509090000004 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/28,8.008291666714175 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/05,11.877651666961656 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/29,10.703509090000004 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/28,8.008291666714175 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/07,9.044291667446668 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/30,5.817574995180007 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/21,15.73199402807276 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/29,16.484391666761663 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/22,17.609066666761656 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/07,9.044291667446668 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/30,5.817574995180007 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/21,15.73199402807276 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/29,16.484391666761663 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/22,17.609066666761656 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/11/08,17.263929185161672 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/11/01,19.56488334272332 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/23,25.42380834023333 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/24,6.220675000627497 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/11/08,17.263929185161672 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/11/01,19.56488334272332 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/23,25.42380834023333 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/24,6.220675000627497 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/10,5.701090920262503 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/11,4.920950000507494 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/02,5.18368138461538 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/10,5.701090920262503 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/11,4.920950000507494 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/02,5.18368138461538 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/27,11.72936666705166 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/27,11.72936666705166 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/03/09,4.970411471352734 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/02/28,8.379555426744156 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/02/20,21.32310833333335 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/03/09,4.970411471352734 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/02/28,8.379555426744156 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/02/20,21.32310833333335 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/10,9.318033339765831 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/09,3.219345507435897 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/02,3.600179883846152 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/10,9.318033339765831 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/09,3.219345507435897 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/02,3.600179883846152 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/05/11,15.694950000200002 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/05/11,15.694950000200002 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/05/27,5.0457311024516684 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/05/27,5.0457311024516684 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/06/28,5.599312164683333 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/06/28,5.599312164683333 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/07/31,7.334961360772499 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/08,7.112750000697491 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/07/30,3.4479657613333257 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/07/31,7.334961360772499 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/08,7.112750000697491 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/07/30,3.4479657613333257 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/01,8.18571666676167 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/23,7.386575000012504 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/31,2.974380250000002 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/24,12.094491841999986 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/01,8.18571666676167 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/23,7.386575000012504 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/31,2.974380250000002 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/24,12.094491841999986 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/10,8.345475000095004 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/03,10.517108338293337 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/24,17.208858333380835 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/02,3.7415124557692256 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/25,4.356737281999994 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/10,8.345475000095004 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/03,10.517108338293337 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/24,17.208858333380835 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/02,3.7415124557692256 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/25,4.356737281999994 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/11/11,3.072552275579997 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/11/04,7.334399993540013 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/27,7.388536746410836 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/11/11,3.072552275579997 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/11/04,7.334399993540013 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/27,7.388536746410836 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/12/06,5.387175010190009 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/02/08,22.451158333333343 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/04/05,19.014056250000003 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/04/28,3.974225892307684 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/04/21,4.6087204649999975 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/06/08,8.634325000144997 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/05/30,6.720275000600001 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/05/23,4.824984089999995 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/07/09,11.3582750073325 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/07/02,5.766063257726667 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/07/10,4.015790673076916 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/07/01,10.353383333570829 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/06/24,3.4135772500000057 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/08/10,6.855274999930004 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/08/27,13.296836670116654 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/09/27,3.194737143333328 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/10/05,16.00375075704665 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/09/28,4.756334100094994 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/12/08,15.02550000632501 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/11/22,5.02375795076922 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/01/01,6.7391421570035694 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/01/02,6.137679449999994 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/02/11,9.207283335518332 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/01/26,8.168491668651669 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/04/23,10.012115839035834 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/06/10,19.24067499919499 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/06/03,10.531655059116307 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/05/26,6.776 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/07/05,3.891290910699992 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/06/26,4.133816675362493 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/07/28,9.413100018555 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/08/05,18.357983337933334 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/07/29,6.6357916667141685 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/09/07,19.24738916666665 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/08/29,6.233574994935009 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/09/06,11.176004167956664 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/08/30,4.539250000072494 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/10/09,10.031937500890006 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/09/30,15.654220833213335 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/10/08,16.655858333413345 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/09/22,15.432827083478344 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/11/09,9.50111666761665 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/11/02,5.361800001004999 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/10/24,4.019913639999995 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/12/03,21.205470833360845 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/12/11,2.9286255000000017 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/11/25,13.28197499956999 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/01/05,13.443024999784985 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/03/01,13.577083333190831 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/02/29,9.914208334055845 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/04/01,5.72152044999999 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/04/25,10.023066669299157 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/05/03,5.062224999999997 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/05/27,5.854783333930835 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/06/04,5.375889050909998 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/06/21,4.4779083334783225 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/07/06,4.139430481999993 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/08/08,11.09876250018999 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/07/30,11.361534482288342 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/07/31,8.01500089199999 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/09/09,9.470941709451669 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/08/31,9.81100000069501 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/08/24,11.161529172179169 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/09/08,14.406700000142502 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/08/23,15.516325002300013 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/10/11,12.888811665991666 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/09/25,11.462666700941677 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/10/10,23.334999999955 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/01/07,10.705616666666677 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/12/29,10.208850298933704 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/01/23,21.791766666666685 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/03/11,13.155131666524174 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/03/04,12.205549999809994 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/04/05,9.749911665544165 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/03/27,9.70608291432666 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/04/04,16.387200009200026 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/05/07,3.1665734886958297 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/05/06,3.788040910435005 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/06/07,6.7551795468341735 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/07/10,4.520819698768323 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/06/24,3.711743179999991 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/06/23,4.372477100072494 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/11,15.489970833333324 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/02,9.706531251140014 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/07/26,11.410283333533345 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/10,2.746425000000004 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/03,15.086800000072484 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/09/03,9.08412500047 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/09/11,25.102700004979987 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/09/04,16.061341666666642 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/26,11.614733333570827 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/06,12.481244028162774 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/09,5.415912126666659 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/07,4.616858498666664 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/04,12.372708334303343 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/10/29,5.039150861999997 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/12/09,4.470547754807692 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/23,5.81173283076922 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/02/02,11.452925000707506 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/01/25,10.252958333118343 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/03/30,6.220374995595008 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/03/22,7.497158772320001 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/09,5.892343941739175 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/10,4.884740929999993 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/09,3.623650009999997 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/01,4.193925004999993 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/03,4.190400000917494 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/02,5.252475000507494 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/25,6.564925001099998 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/07/11,3.6674840902899946 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/29,7.663693180072503 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/24,4.839672730845001 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/07/04,14.44117499935498 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/26,19.036841712714207 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/07/28,6.215024999050007 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/08/06,3.775170123076919 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/07/29,8.429550000579994 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/08/31,3.9899734837683294 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/08/30,3.563427250000005 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/08/29,4.29746346153846 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/10/09,9.123789542 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/10/08,5.796903172072498 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/07,7.049324248785831 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/10/26,5.0405873417274965 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/10,4.097686584615379 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/09,5.109773611999996 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/02,3.6267955457692262 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/10/25,4.29753918692346 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/24,11.51748619225368 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/12/04,4.880646510769219 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/26,4.045781299038458 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/01/28,14.73973333323834 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/02/21,24.758566667599176 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/07,7.300147590474167 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/10,5.208639581999989 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/03,4.106030323333327 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/02,4.155902881811663 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/27,4.240272107435894 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/26,8.109111367154151 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/05/26,8.522611361182502 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/06,8.622250000264998 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/05,16.437158332953334 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/05/29,4.578549999999991 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/05/28,19.954341685114198 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/07,6.660009091010007 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/30,18.22660833329832 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/22,5.270045469999993 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/21,2.855004500000005 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/08/05,10.203316677826662 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/31,17.496304166929168 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/26,2.498218181667501 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/08/09,9.994766666739157 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/08/01,4.169459278846151 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/31,17.3138750000725 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/24,6.748350000602499 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/23,13.203291673639166 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/08/22,13.478729167051652 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/09/02,11.609995833428329 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/09/01,7.464020440072497 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/10/04,2.7583977799999984 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/10/03,3.201231820072498 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/09/26,9.804116666714146 +Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/11/28,3.273119249999997 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2014/12/29,3.112600000000005 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2014/12/29,3.112600000000005 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/03/11,12.016941667251665 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/02/23,22.26459166666668 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/03/11,12.016941667251665 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/02/23,22.26459166666668 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/04/28,14.102275010237488 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/05/06,19.129500025300025 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/04/28,14.102275010237488 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/05/06,19.129500025300025 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/05/30,17.07443750241001 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/06/07,13.757416666666655 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/05/30,17.07443750241001 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/06/07,13.757416666666655 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/02,23.83167000009499 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/10,13.064508333575834 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/02,23.83167000009499 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/10,13.064508333575834 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/03,6.594875001597498 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/11,2.8529727092032964 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/26,4.939137341999998 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/03,6.594875001597498 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/11,2.8529727092032964 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/26,4.939137341999998 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/10/05,16.919058333333318 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/27,11.129825000072508 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/10/05,16.919058333333318 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/27,11.129825000072508 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/11/22,8.665337498257502 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/11/30,12.632833333118322 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/11/22,8.665337498257502 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/11/30,12.632833333118322 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/02/02,14.793275000570002 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/02/02,14.793275000570002 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/02/26,12.486102083585845 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/02/26,12.486102083585845 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/03/29,11.060113660985005 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/03/29,11.060113660985005 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/04/30,14.564991669451643 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/05/08,4.043355499999993 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/04/30,14.564991669451643 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/05/08,4.043355499999993 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/03,17.828668363968337 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/11,10.219737499999995 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/06/25,12.99490836333332 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/03,17.828668363968337 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/11,10.219737499999995 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/06/25,12.99490836333332 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/08/04,17.506400011595016 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/27,13.277922058974331 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/08/04,17.506400011595016 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/27,13.277922058974331 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/05,19.38255075666666 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/08/28,20.021574999784985 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/05,19.38255075666666 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/08/28,20.021574999784985 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/07,6.558866660000002 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/21,3.964682434811661 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/29,5.397000000549996 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/07,6.558866660000002 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/21,3.964682434811661 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/29,5.397000000549996 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/11/08,25.387475004600034 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/23,23.71531668046669 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/31,3.329371530769226 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/11/08,25.387475004600034 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/23,23.71531668046669 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/31,3.329371530769226 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/12/10,11.269650000450005 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/12/10,11.269650000450005 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/01/11,19.156106250437496 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/12/26,24.44116666666665 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/01/11,19.156106250437496 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/12/26,24.44116666666665 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/03/08,4.953800307435895 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/02/20,19.309981250237502 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/03/08,4.953800307435895 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/02/20,19.309981250237502 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/04/09,20.35105833812334 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/04/09,20.35105833812334 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/05/03,6.704149994597515 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/05/03,6.704149994597515 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/05/27,3.203375000000002 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/05/27,3.203375000000002 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/06/28,3.1743250000000063 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/06/28,3.1743250000000063 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/07/30,24.62467500919997 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/07/30,24.62467500919997 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/09/24,25.77571833333336 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/10/02,9.943279072435894 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/09/24,25.77571833333336 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/10/02,9.943279072435894 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/11/11,24.14989528501027 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/11/11,24.14989528501027 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/12/29,9.723600000000014 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/05/30,6.283109597191546 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/07/09,17.513483333070848 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/08/10,20.675137503855023 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/09/03,3.681465909999993 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/09/27,6.367260613405832 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/10/05,4.224350059999998 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/12/08,21.91584166619168 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/11/22,3.2996883630769207 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/01/25,3.0017260507692303 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/05/09,7.31761249280251 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/04/23,16.610536667491658 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/05/25,18.63945000002249 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/06/26,2.738412876666664 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/07/04,5.753000001084996 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/07/28,13.300500000095 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/08/05,15.859685140769216 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/08/29,7.00255151355084 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/10/08,10.148225000072475 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/09/22,12.088750004599992 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/11/09,4.528290970000001 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/10/24,11.133728786666657 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/12/03,8.453739587168329 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/12/11,6.338156852820506 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/02/05,9.267508333495858 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/01/29,15.37376250195999 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/03/08,8.516899999715013 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/02/29,11.232575000000006 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/04/01,10.667163669999995 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/04/25,15.95561666597667 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/05/03,4.993234709999995 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/05/27,20.437941666666678 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/06/04,8.423341670116665 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/07/07,6.197270829880848 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/06/21,3.0739967982051244 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/07/06,11.743375008049998 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/08/08,8.12609459238095 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/09/09,15.56558409014249 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/08/31,8.921569696739168 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/08/24,4.87423484710166 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/08/23,11.281800000237492 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/10/11,11.461117370743612 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/09/25,16.467880417526676 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/10/10,19.35775833333334 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/11/03,7.985487499347511 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/11/28,6.4437749947050085 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/12/29,17.433542425775816 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/04/05,13.788983334253333 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/03/27,6.807199993615006 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/04/04,3.292025000000005 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/05/07,14.092620831590825 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/05/06,7.879201526220836 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/06/07,3.493488679999997 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/07/10,3.342079837435892 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/06/24,2.18265 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/08/11,16.727272916524168 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/08/02,11.272808333875842 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/07/26,14.339891668724162 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/07/25,7.5275000003624974 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/09/03,18.358724999984997 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/09/11,22.813725004600023 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/08/26,5.039475000554992 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/11/06,16.783170832195843 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/11/09,21.75335834253334 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/11/04,3.605989438333334 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/10/29,11.655504077435886 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/11/22,5.601324994490008 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/03/22,13.885700006947491 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/09,19.89595167131417 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/09,6.482850000047497 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/01,7.597608326666664 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/26,6.357024997115004 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/10,4.103549999999998 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/02,11.412787499999997 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/25,7.398396327681546 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/29,3.633994696811663 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/24,2.8918659099999986 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/07/04,6.086208336868327 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/26,2.407397729999999 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/07/28,10.9529303 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/07/28,3.2171 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/08/31,5.848723114863337 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/08/29,3.1382749999999944 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/10/09,18.624991666666684 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/10/04,9.429474991925 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/10/08,3.9802750000000007 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/10/26,6.204549995780008 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/11/09,4.289855846153843 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/11/01,4.512149296153837 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/12/27,14.874828030047471 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/01/28,13.408584090142485 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/02/27,8.875033353228325 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/04/07,10.9110532737725 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/04/10,5.439124440769223 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/04/02,6.720383341666653 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/04/26,4.527226925511664 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/05/26,8.011139770119998 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/06/05,5.015229171056664 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/05/28,4.008700000072492 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/06/21,4.431610973076924 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/07/31,22.54162666673917 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/07/31,3.395925000000006 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/07/23,6.475160606761681 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/09/01,7.745375000000001 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/08/22,3.4864846948841626 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/09/09,4.728190444102557 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/09/01,2.4614081999999997 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/10/03,3.764486999666664 +Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/10/27,3.268626009999999 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/01/05,11.481366666651663 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/02/06,21.791766666666685 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/02/23,22.373925000000007 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/04/28,8.788410432336676 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/05/06,3.8067725863333295 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/06/06,22.10187916752168 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/05/30,6.40943562946083 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/05/29,8.46250000471999 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/05/22,5.019725 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/07/08,7.208579163001672 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/06/22,6.82009166636667 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/06/23,12.901225000310012 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/08/09,2.762038930769231 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/08/02,21.919666667451654 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/03,5.963695820800841 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/08/25,2.380715892857144 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/11,2.5234912750000014 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/02,9.754766666881672 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/10/05,9.605720828993348 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/26,13.777733342580827 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/10/04,8.948250000262478 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/27,3.507371179807687 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/11/05,3.737564999999996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/11/29,4.599071388666661 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/11/22,4.951428495586079 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/12/07,2.4327136182692275 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/11/30,2.8886567501200027 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/01/08,13.945775000337497 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/02/10,10.047558333333347 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/02/02,14.260150000237516 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/02/26,10.870581249905 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/05,13.453641122828602 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/03/29,12.354933341993345 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/30,6.237062911739164 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/21,4.769885610795831 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/05/08,2.3096522500000027 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/29,2.734710025000002 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/22,5.927640917409999 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/05/23,9.136758334808333 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/06/09,4.639598617427687 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/05/31,13.940783333333329 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/05/24,19.926575000400007 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/07/03,11.182029185186671 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/06/24,7.985600002064997 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/06/25,2.815021836538463 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/11,7.617679175394167 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/04,2.6784038 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/07/26,4.369939819953563 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/03,4.554825000217496 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/07/27,4.145315919999994 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/05,3.192190146666663 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/27,3.580792428768329 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/04,3.4592499999999986 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/28,12.635833333570822 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/10/07,4.061761374999996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/28,4.343518750140007 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/21,2.9921242416666614 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/10/06,2.4658828057692284 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/29,3.283855986538458 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/11/08,4.244503196999997 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/10/23,7.737963654999995 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/11/07,2.768989393269229 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/10/31,3.027500000000007 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/12/10,8.6651948952375 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/11/23,3.38847481153846 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/01/02,22.30574166666668 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/12/26,24.44116666666665 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/02/03,22.64890000000001 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/03/08,12.769141666571665 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/02/20,20.733483333285857 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/04/09,14.224058336973323 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/04/24,6.2967000001925 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/05/11,4.613263638404996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/06/11,8.319160832760838 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/06/03,8.190041666046676 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/07/05,2.797152250000006 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/06/28,3.2064295000000067 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/07,22.34878335024085 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/06,2.522102250000006 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/07/30,3.3765056189102505 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/09/08,18.34201907889166 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/30,5.430184090767504 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/23,5.743410833948336 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/31,9.053375000384994 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/10/01,4.353963719999992 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/09/24,2.827005149666665 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/10/02,3.3068572314102536 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/09/23,3.885449099999994 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/11/11,7.258545464999993 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/11/10,3.1349545000000023 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/10/25,18.23310833373334 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/12/04,14.628980986824995 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/01/06,21.67155833333335 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/02/06,9.869816666666685 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/03/26,20.76508958538586 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/05/05,9.426450018447497 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/04/28,4.402111915384611 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/05/29,4.550616294528335 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/05/30,3.765249999999993 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/07/09,4.20909851340583 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/06/30,11.723899995129996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/06/22,4.8346261460916615 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/08/10,3.7222182199999936 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/08/09,5.759149999999997 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/09/03,2.976777250000004 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/08/25,9.18773334140582 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/09/27,12.947774999572522 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/10/05,5.007050000072503 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/11/22,2.607002249999999 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/02/10,11.016541667051673 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/03/06,22.26459166666668 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/02/26,21.791766666666685 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/05/09,10.859916667874163 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/04/23,6.398197734999996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/05/08,8.716441675914156 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/04/22,9.892568742055 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/06/01,9.037573333005852 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/06/09,2.6467777000000026 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/07/03,7.422268753692495 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/06/26,2.9587037999999963 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/08/04,11.425679167616677 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/07/28,17.38076667518919 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/08/05,2.2475204250000016 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/07/27,3.584100000000008 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/05,4.718305952380946 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/08/29,3.620933351666659 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/06,3.814140924999993 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/21,8.118877269999997 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/10/08,5.06070000007251 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/29,9.046475000144984 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/22,13.238758333333328 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/11/08,10.47877215344917 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/11/01,6.299524996470009 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/11/09,3.229535499999999 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/10/24,2.923669550000002 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/12/11,16.282852084038353 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/11/25,6.242599661538456 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/02/29,21.88613333333335 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/04/01,12.531730757236664 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/02,14.92164167126668 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/04/25,6.86344167014667 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/10,2.839425000000005 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/03,4.539915929999998 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/27,4.124183334098333 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/06/11,2.884225000000005 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/06/04,4.056699999999992 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/26,4.189727429999992 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/06/28,3.723661375072493 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/07/06,3.526293655769225 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/08/06,5.512128034999998 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/08/07,18.867325000072487 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/08/31,3.193012754999996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/09/08,7.541866667241669 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/10/09,6.547201521666666 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/09/23,14.37998750699501 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/10/10,3.1267500000000075 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/11/10,7.759734089999994 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/10/25,8.874308335870824 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/12/29,21.88613333333335 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/01/22,22.76205 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/03/02,22.34590833333334 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/04/04,13.034983333285837 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/06/06,7.7712375025175024 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/06/07,3.352025000000004 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/06/23,3.0061362499999973 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/08/02,2.7928750011425 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/07/25,4.729149710256401 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/09/03,3.3786989682051267 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/08/25,6.040314395384995 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/09/11,4.529279170006661 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/09/02,2.584802250000003 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/08/26,7.001450000120005 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/09/26,3.675662133333327 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/06,7.678658344380841 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/10/28,9.762422609047611 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/09,4.143654500072501 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/05,3.4361826394230746 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/10/29,2.5212830557692287 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/24,2.589971880769229 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/21,4.927658337915832 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/12/23,4.177008749999998 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/02/01,22.30574166666668 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/02/09,21.848400000000016 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/02/02,21.88838333328585 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/01/25,22.169733333333344 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/02/26,22.274983333333346 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/03/22,20.85704166671418 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/09,3.458038496333332 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/09,2.8537761500000016 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/08,9.72040834265332 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/01,4.820973543333326 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/04/30,5.750563654222495 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/04/23,13.38867500221751 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/06/02,11.166620833718325 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/25,6.502125000362505 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/24,12.426575000265 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/07/04,10.245949998197494 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/06/29,3.142158352511667 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/07/11,6.7854583367033205 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/07/03,8.810508332735845 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/06/26,2.9404436450000007 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/06/25,2.7995854 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/09/10,4.741737876714161 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/08/29,4.478303330769226 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/10/09,4.036267559031073 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/10/08,2.6401600999999992 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/09/29,2.5280521250000034 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/09/21,2.8803968399999977 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/11/09,3.291046573076922 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/11/08,1.9738884999999968 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/10/24,11.936100000200009 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/12/10,5.760390914999995 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/12/02,3.171600000145004 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/11/24,4.204065899999998 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/01/11,21.498041666666687 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/12/27,8.192049998472509 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/12/26,11.178424999785005 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/02/04,21.88969999969002 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/03/09,22.211958333333342 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/02/21,9.11054166664168 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/04/10,11.65381666657166 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/04/02,12.394725003354992 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/04/01,19.78151666915669 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/03/24,10.42047499978501 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/09,9.188254169666676 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/11,6.251375000000001 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/04/26,6.178465444680056 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/31,8.811443180190002 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/26,2.6583174468841677 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/06/05,6.611100002587501 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/06/04,2.7730522500000023 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/28,20.958483335180848 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/27,7.587000000602512 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/06/22,3.559021967101659 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/07,3.2258250000475037 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/06,3.466004549999998 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/06/21,5.298381500000002 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/08/05,2.8840772700724977 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/31,7.132930850335836 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/31,7.803725000289997 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/30,4.181137123333324 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/23,3.954461719102556 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/22,5.7038143955941685 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/01,4.329965910652492 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/08,8.141625000144996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/01,3.411643199999996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/08/31,3.998315156666661 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/08/23,3.975442749999994 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/28,8.59811874895502 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/10/03,4.536948349666663 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/10/02,2.9387945599999985 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/25,2.8953089499999987 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/11/11,2.6238681250000035 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/11/03,4.676915919999996 +Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/11/28,3.439675000000006 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2014/12/29,16.34655833587583 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2014/12/29,11.413269230864223 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/03/11,21.056808334625853 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/02/23,22.539900000000006 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/04/04,11.157999999785003 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/05/06,5.271950000192503 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/05/06,4.996650000457503 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/05/22,5.190724999999993 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/05/22,4.980724999999995 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/08/02,23.144745832950843 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/09/11,2.107233749999998 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/09/11,2.630006972435897 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/08/26,2.314993080000001 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/08/26,2.80141623076923 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/10/05,8.711582573333338 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/09/27,2.5616383365384605 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/09/27,2.540688630769229 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/02/02,10.158482820728729 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/02/02,11.389804169951669 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/03/05,20.460108333238367 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/03/05,20.460108333238367 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/04/30,6.414429561666663 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/05/08,4.7083098668116605 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/04/22,3.4154250000000035 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/04/22,3.656184100119998 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/06/09,2.4703000000000004 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/03,14.7557000276 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/11,6.537875004672495 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/11,8.856000000000009 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/06/25,2.987175 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/06/25,2.793679500047499 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/08/04,4.105338629999996 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/27,3.5787250000000057 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/27,3.772625000000005 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/09/05,9.701153786666668 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/08/28,13.220200000072497 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/08/28,10.736037500237494 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/10/07,8.633168799666658 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/09/21,8.411309094999998 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/09/29,8.851491668299154 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/09/29,8.155141666524154 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/11/08,5.13745454999999 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/10/23,14.531691683104178 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/10/31,5.36738648230769 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/02/04,13.165066666404163 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/02/04,13.349566666189167 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/02/20,15.626283333238336 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/05/11,7.693734099999993 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/05/11,3.6856863599999943 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/06/28,6.4666833360433245 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/06/28,8.638765910337494 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/07/30,2.94103625 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/07/30,2.2943102900000025 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/08/23,16.80470004149501 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/10/10,7.565432578333333 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/09/24,5.726481822347504 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/10/02,2.5302591307692293 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/10/02,2.641575773626374 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/11/11,4.371568999380947 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/04/28,12.315833333095838 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/04/28,12.095058333048335 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/05/30,8.994800002419977 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/05/30,5.0867500005024935 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/07/09,3.269398503333328 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/07/01,8.819125003522487 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/07/01,6.127425000669997 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/08/10,3.575874999999992 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/09/03,2.7725522500000066 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/09/03,3.1408250000000053 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/10/05,2.85334411826923 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/10/05,3.095367874038461 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/12/08,21.88613333333335 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/02/10,11.61798333331833 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/01/25,21.66638333333335 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/01/25,21.66638333333335 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/03/06,22.404625000000006 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/02/26,21.83503333333335 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/04/23,8.45178749954752 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/06/26,4.01897045499999 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/08/05,3.5498999999999965 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/08/05,2.590627200000004 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/08/29,10.2323500115475 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/09/06,3.6410331499999935 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/09/06,3.965287749999994 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/10/08,5.405087232307689 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/10/08,4.727637035512816 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/09/22,12.114749999999985 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/10/24,4.915577299999996 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/10/24,4.477605049999995 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/12/11,18.670681250237507 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/12/11,15.522187500000014 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/11/25,15.09258749990501 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/02/21,22.34590833333334 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/02/29,22.476633333333343 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/04/01,14.481583333238332 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/04/25,9.174239393333329 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/05/03,9.80800835863333 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/05/03,8.464691675939156 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/05/27,5.1668000001675 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/06/04,2.4565022500000064 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/06/04,2.7609250000000043 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/07/06,3.716498289999996 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/07/06,3.03748319 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/07/30,9.273966679799177 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/07,12.788583333118313 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/07,12.934333332903318 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/31,4.834448483790832 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/09/08,3.777684100072493 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/09/08,3.6075000003624944 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/23,3.879393199999992 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/23,4.12446365499999 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/10/10,8.391673506811662 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/10/10,7.350100000144998 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/09/24,12.848733333333325 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/09/24,12.745108333333327 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/05/06,4.4716750023000005 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/05/06,4.433271215633329 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/06/07,4.805125000000006 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/06/07,6.789375000000004 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/06/23,10.31594169656666 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/06/23,5.788233335680819 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/02,6.982825423424163 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/10,3.448756824999996 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/10,2.480091000000001 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/07/25,3.135053801666664 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/07/25,3.9614056857692224 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/09/03,8.825124999949997 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/09/11,22.02884999947752 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/26,3.815895499999993 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/26,4.212157935769221 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/06,3.9240350070724968 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/09,2.5272640900000023 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/09,2.5200504000000024 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/04,2.565161250000001 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/04,3.053294230769233 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/10/29,2.405359930769228 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/10/29,2.3659916057692283 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/12/24,23.455858333333325 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/01/25,10.84014166645167 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/02/02,21.67155833333335 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/02/26,15.337199999904994 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/03/30,12.718099999784997 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/03/30,12.509983333118328 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/03/22,15.96724166661916 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/09,2.876838491333331 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/09,2.879929401333332 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/09,4.155456829999997 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/09,4.265506849999996 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/01,4.495305323333327 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/01,2.903360303333332 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/04/23,13.255299999999975 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/02,3.784250713333335 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/02,3.0898795000000026 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/25,8.424600001269981 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/25,4.956525000647494 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/29,6.585750000407505 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/26,3.609815910000001 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/26,3.7682999999999938 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/08/29,3.2971250000950043 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/10/08,3.9079012799999977 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/10/08,2.473897574999999 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/09/30,11.72954166666667 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/09/30,11.562616666666669 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/09/22,15.566766666856644 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/09/22,15.533950000189977 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/10/26,23.404224999999997 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/11/09,2.467086061538458 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/11/09,2.6924242307692303 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/11/01,4.1707817501925 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/10/24,11.367375000000012 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/12/27,22.25651666666668 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/12/27,22.25651666666668 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/02/27,22.468850000000007 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/02/21,10.870383333048354 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/02/21,10.520133333095853 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/04/07,7.680424998495007 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/04/07,9.681024999355014 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/04/10,14.411374999952493 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/05/26,8.124937876761667 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/05,10.541650001197478 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/05,10.402200001197478 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/05/28,16.489850004672522 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/05/28,5.427325000215003 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/22,9.583943180072502 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/07,2.463799999999998 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/07,2.977848463333334 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/21,3.614175000000007 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/21,3.1816250000000093 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/08/05,7.590892427584175 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/31,4.020170464999992 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/31,3.685595464999992 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/23,3.3899136549999973 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/23,3.711015909999992 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/01,10.152593832380957 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/08/27,7.29497915258917 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/09,12.99203333333332 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/09,13.31783333333332 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/01,4.633356824999993 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/01,3.1344545499999974 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/08/24,4.024825000000006 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/08/24,3.818173463333336 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/28,11.3320750631 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/23,22.528450000095 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/10/03,4.734194557999996 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/10/03,5.206013649999997 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/25,16.07188333333332 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/25,18.652366669039164 +Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/11/28,21.70174166666668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/01/05,11.595375000384996 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2014/12/29,15.698988832051668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2014/12/29,15.708788832051669 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/01/05,11.595375000384996 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2014/12/29,15.698988832051668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2014/12/29,15.708788832051669 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/02/07,9.443700000000012 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/01/29,22.34590833333334 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/02/07,9.443700000000012 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/01/29,22.34590833333334 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/03/11,14.01151666834416 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/02/22,11.24415833311834 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/03/11,14.01151666834416 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/02/22,11.24415833311834 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/03,22.480808333333343 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/04,21.78088333333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/04,21.78088333333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/03,22.480808333333343 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/04,21.78088333333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/04,21.78088333333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/06,10.161950007019984 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/06,5.339250000602505 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/06,10.161950007019984 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/06,5.339250000602505 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/06,14.315312502385002 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/30,9.583458387168331 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/29,4.842362145918332 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/22,4.811850000072496 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/22,6.433175000000008 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/06,14.315312502385002 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/30,9.583458387168331 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/29,4.842362145918332 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/22,4.811850000072496 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/22,6.433175000000008 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/07/08,20.15435833333334 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/22,4.841873330838339 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/30,17.90455000040001 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/07/08,20.15435833333334 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/22,4.841873330838339 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/30,17.90455000040001 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/08/09,4.266835646666658 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/07/24,12.084924998297502 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/08/01,3.6769750000000023 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/08/09,4.266835646666658 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/07/24,12.084924998297502 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/08/01,3.6769750000000023 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/03,8.626491860803329 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/11,3.660706819999994 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/11,4.371508905769227 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/02,24.8506250024425 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/03,8.626491860803329 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/11,3.660706819999994 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/11,4.371508905769227 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/02,24.8506250024425 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/10/05,8.788816669016668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/26,3.4528386399999955 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/10/04,2.5445952000000016 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/27,2.5265453249999985 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/27,2.8992163615384587 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/10/05,8.788816669016668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/26,3.4528386399999955 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/10/04,2.5445952000000016 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/27,2.5265453249999985 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/27,2.8992163615384587 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/05,4.000099999999998 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/05,4.000099999999998 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/12/08,3.7318449019230737 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/29,7.129707583333325 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/22,13.066158332638354 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/12/07,2.426490449999999 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/21,3.504850029999994 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/12/08,3.7318449019230737 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/29,7.129707583333325 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/22,13.066158332638354 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/12/07,2.426490449999999 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/21,3.504850029999994 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/03/05,21.67155833333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/03/05,21.77565833333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/03/05,21.67155833333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/03/05,21.77565833333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/05,22.348225000000006 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/05,22.348225000000006 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/30,3.015590949999996 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/21,9.160631197357748 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/08,3.017375000000005 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/29,5.8550799433858245 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/30,3.015590949999996 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/21,9.160631197357748 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/08,3.017375000000005 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/29,5.8550799433858245 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/23,10.523137499617505 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/09,3.0975250000000063 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/31,5.176800504375234 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/24,11.99268333364333 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/24,12.405574999999988 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/23,10.523137499617505 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/09,3.0975250000000063 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/31,5.176800504375234 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/24,11.99268333364333 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/24,12.405574999999988 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/24,4.726267439704169 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/11,3.4747128817141664 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/11,3.73171212362333 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/02,17.381125000399983 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/25,2.935175180769228 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/25,5.949859089999998 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/24,4.726267439704169 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/11,3.4747128817141664 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/11,3.73171212362333 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/02,17.381125000399983 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/25,2.935175180769228 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/25,5.949859089999998 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/11,5.201391670824164 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/04,6.294244693670834 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/03,12.16468335518334 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/27,9.082500000072509 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/27,6.306802249999997 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/11,5.201391670824164 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/04,6.294244693670834 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/03,12.16468335518334 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/27,9.082500000072509 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/27,6.306802249999997 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/05,6.610918181007503 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/27,3.5752083616666592 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/04,4.150974999999995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/05,6.610918181007503 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/27,3.5752083616666592 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/04,4.150974999999995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/07,4.275649271666658 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/21,3.761105303333326 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/06,2.685395200000002 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/29,6.120213645481669 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/29,6.090334479082501 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/07,4.275649271666658 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/21,3.761105303333326 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/06,2.685395200000002 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/29,6.120213645481669 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/29,6.090334479082501 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/08,4.381292307999996 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/23,5.7438178931327775 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/07,2.7025326749999983 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/08,4.381292307999996 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/23,5.7438178931327775 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/07,2.7025326749999983 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/23,3.752955192307692 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/23,3.752955192307692 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/12/25,21.75304166666668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/12/25,21.75304166666668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/03/08,14.944999999905008 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/02/20,20.247183333238368 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/03/08,14.944999999905008 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/02/20,20.247183333238368 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/03/23,22.177183333333343 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/09,20.228183333285862 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/09,20.228183333285862 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/03/23,22.177183333333343 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/09,20.228183333285862 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/09,20.228183333285862 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/24,9.447853329748346 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/05/11,4.1229326333333285 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/05/11,4.264771753333329 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/24,9.447853329748346 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/05/11,4.1229326333333285 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/05/11,4.264771753333329 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/06/11,8.758244166094169 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/06/11,8.758244166094169 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/05,8.784358332640846 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/05,8.784358332640846 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/29,12.132899997170004 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/30,3.759507359999995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/30,5.042243426666661 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/29,12.132899997170004 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/30,3.759507359999995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/30,5.042243426666661 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/08/30,7.804038641739166 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/08/23,2.434111964739168 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/08/30,7.804038641739166 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/08/23,2.434111964739168 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/01,3.3361113799999966 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/09/24,3.705443944444166 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/02,2.439203499999999 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/02,3.0757332923076883 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/09/23,3.8747499999999975 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/01,3.3361113799999966 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/09/24,3.705443944444166 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/02,2.439203499999999 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/02,3.0757332923076883 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/09/23,3.8747499999999975 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/11/11,9.38102804333333 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/11/11,9.38102804333333 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/12/04,9.477756253792505 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/11/27,4.573624999970003 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/01/29,10.931250000000013 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/05/05,10.343127092993331 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/05/29,21.922008333618347 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/05/30,14.745866684061678 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/05/30,10.210670839275842 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/07/09,3.6638750000724936 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/07/08,18.38315000028251 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/07/01,4.969587503434995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/07/01,7.470025010157489 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/06/22,6.37152500353749 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/08/10,3.723693958478332 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/08/09,10.393966670391656 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/08/25,7.182966675866668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/10/04,22.439091666666677 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/10/05,2.751706800000002 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/10/05,2.9572913750000005 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/12/07,22.76205 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/12/08,21.867666666666683 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/02/01,21.88613333333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/01/25,21.75304166666668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/01/25,21.75304166666668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/02/26,21.75304166666668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/02/26,21.794191666666684 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/05/08,7.57784167356666 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/04/22,12.628849999904997 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/06/01,10.891787499810013 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/06/09,6.597638753345239 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/07/03,4.734194701620829 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/06/26,12.701500013872508 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/08/04,4.309510723984047 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/07/28,12.703056256677495 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/08/05,3.887424999999996 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/08/05,5.641474251666662 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/07/27,11.028250000357492 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/05,3.127796976666661 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/08/29,3.3564704507249967 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/06,3.979640904999996 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/06,5.150229524999995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/21,7.105021966666669 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/10/08,5.110243279999994 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/10/08,5.490859179999993 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/22,7.652964778004998 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/22,7.6773397781474975 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/11/08,4.712774998465006 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/11/09,3.5018750000000045 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/10/24,5.312425000000001 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/10/24,3.77191212833333 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/12/11,13.59475833359084 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/12/11,15.60258750049002 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/11/25,11.872974999999986 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/11/25,6.932674705586075 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/02/05,22.76205 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/02/21,11.114750000385005 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/03/07,21.67155833333335 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/02/29,12.157308333318326 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/02/29,11.11258333331834 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/02,12.164366687246671 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/04/25,9.791833333828333 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/03,7.620816675866662 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/03,7.997091678166655 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/27,4.116093940652495 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/06/11,3.656738461538464 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/06/04,15.835391666856651 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/06/04,2.7676750000000068 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/26,3.705543943333331 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/07/06,2.2379770750000008 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/07/06,3.213395961538458 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/31,8.5301250133975 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/22,5.322754167769169 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/09/08,3.5232500000000067 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/09/08,3.005250000000008 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/30,9.138950001032493 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/23,3.183652250000005 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/23,2.676775000000004 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/10/10,18.27495833338086 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/10/10,17.066050004600033 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/09/24,12.680958333285822 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/09/24,13.79275833333332 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/12/29,12.422958335585829 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/01/30,21.791766666666685 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/03/11,9.68006666666668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/02/23,22.34590833333334 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/03/26,10.857833333333351 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/05/06,4.299878963333325 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/05/06,4.226162233333329 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/06/07,2.582025000047498 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/06/07,2.368452250047499 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/05/29,23.897831666856664 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/02,7.908849168739176 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/10,3.8148545 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/10,3.876607692307688 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/07/25,3.4147795000000043 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/07/25,2.7124750000000044 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/26,14.50681666920417 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/26,7.5863583364408385 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/06,6.289876529109166 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/09,3.340558213 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/09,3.779320474999998 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/05,3.145950000000004 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/10/29,2.055774849999997 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/10/29,2.427389079395602 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/24,7.233670550000003 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/21,2.8908704000000016 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/12/24,10.234175000000029 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/02/26,22.47567500000001 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/04/06,11.237241666381683 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/03/29,21.791766666666685 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/09,3.991169554999993 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/09,3.922384094999992 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/09,4.089626399999997 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/09,4.851505999999994 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/08,5.363672354886671 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/01,3.138959504999998 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/01,5.44700009999999 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/04/30,5.882988650923329 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/04/22,15.609474999904997 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/31,4.811936373612498 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/26,15.132554165901665 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/26,14.158012498469995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/10,5.233222561875952 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/10,5.581734675304289 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/25,2.882777250000006 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/25,2.5637500000000037 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/24,7.512900000262481 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/29,3.8594500001449945 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/07/11,12.315831247822487 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/07/03,4.957648536045835 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/26,4.344225000072496 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/26,12.292825049522513 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/25,7.33434582879584 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/07/28,2.707975000000006 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/07/28,2.671002250000006 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/08/29,2.837375000000005 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/08/29,3.517250000000006 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/08/28,3.6578022799999945 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/10/08,2.7847710600000006 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/10/08,3.105832542307691 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/30,22.183566666716654 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/29,3.6679500000950047 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/22,11.96258333311832 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/22,12.74057499978499 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/21,4.090534209999992 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/10/31,12.814400001857493 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/10/26,7.093675000200009 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/11/09,2.188772599999997 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/11/09,2.537822142857143 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/11/08,2.3505953500000003 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/12/10,2.4357045000000013 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/11/24,2.9515199999999995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/01/11,22.172349999785016 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/12/27,11.60110833351833 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/12/27,14.102316666141666 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/02/21,21.529824999737524 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/02/21,13.142891665591664 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/10,14.051374999952492 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/09,14.576583333238334 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/02,22.42222499978501 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/02,22.56372499978501 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/01,11.717666666851668 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/09,12.135425012107476 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/31,14.06706818007251 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/26,8.070779540290001 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/06/05,4.008450000144995 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/06/05,9.222191666666674 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/28,22.724291680684185 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/28,11.93555833355083 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/27,13.173145833333338 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/06/22,7.857970450072498 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/06,11.659159100241654 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/08/05,7.119658317658337 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/31,7.61540624840752 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/31,6.2842374982175055 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/30,10.544716667244154 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/23,7.188262876786674 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/23,4.640790910095004 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/01,7.679300000287501 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/08/27,3.78776643687596 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/09,6.206625000842495 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/09,6.1873000008174985 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/01,8.592252270167501 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/01,7.692852270119999 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/08/31,5.9149068200725 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/08/23,3.166117887499998 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/28,13.304175022884982 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/10/03,9.222916673639148 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/10/03,8.433708337933325 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/10/02,4.173326369999993 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/25,17.587870839588327 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/25,19.44529166666667 +Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/11/03,2.8520784174999965 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2014/12/29,9.928125000385002 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2014/12/29,9.928125000385002 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/02/23,22.451158333333343 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/02/23,22.451158333333343 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/04/28,6.497900004865001 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/05/06,4.109825000072498 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/04/28,6.497900004865001 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/05/06,4.109825000072498 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/05/22,2.499404750000004 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/05/22,2.499404750000004 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/06/23,12.851574999569989 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/06/23,12.851574999569989 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/08/02,16.540962499707515 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/08/02,16.540962499707515 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/03,7.765697918824161 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/11,4.376056160576921 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/03,7.765697918824161 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/11,4.376056160576921 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/10/05,3.0065765167391665 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/27,3.589160298076923 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/10/05,3.0065765167391665 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/27,3.589160298076923 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/11/22,3.567417431666663 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/11/22,3.567417431666663 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/02/02,13.30103333331833 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/02/02,13.30103333331833 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/02/26,13.212483333190836 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/02/26,13.212483333190836 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/03/29,13.672116710366677 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/03/29,13.672116710366677 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/04/30,3.859635623333326 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/05/08,2.989729500000005 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/04/30,3.859635623333326 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/05/08,2.989729500000005 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/06/09,12.83217500019998 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/06/09,12.83217500019998 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/07/03,15.121058332950827 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/06/25,3.449834848333331 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/07/03,15.121058332950827 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/06/25,3.449834848333331 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/08/04,6.017372726884178 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/07/27,3.563375000000005 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/08/04,6.017372726884178 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/07/27,3.563375000000005 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/05,3.403337898405828 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/08/28,3.217365910482497 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/05,3.403337898405828 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/08/28,3.217365910482497 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/10/07,3.661021366999996 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/21,3.131113644999996 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/29,3.611827476831498 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/10/07,3.661021366999996 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/21,3.131113644999996 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/29,3.611827476831498 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/11/08,4.949212917714278 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/10/23,4.207626675333328 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/11/08,4.949212917714278 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/10/23,4.207626675333328 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/12/10,7.075199994750009 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/12/02,2.2489250000000003 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/12/10,7.075199994750009 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/12/02,2.2489250000000003 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/03/08,18.53713958420836 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/03/08,18.53713958420836 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/04/09,15.081208334003334 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/04/09,15.081208334003334 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/05/03,6.69272082252584 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/05/11,4.326000000144998 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/05/03,6.69272082252584 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/05/11,4.326000000144998 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/07,2.7103791671916677 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/07/30,2.3442823625 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/07,2.7103791671916677 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/07/30,2.3442823625 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/23,7.645058338003334 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/31,4.405274999999997 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/23,7.645058338003334 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/31,4.405274999999997 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/10/10,3.1166340900475014 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/09/24,7.113524252101668 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/10/02,2.7580920986263737 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/10/10,3.1166340900475014 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/09/24,7.113524252101668 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/10/02,2.7580920986263737 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/11/11,4.444697011666662 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/11/11,4.444697011666662 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/01/06,21.66638333333335 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/04/28,2.5780522500000007 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/05/30,9.932307202447491 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/07/09,3.939688660072494 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/07/01,16.356100000362524 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/08/10,3.655701367999991 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/09/03,7.907279169501664 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/10/05,4.334576636538461 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/11/22,2.859002250000006 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/02/02,22.348225000000006 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/02/10,11.358233333518331 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/01/25,10.194559090142494 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/04/23,12.0292249984425 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/06/26,3.1220212133333307 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/07/28,6.476083941114166 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/08/05,2.825540124999999 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/08/29,4.181518935652494 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/09/06,2.737602250000004 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/10/08,2.555524850000001 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/09/22,16.652324999999983 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/11/01,17.256604167411677 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/11/09,4.469533344465001 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/10/24,4.668079730769223 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/12/11,14.76787500025752 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/11/25,3.83311602980769 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/02/05,13.089475000385 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/04/01,2.5242256125000004 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/04/25,5.627951533333329 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/05/03,5.801933342960828 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/05/27,6.534684090072513 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/06/04,6.6355000000725 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/07/06,3.711723618205125 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/07/30,8.618977361273593 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/08/07,4.332700000289995 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/08/31,2.688756061666665 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/09/08,3.5435250005074943 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/08/23,3.750518179999995 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/10/10,14.275525000145016 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/09/24,9.430700001317485 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/03/11,11.960156252442497 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/03/27,9.18563333309583 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/05/06,3.127116673333339 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/06/07,20.635841666651658 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/06/23,2.540981749999999 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/08/02,6.622987919481667 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/08/10,4.755134099999996 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/07/25,6.451340761538454 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/09/03,2.272384100000001 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/09/11,2.83590525 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/08/26,6.581375 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/11/06,14.511041678166674 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/11/04,4.967404602820511 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/10/29,3.047902524038459 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/02/02,13.92573333328583 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/03/22,11.168512503934998 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/09,3.923961369999995 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/09,3.590419349999998 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/01,2.715352760000002 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/04/23,8.546850000504989 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/26,17.755683333333327 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/06/02,3.54476775410256 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/25,4.486775000887496 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/06/29,16.550649999139992 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/07/04,14.91553333371833 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/06/26,6.599225000192496 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/08/05,10.830141666841657 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/07/28,2.591975000000001 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/10/09,7.070999997330015 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/10/08,2.909769199999998 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/09/22,2.415147600000002 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/10/26,6.788449999710009 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/11/09,3.2975794168956027 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/02/21,10.761116666429182 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/04/07,9.042108335680824 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/04/26,5.787920839778333 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/05/26,3.228559090144999 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/06/05,11.723339589630816 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/05/28,18.57300000258501 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/07/04,17.774816666451656 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/06/22,7.548843180627499 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/06/21,4.485643180144997 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/08/05,6.57405416942167 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/07/31,2.7133839406824984 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/07/31,6.308205891573217 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/07/23,5.189428676666664 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/01,4.040040910289991 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/08/22,7.571025004062511 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/09,2.780452250000007 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/01,5.3510234633333305 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/28,15.723031470316664 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/10/03,4.678062764999994 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/25,3.764081474999996 +Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/10/27,14.02332916643167 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/01/05,8.923841667051665 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/01/05,8.923841667051665 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/01/22,21.49190833333335 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/01/22,21.49190833333335 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/03/02,15.077458333333334 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/02/23,22.64890000000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/03/10,21.66638333333335 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/02/22,13.9816249999525 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/03/02,15.077458333333334 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/02/23,22.64890000000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/03/10,21.66638333333335 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/02/22,13.9816249999525 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/04/03,11.475058332688334 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/04/03,11.475058332688334 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/06,10.664000007019986 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/06,10.604658340353314 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/06,10.664000007019986 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/06,10.604658340353314 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/06,6.055569162201664 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/29,3.876179599999994 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/06,6.055569162201664 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/29,3.876179599999994 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/07/08,4.525670836380836 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/23,2.698675000000004 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/23,2.711625000000006 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/07/08,4.525670836380836 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/23,2.698675000000004 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/23,2.711625000000006 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/09,4.683934199999987 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/01,7.501508340305827 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/09,4.683934199999987 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/01,7.501508340305827 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/03,19.69638560809334 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/03,19.45436060838084 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/25,4.164133228144988 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/11,4.66036880466666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/11,4.983359704666663 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/02,5.691150001207501 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/26,3.1606659380769218 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/26,3.0960504899999988 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/03,19.69638560809334 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/03,19.45436060838084 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/25,4.164133228144988 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/11,4.66036880466666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/11,4.983359704666663 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/02,5.691150001207501 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/26,3.1606659380769218 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/26,3.0960504899999988 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/05,7.515149243405839 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/05,7.2320492434058385 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/26,7.506876516666668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/04,3.389330283333328 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/27,3.486514137499997 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/27,4.704409380769224 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/05,7.515149243405839 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/05,7.2320492434058385 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/26,7.506876516666668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/04,3.389330283333328 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/27,3.486514137499997 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/27,4.704409380769224 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/05,2.3905453500000013 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/05,2.3905453500000013 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/08,4.792341664476666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/08,6.129869165421667 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/29,15.360855326091666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/07,2.51783175 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/21,5.128550002299996 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/08,4.792341664476666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/08,6.129869165421667 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/29,15.360855326091666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/07,2.51783175 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/21,5.128550002299996 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/02/26,9.167799999667515 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/02/26,9.170349999667518 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/02/26,9.167799999667515 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/02/26,9.170349999667518 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/05,10.314508335200829 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/05,10.314508335200829 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/30,6.318525000217501 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/30,6.900972730072498 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/21,7.532014408333336 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/29,5.167625004672493 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/30,6.318525000217501 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/30,6.900972730072498 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/21,7.532014408333336 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/29,5.167625004672493 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/05/23,5.02437643814417 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/05/31,8.757448108543336 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/05/23,5.02437643814417 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/05/31,8.757448108543336 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/03,3.293933247307692 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/03,3.432686979999998 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/24,18.1094000046 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/11,4.672750001014993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/11,4.801650000942492 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/25,7.428334090000005 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/25,7.730234089999999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/03,3.293933247307692 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/03,3.432686979999998 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/24,18.1094000046 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/11,4.672750001014993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/11,4.801650000942492 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/25,7.428334090000005 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/25,7.730234089999999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/11,6.971803575898568 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/04,3.6388000004349936 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/04,3.5155000005549937 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/26,6.527185422799168 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/03,13.528883333453331 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/27,4.711921827999992 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/27,5.16049227499999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/11,6.971803575898568 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/04,3.6388000004349936 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/04,3.5155000005549937 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/26,6.527185422799168 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/03,13.528883333453331 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/27,4.711921827999992 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/27,5.16049227499999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/05,3.855300000072495 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/05,3.826775000072494 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/27,4.089974999999993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/04,3.822450763333328 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/28,16.05300834266332 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/28,14.735025009484987 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/05,3.855300000072495 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/05,3.826775000072494 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/27,4.089974999999993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/04,3.822450763333328 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/28,16.05300834266332 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/28,14.735025009484987 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/07,7.439844696666665 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/07,7.599918179999998 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/21,3.372462886666664 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/21,3.0816098533333305 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/06,3.057231700000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/29,8.861725000289983 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/29,6.408125000312494 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/07,7.439844696666665 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/07,7.599918179999998 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/21,3.372462886666664 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/21,3.0816098533333305 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/06,3.057231700000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/29,8.861725000289983 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/29,6.408125000312494 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/08,9.867100002372489 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/08,8.053033335778323 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/23,22.28654167586668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/23,21.367058349528342 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/07,7.042304350000007 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/08,9.867100002372489 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/08,8.053033335778323 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/23,22.28654167586668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/23,21.367058349528342 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/07,7.042304350000007 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/12/10,22.337341666666678 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/12/10,22.337341666666678 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/01/11,21.193008333190857 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/01/02,22.348225000000006 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/01/11,21.193008333190857 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/01/02,22.348225000000006 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/04,10.532224999857515 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/04,10.493499999857512 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/04,10.532224999857515 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/04,10.493499999857512 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/08,14.555699999905007 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/08,14.805649999905008 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/27,21.675758333333352 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/20,21.519783335633356 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/08,14.555699999905007 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/08,14.805649999905008 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/27,21.675758333333352 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/20,21.519783335633356 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/23,22.308199999355008 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/23,22.308199999355008 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/04/24,15.764141678166675 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/05/11,3.719216663333329 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/05/11,2.6002331250000004 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/04/24,15.764141678166675 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/05/11,3.719216663333329 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/05/11,2.6002331250000004 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/06/11,23.559516667141683 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/06/11,23.559516667141683 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/05,2.773236300000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/05,2.773236300000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/30,4.001436429999991 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/30,3.187325725 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/30,4.001436429999991 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/30,3.187325725 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/08/30,6.7498045461099965 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/07,3.142050000000008 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/08/22,8.894675000457493 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/08/30,6.7498045461099965 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/07,3.142050000000008 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/08/22,8.894675000457493 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/10,5.9191431802175 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/10,5.490870450289999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/01,4.809366559047613 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/24,12.76532500021501 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/24,9.192116666834174 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/02,2.749408800000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/02,3.138877510769228 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/23,3.950618199999993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/10,5.9191431802175 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/10,5.490870450289999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/01,4.809366559047613 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/24,12.76532500021501 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/24,9.192116666834174 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/02,2.749408800000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/02,3.138877510769228 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/23,3.950618199999993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/11/11,16.32467063615773 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/11/11,15.165457524202491 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/11/11,16.32467063615773 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/11/11,15.165457524202491 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/05/05,4.920546973218335 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/04/28,24.19329792483169 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/04/28,24.838172917294187 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/05/29,10.273645833880828 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/05/30,4.304199999999994 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/05/30,4.538169701739159 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/09,12.3075636404825 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/09,10.581133334105834 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/08,9.870085005844976 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/01,8.555445456894981 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/01,7.000548862704163 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/06/22,3.223086300000003 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/08/10,4.3214947016666585 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/08/10,4.23632197666666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/08/09,14.407250005750004 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/09/03,2.9632750000000057 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/09/03,3.5018750000000045 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/10/05,8.959383334555813 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/10/05,9.37750000122248 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/12/08,21.791766666666685 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/11/22,21.88613333333335 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/11/22,21.791766666666685 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/02/09,13.258533333118326 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/02/02,23.218616666666662 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/03/06,22.47567500000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/03/06,22.47567500000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/02/26,21.75304166666668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/02/26,21.75304166666668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/04/23,8.448891673114167 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/04/23,8.35266667757167 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/05/08,7.562000004672491 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/04/22,11.014082501444998 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/10,19.23328333361831 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/10,20.224158332998314 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/01,11.46176458879835 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/09,2.955314464999999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/07/03,15.743795835633332 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/26,4.721484100072487 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/26,4.433661400072491 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/07/28,6.75842499409001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/08/05,4.59008869999999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/08/05,5.634066678333327 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/07/27,7.170433334028342 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/05,4.28812957999999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/08/29,4.1037583337383365 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/08/29,3.4125125004674994 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/06,4.193029654999993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/06,3.6065873549999936 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/21,17.287650000000028 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/10/08,3.983775039999995 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/10/08,5.551363739999994 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/22,12.692316666666647 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/22,12.122724999999985 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/10/24,4.604675002299997 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/10/24,2.9893318200000025 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/03/08,22.308199999355008 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/04/01,14.937742423618332 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/04/01,12.384292423808333 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/02,16.22168333563335 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/04/25,6.424530308333334 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/04/25,6.340843948333331 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/03,4.967321215633328 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/03,4.89319621563333 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/27,6.6461818206025045 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/27,6.271984090817506 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/06/11,4.933951139727498 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/26,4.261540909999999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/07/05,14.385375002372491 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/07/06,3.3271944883333275 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/07/06,4.470727284999993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/06,13.72235834244083 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/31,3.28817424166666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/31,3.872002270144995 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/22,14.238991685211674 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/09/08,12.698541666714164 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/09/08,21.225800000000007 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/23,8.125058334723315 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/23,8.162783334770815 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/10/09,13.656918945000015 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/09/24,9.946633334078324 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/09/24,10.073358333835824 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/11/10,15.951337129600024 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/10/25,10.610939583460842 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/12/29,21.867666666666683 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/12/29,21.867666666666683 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/01/29,22.674233333333337 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/02/06,21.675758333333352 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/01/30,21.75304166666668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/03/11,22.32207499935501 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/03/02,22.451158333333343 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/05/06,3.4407953033333296 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/05/06,2.9299731450000013 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/06/07,8.155150000452478 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/06/07,7.8769083336433185 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/06/23,3.7325524307692266 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/06/23,2.992745449999999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/07/24,13.834408342748326 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/10,7.777125000239994 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/10,8.094625000239995 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/07/25,5.857131820867502 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/07/25,9.378675000072498 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/25,6.061111366520002 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/09/11,12.68318333350082 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/26,19.61615833563335 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/26,6.827100001010006 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/09/26,7.576059090000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/06,10.728340946667492 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/06,7.092175009854999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/09,6.845166675705839 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/09,7.419506822372499 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/10/29,2.5593840500000016 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/10/29,2.9458023250000007 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/12/07,16.321474999999996 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/21,2.6304082000000024 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/12/24,22.95670833333333 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/02/01,22.407050000000005 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/01/25,22.18061666666668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/02/26,22.23312500000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/02/26,22.23312500000001 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/03/29,21.75304166666668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/09,6.014079550120003 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/09,3.2156619199999987 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/09,3.003176895 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/08,5.502175000000002 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/01,3.94021970666666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/01,2.75379675 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/04/30,4.6455091022999975 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/26,19.167050000594987 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/25,5.712958715180822 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/25,4.312000000839998 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/24,4.378725002012498 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/29,3.565146215870833 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/29,2.9818144057983336 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/07/03,7.608009776820007 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/26,4.68022197666666 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/26,2.8521300500000013 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/25,4.091422789999992 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/07,5.619846217390826 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/05,3.4710795 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/05,4.415674999999992 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/24,17.954466666451655 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/29,13.023583333533317 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/29,11.374800000142486 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/28,4.685915839999996 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/10/09,8.836425000000016 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/10/09,7.965450000000017 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/09/29,2.304872289999999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/09/22,6.639550000192494 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/09/22,3.073544230769234 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/09/21,4.496296867999993 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/11/09,5.475756924999998 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/11/09,5.092756969999997 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/11/08,4.323468893333332 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/10/24,22.86536666666667 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/12/10,23.83954791760919 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/12/02,10.625637499545 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/12/27,21.475091666666685 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/10,14.697099999952496 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/09,13.83451666661916 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/02,13.25233333319083 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/02,13.516324999857504 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/01,15.230349999905007 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/09,10.07346666956168 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/26,2.6058022500000018 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/26,5.29280000007249 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/31,9.362061360359997 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/26,8.188006057076667 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/26,2.9733112214783324 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/05,9.196800006972488 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/05,9.07900834037832 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/28,22.50121666896669 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/28,25.05781668070668 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/27,14.72055833590083 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/22,8.904593180312498 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/07/06,3.773604549999996 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/21,15.583283333103315 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/21,2.972875000000004 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/07/30,13.692691682766656 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/07/23,2.905375000000003 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/07/23,3.202452250000004 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/01,2.336728043670836 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/01,2.0503863606275017 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/01,7.37911591012 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/01,7.665018180334999 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/08/31,3.0378444999999976 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/08/23,2.7702264749999994 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/28,7.062020825593345 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/28,6.27989582586334 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/10/03,4.834249999999995 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/10/03,3.611234099999996 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/10/02,4.447731829999996 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/25,6.295500000217498 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/25,5.329774999999995 +Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/11/03,4.652838649999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/01/05,12.83166666660416 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/01/05,12.875316666651662 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/01/05,12.83166666660416 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/01/05,12.875316666651662 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/23,22.47810000000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/03/10,21.66638333333335 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/22,21.867666666666683 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/22,21.84966666666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/23,22.47810000000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/03/10,21.66638333333335 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/22,21.867666666666683 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/22,21.84966666666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/04/03,9.450150001385005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/04/03,9.438125000785003 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/04/03,9.450150001385005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/04/03,9.438125000785003 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/05,8.262624998377506 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/05,10.554745836830842 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/06,4.636975000072497 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/05,8.262624998377506 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/05,10.554745836830842 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/06,4.636975000072497 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/06/06,13.791487503524992 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/06/06,14.150579170001658 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/29,6.054850000577496 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/29,5.346675000817503 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/22,6.199831079064993 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/06/06,13.791487503524992 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/06/06,14.150579170001658 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/29,6.054850000577496 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/29,5.346675000817503 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/22,6.199831079064993 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/07/08,20.69054166666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/07/08,19.60235833333333 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/07/08,20.69054166666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/07/08,19.60235833333333 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/02,20.80498333327082 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/10,8.949099995472496 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/01,3.6279692307692297 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/01,7.510059000000008 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/02,20.80498333327082 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/10,8.949099995472496 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/01,3.6279692307692297 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/01,7.510059000000008 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/03,7.353762500075016 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/25,3.7021947066666634 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/25,3.646721206666663 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/11,2.542267900000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/02,4.708234100312493 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/02,6.476575000577502 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/26,4.76806575 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/03,7.353762500075016 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/25,3.7021947066666634 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/25,3.646721206666663 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/11,2.542267900000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/02,4.708234100312493 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/02,6.476575000577502 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/26,4.76806575 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/05,6.760534843333334 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/26,12.121358333453324 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/26,11.85638333575332 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/04,3.0310362000000004 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/04,2.9801634500000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/27,2.432137568269229 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/05,6.760534843333334 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/26,12.121358333453324 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/26,11.85638333575332 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/04,3.0310362000000004 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/04,2.9801634500000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/27,2.432137568269229 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/05,2.339698680769228 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/05,2.3196077307692278 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/05,2.339698680769228 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/05,2.3196077307692278 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/08,6.885649997330011 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/29,10.15796670371167 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/29,7.085183343875831 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/07,3.0550500000000085 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/07,2.9352000000000062 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/30,4.193096042307688 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/08,6.885649997330011 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/29,10.15796670371167 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/29,7.085183343875831 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/07,3.0550500000000085 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/07,2.9352000000000062 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/30,4.193096042307688 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/01/08,20.4492166666192 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/01/08,20.4492166666192 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/10,22.76205 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/02,3.522725000000006 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/10,22.76205 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/02,3.522725000000006 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/26,14.138791666666664 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/26,14.138791666666664 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/05,13.731908208461942 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/05,14.17422904630027 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/05,13.731908208461942 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/05,14.17422904630027 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/07,9.791989614413325 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/07,7.363834266620836 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/30,3.403511394999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/21,7.330525014999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/21,6.802328801666665 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/08,2.945375000000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/29,8.64116666922915 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/29,7.052733335705815 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/07,9.791989614413325 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/07,7.363834266620836 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/30,3.403511394999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/21,7.330525014999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/21,6.802328801666665 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/08,2.945375000000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/29,8.64116666922915 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/29,7.052733335705815 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/23,10.364720835898336 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/23,9.671137501900002 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/31,8.456676143792501 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/31,7.212872729755005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/23,10.364720835898336 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/23,9.671137501900002 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/31,8.456676143792501 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/31,7.212872729755005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/03,15.627700023047511 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/24,9.52135833461334 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/24,9.12083333461334 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/02,3.336425000000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/25,2.68980214 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/03,15.627700023047511 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/24,9.52135833461334 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/24,9.12083333461334 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/02,3.336425000000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/25,2.68980214 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/11,10.126266673901664 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/11,5.690250000695001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/04,3.308483192999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/26,4.8576030500125045 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/26,4.535842429500831 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/03,3.327829099999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/03,7.432611349999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/27,3.4214881307692284 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/11,10.126266673901664 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/11,5.690250000695001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/04,3.308483192999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/26,4.8576030500125045 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/26,4.535842429500831 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/03,3.327829099999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/03,7.432611349999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/27,3.4214881307692284 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/05,3.8175863999999904 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/27,3.061318189999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/27,2.8498931899999973 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/04,4.161838674999991 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/04,4.558686349999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/28,2.8548250000000035 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/05,3.8175863999999904 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/27,3.061318189999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/27,2.8498931899999973 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/04,4.161838674999991 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/04,4.558686349999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/28,2.8548250000000035 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/07,4.6760000510476125 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/28,6.283749993445011 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/28,8.127056244140004 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/21,4.190008351666657 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/06,2.4414031423076907 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/06,2.31521219230769 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/29,4.546675000627497 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/07,4.6760000510476125 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/28,6.283749993445011 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/28,8.127056244140004 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/21,4.190008351666657 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/06,2.4414031423076907 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/06,2.31521219230769 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/29,4.546675000627497 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/08,4.587478053333324 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/23,4.272188768666664 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/07,7.880886254807699 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/07,3.173510274038462 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/08,4.587478053333324 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/23,4.272188768666664 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/07,7.880886254807699 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/07,3.173510274038462 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/10,22.137733333333344 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/09,14.354975000337506 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/09,13.793449999937504 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/23,2.6094910700000016 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/23,2.955873069999999 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/10,22.137733333333344 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/09,14.354975000337506 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/09,13.793449999937504 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/23,2.6094910700000016 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/23,2.955873069999999 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/01/02,22.26459166666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/25,21.75304166666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/01/02,22.26459166666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/25,21.75304166666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/03,22.407050000000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/03,22.407050000000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/08,15.032624999905009 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/27,22.03839999973751 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/20,20.383683333238366 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/08,15.032624999905009 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/27,22.03839999973751 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/20,20.383683333238366 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/23,22.304499999355013 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/23,22.304499999355013 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/09,20.50831666666669 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/23,22.304499999355013 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/23,22.304499999355013 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/09,20.50831666666669 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/24,12.594608356333346 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/24,12.608308356333348 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/05/11,5.969560988405821 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/24,12.594608356333346 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/24,12.608308356333348 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/05/11,5.969560988405821 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/06/11,7.878133326950835 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/06/11,8.146883326998337 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/06/11,7.878133326950835 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/06/11,8.146883326998337 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/05,3.1455022500000047 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/05,3.275425000192504 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/05,3.1455022500000047 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/05,3.275425000192504 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/29,21.18848333295583 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/29,22.427308332598333 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/06,6.120133336440825 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/06,6.294183336250824 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/30,2.807782195000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/29,21.18848333295583 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/29,22.427308332598333 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/06,6.120133336440825 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/06,6.294183336250824 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/30,2.807782195000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/30,4.7308257603849935 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/30,6.624803030457498 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/23,15.806054166666682 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/30,4.7308257603849935 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/30,6.624803030457498 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/23,15.806054166666682 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/10,10.51379167351916 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/01,4.202315206666658 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/01,3.8701788666666577 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/24,2.932040900072497 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/02,2.565349491895604 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/23,4.210997724999996 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/23,4.948750000000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/10,10.51379167351916 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/01,4.202315206666658 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/01,3.8701788666666577 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/24,2.932040900072497 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/02,2.565349491895604 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/23,4.210997724999996 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/23,4.948750000000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/11,4.238656066666662 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/10,4.803025000144995 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/10,5.107918200094993 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/11,4.238656066666662 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/10,4.803025000144995 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/10,5.107918200094993 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/12/04,14.270991667771677 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/12/04,15.247889584133343 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/01/05,22.404625000000006 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/01/29,12.121525000000002 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/01/29,9.23580833280834 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/03/26,21.17380833323836 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/05,8.419518337980824 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/05,5.221850002394996 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/29,6.787869158694165 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/29,6.727952494729998 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/30,11.15908334928082 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/07/09,15.067391685066662 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/07/08,26.19330833323584 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/07/08,25.985574999807504 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/07/01,8.8928750003625 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/06/22,5.816217437573333 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/06/22,5.453254937935834 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/08/10,4.458674261666656 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/08/09,5.308750000094999 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/08/09,5.733975000167511 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/09/27,5.995558325303347 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/10/05,2.5305103250000025 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/12/07,10.003650000000016 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/12/07,10.04294999978501 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/12/08,21.88613333333335 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/11/22,21.66638333333335 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/02/09,13.394541666429172 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/02/09,13.912808333190831 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/03/06,9.95794166645168 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/02/26,21.794191666666684 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/04/23,12.619803613101055 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/05/08,5.1302390223483325 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/05/08,5.057711380353333 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/04/22,12.164825032395015 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/04/22,14.81721669429668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/10,22.07452499922501 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/01,11.052539589035858 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/01,10.759164587210854 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/09,6.872017046545 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/09,6.854917046690002 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/03,4.319649748754408 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/03,4.414976529720837 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/26,20.993391666666643 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/04,9.923525000237488 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/08/04,4.866474246148333 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/08/04,6.658606666866668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/28,7.846854164149182 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/08/05,3.930444430769223 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/27,4.345125000000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/27,3.887225000000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/05,4.265418386666656 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/05,4.203284286666656 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/08/29,3.3581091018841613 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/06,2.9964407000000013 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/21,7.968724999999998 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/21,7.130293179999996 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/10/08,2.335504374999999 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/22,13.168774999999991 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/11/08,7.485416666001681 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/11/08,7.439941666049182 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/10/23,7.160250000142506 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/10/23,12.064857930069165 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/10/24,4.482235000144995 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/12/11,11.551418751210026 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/11/25,11.941272551538466 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/02/05,11.760633333518332 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/03/08,22.29679999935501 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/02,12.512983358108343 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/02,12.512983358108343 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/04/25,7.153400000072501 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/10,2.6461045000000007 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/10,3.1813500000000072 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/03,3.1106568300000026 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/27,6.35965909014501 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/06/04,4.835200000362498 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/26,3.7796531999999927 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/26,3.649590924999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/07/06,2.4860191750000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/08/06,5.507262125459171 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/08/06,5.7054579585775045 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/07/30,3.278000010772499 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/08/31,2.908051854102563 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/09/08,2.885350000000003 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/08/23,3.4423973999999937 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/09,5.642916559047615 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/09,5.234000659047614 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/09/23,15.955949999494996 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/09/23,15.101499999750006 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/10,12.497883333333329 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/09/24,3.587125000072492 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/11/10,9.468042315714284 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/11/10,10.19858777238094 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/25,9.993275011099996 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/25,8.431850005597505 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/12/29,21.791766666666685 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/01/29,22.539900000000006 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/01/29,22.67296666666667 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/03/11,9.257408333190828 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/03/02,22.480808333333343 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/03/02,22.480808333333343 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/05/06,2.735702250000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/06/06,21.67110833024084 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/06/06,21.856124996767495 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/06/07,3.556175000095007 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/06/23,3.22776923076923 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/07/24,18.724129166666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/07/24,18.006287499617496 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/08/10,4.176846213525829 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/07/25,3.411002250000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/08/25,16.520191676154184 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/08/25,15.017466671601678 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/08/26,3.7496500000000026 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/09/26,6.430850000145007 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/09/26,5.435200000192502 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/06,4.747719762714279 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/09,3.562268189999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/05,2.442268375000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/05,4.044334653846157 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/10/29,2.571984905769232 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/24,2.8169168307692307 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/24,2.491083811538459 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/21,2.6474170750000003 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/21,2.106331699999998 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/01/08,21.750616666666684 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/02/01,22.26459166666668 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/03/30,10.91966666685167 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/06,16.654675007262497 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/06,16.405566671891663 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/03/29,13.767474999952496 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/03/29,13.889274999952494 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/03/22,14.2798249999525 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/09,4.381947729999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/09,2.465967500000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/08,6.021807214542494 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/08,5.929078045575827 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/01,3.15531748 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/30,4.757815175565836 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/30,4.775252679100835 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/22,3.6389750000000074 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/26,4.837487502997506 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/10,5.114687167380187 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/25,4.635159100119993 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/24,5.303993561224168 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/24,5.3799518964025 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/04,7.897624995267499 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/04,21.245374999345003 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/29,9.863525004814996 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/11,12.50495833333332 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/11,12.48960833340582 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/03,8.644864776675004 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/03,8.680206442421667 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/26,3.2776589357692263 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/25,8.794573108693337 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/25,8.373709775552504 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/07,3.9364499999150113 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/07,7.5037375025100035 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/05,3.6116870633333327 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/09/10,5.948278787679169 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/09/10,7.430987877559171 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/24,12.332066670519175 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/24,12.027700004452509 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/29,2.8968250000000046 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/28,2.470674999999999 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/28,2.4033544649999983 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/09/21,5.777300000335007 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/09/21,5.777300000335007 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/10/31,12.254358338713338 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/10/31,11.403616671021672 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/09,2.545250697664834 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/08,2.157561249999997 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/08,2.1044679999999976 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/10/24,23.907158333333324 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/12/10,3.0091908000000003 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/12/10,2.817144224999999 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/12/02,6.3379333335083325 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/12/02,7.140458333690829 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/24,2.340499040000002 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/24,3.437422599999999 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/01/11,10.702949999785003 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/01/11,10.887791667051667 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/02/20,11.166274584590852 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/10,11.567258333238328 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/09,15.81944999995249 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/09,15.881249999952493 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/02,12.578408333285823 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/01,14.26060000038501 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/01,14.256349999522506 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/09,10.561916669561684 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/09,10.298454169156678 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/31,5.005193180482493 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/31,3.860393180434996 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/26,4.139712896811662 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/06/05,6.0460812505924855 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/28,11.817258333405825 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/27,19.632587499999985 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/27,18.21885833333332 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/06/22,3.0536878867391617 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/06/22,2.7647878967391653 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/06,5.340139020395834 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/06,5.2737859940866665 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/06/21,2.8803757133333336 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/05,9.869431251117511 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/31,12.94530227736999 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/30,13.802058333523323 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/30,2.673802250000005 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/23,17.84339166622165 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/22,7.885575001322484 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/22,16.09318333371333 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/01,4.551439285786777 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/01,4.480889285786778 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/01,3.3141478000724964 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/31,4.405435616666662 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/31,4.357824241666662 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/23,2.140004500000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/23,2.087879500000001 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/28,6.289855714295835 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/28,8.252009887560007 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/10/03,3.857376377999994 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/10/02,4.191128043333329 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/10/02,3.726499213333331 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/25,3.3462944999999977 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/11/03,3.8806210549999975 +Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/11/03,3.158537554999998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/01/05,3.560400000072503 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/01/05,3.560400000072503 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/05,3.544558332358337 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/06,4.978088679999992 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/05,3.544558332358337 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/06,4.978088679999992 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/06,17.136112500500005 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/07,4.657304170851663 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/29,17.739333333333317 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/22,9.299550000144992 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/06,17.136112500500005 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/07,4.657304170851663 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/29,17.739333333333317 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/22,9.299550000144992 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/22,4.072469163329171 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/23,9.334519230914225 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/22,4.072469163329171 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/23,9.334519230914225 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/09,3.6070363602174975 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/02,3.471570281538462 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/07/24,10.776933332650849 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/10,4.411387011538458 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/01,11.595950000119997 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/07/25,17.45324166671418 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/09,3.6070363602174975 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/02,3.471570281538462 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/07/24,10.776933332650849 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/10,4.411387011538458 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/01,11.595950000119997 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/07/25,17.45324166671418 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/25,5.371984089999997 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/11,4.177375000797497 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/02,20.314408333380825 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/26,4.5449499999999965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/25,5.371984089999997 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/11,4.177375000797497 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/02,20.314408333380825 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/26,4.5449499999999965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/10/05,5.1052409101199965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/10/04,19.38654166683668 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/27,4.8772833389324965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/10/05,5.1052409101199965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/10/04,19.38654166683668 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/27,4.8772833389324965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/05,2.4794500000000026 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/05,2.4794500000000026 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/12/08,6.4512999977600085 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/22,13.09079320052694 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/12/07,3.204375000000005 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/30,5.81015510320512 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/21,5.890597932435893 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/12/08,6.4512999977600085 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/22,13.09079320052694 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/12/07,3.204375000000005 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/30,5.81015510320512 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/21,5.890597932435893 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/02/02,2.848250000000006 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/01/24,21.88613333333335 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/02/02,2.848250000000006 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/01/24,21.88613333333335 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/04/05,7.178718342048328 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/04/05,7.178718342048328 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/04/21,11.972158681532491 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/08,6.346524999999998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/04/21,11.972158681532491 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/08,6.346524999999998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/23,14.701476749646668 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/31,12.7882000003325 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/23,14.701476749646668 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/31,12.7882000003325 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/03,8.843096973803329 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/06/24,13.3705 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/02,7.557175000289998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/06/25,4.223436216346154 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/03,8.843096973803329 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/06/24,13.3705 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/02,7.557175000289998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/06/25,4.223436216346154 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/11,9.772109090000004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/04,4.024034089952504 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/26,3.678925000430009 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/03,4.440666536666666 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/27,3.2470750000000037 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/11,9.772109090000004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/04,4.024034089952504 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/26,3.678925000430009 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/03,4.440666536666666 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/27,3.2470750000000037 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/05,3.934845450217498 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/27,6.93503293087861 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/04,8.35125833333334 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/28,9.213658333380844 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/05,3.934845450217498 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/27,6.93503293087861 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/04,8.35125833333334 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/28,9.213658333380844 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/07,2.637584992072502 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/21,3.994062876666665 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/06,3.2232379724358986 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/07,2.637584992072502 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/21,3.994062876666665 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/06,3.2232379724358986 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/08,10.38349206391956 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/23,9.920663751075004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/07,6.797396322307686 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/08,10.38349206391956 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/23,9.920663751075004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/07,6.797396322307686 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/12/10,7.571583333333344 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/23,8.771100000479995 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/12/10,7.571583333333344 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/23,8.771100000479995 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/12/26,11.712800000000009 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/12/26,11.712800000000009 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/02/03,22.451158333333343 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/02/03,22.451158333333343 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/03/08,6.565422427051273 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/03/08,6.565422427051273 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/04/09,11.752672373076912 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/04/09,11.752672373076912 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/04/24,8.63177916661917 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/04/24,8.63177916661917 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/11,3.761133332975832 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/03,6.036712500500003 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/11,3.761133332975832 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/03,6.036712500500003 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/05,16.815964583665824 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/28,14.618825000047494 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/05,16.815964583665824 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/28,14.618825000047494 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/29,13.010637499532516 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/06,8.920425000217497 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/30,14.252505952428423 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/29,13.010637499532516 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/06,8.920425000217497 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/30,14.252505952428423 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/08,8.769837583787504 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/30,12.884211111301113 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/07,2.7428522500000065 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/22,11.708125000284998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/08,8.769837583787504 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/30,12.884211111301113 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/07,2.7428522500000065 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/22,11.708125000284998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/01,8.560222915619166 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/24,7.4918927780152735 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/02,14.741984846714145 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/23,16.238774999999965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/01,8.560222915619166 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/24,7.4918927780152735 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/02,14.741984846714145 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/23,16.238774999999965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/11/11,6.1539875017000005 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/25,3.336997300000001 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/12/04,14.363841822116685 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/12/29,8.85445833309583 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/12/28,8.515324999785001 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/05/05,4.220206825613328 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/04/28,3.144000000000004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/06/07,8.398470002390015 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/05/29,15.327446111158611 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/07/09,13.092029168629187 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/06/30,15.4908000709375 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/07/08,13.95393103168749 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/07/01,7.762325000310004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/08/09,3.947324999999999 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/08/26,7.173224991495009 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/09/03,3.8262750001449928 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/10/05,7.244075000334984 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/12/08,8.401131760750314 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/11/22,8.716957682595192 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/01/08,11.789908333333337 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/02/09,15.0735479180617 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/02/01,21.66638333333335 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/01/25,7.843383168587632 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/03/06,9.73916666666668 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/04/23,14.68255208880334 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/05/08,17.69343335878084 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/06/09,18.234458333808316 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/07/03,7.4159416668566704 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/06/26,15.15265001569502 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/07/04,15.707233333500833 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/07/28,3.2524000003325035 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/08/05,9.485216666714166 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/07/27,13.69772500019251 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/05,11.086425756739166 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/06,3.5623919607692307 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/21,13.272913195166929 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/10/08,18.772983334203328 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/29,6.767508333380831 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/22,14.751583333333322 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/11/08,7.886658333333344 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/10/23,7.405155441146669 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/11/09,3.764175000047496 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/10/24,25.348383342533328 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/12/03,10.404012499760002 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/12/11,6.4950520576922965 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/02/29,21.78088333333335 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/04/01,11.567295449999984 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/02,11.401574628125008 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/04/25,14.106009679190842 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/10,2.889950000000003 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/03,3.826100000000004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/27,9.238716666809172 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/06/11,2.622275000000002 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/06/04,7.180391666761672 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/26,19.209375002347475 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/07/05,9.086918764572497 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/07/06,10.138753195914443 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/07/30,7.634008344168337 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/08/07,14.148200000399983 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/07/22,10.090610141009227 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/08/31,17.903883335580844 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/08/22,3.219737500142504 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/08/23,6.146953306410251 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/10/09,8.993957967597499 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/09/23,7.966927082713355 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/10/10,16.166716666761662 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/10/01,4.938115749999999 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/11/10,15.285997732300007 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/10/25,12.195235308616668 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/03/11,10.42401666666668 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/04/03,12.341562023088336 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/04/04,10.124550001150002 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/05/06,5.298407249999997 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/06/06,4.959274999905001 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/06/07,8.502777270552496 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/07/08,6.032899996685007 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/06/23,3.806325000144995 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/08/02,6.858525000142503 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/07/24,12.616345833618327 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/08/10,7.457400000072498 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/07/25,2.729624999999998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/09/10,10.39737083792834 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/08/25,21.6652999993725 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/09/11,5.462672813644685 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/09/02,2.8914522500000057 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/08/26,10.062125000144995 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/09/26,4.532829168966671 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/11/06,9.981261113506095 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/10/28,4.930873862072733 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/11/05,4.483224999999999 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/10/29,3.1890645432692306 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/11/24,3.250011891666666 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/02/01,22.137733333333344 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/01/24,21.66638333333335 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/02/26,23.02285 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/03/22,8.8282700062575 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/09,3.178168235 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/08,4.48137387719833 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/01,6.105983333618325 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/04/30,5.956027275262491 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/04/22,3.363250000000004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/31,7.017150016612499 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/26,20.58472083275835 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/24,9.364258335680828 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/07/04,6.341975000142511 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/06/29,3.6685454499999945 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/07/11,8.857041668291664 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/07/03,6.422787497967501 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/06/26,6.778541669039172 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/06/25,2.683493958974359 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/08/04,3.6082318199999928 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/07/28,8.527519231034224 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/08/29,9.118075000579998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/08/28,8.883802279999994 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/10/09,12.974541671551664 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/09/30,12.691341667284169 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/09/21,5.397430461999996 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/10/31,6.543041118597493 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/10/26,6.953099998835012 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/11/09,5.613858660256405 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/11/08,5.31516469910256 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/10/24,3.006725000000005 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/12/10,5.187524828205129 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/11/24,4.760872735619994 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/01/11,13.197637523419992 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/12/26,12.428574999714996 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/02/20,12.037334611835831 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/10,2.6793169630769227 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/09,4.214153191999997 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/02,11.904402091123332 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/01,3.4846737807692314 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/03/24,7.98710000112251 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/11,6.178876516119166 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/26,2.7109250000000014 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/25,2.997075000000004 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/31,15.133735000237484 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/26,8.517346966856673 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/06/05,9.368250020360009 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/28,18.894833333333334 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/27,21.830116666739173 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/07/06,4.013120499999996 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/06/21,3.293275 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/07/30,9.296149599349173 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/07/23,8.278078029857502 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/07/22,19.18580833352333 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/06,9.865516666666656 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/01,7.5199529257142865 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/08,6.526662182307692 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/01,3.828712988974358 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/08/31,3.1518635014783287 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/08/23,3.948834099999997 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/03,11.857680609930828 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/28,4.66865606702916 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/10,5.068634090724998 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/03,4.905196818072492 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/02,4.137116666666662 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/25,20.33282500114 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/11/03,17.41756136572833 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/11/28,4.2243236351282 +Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/11/27,6.2665295260989 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2014/12/29,11.823050000495014 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2014/12/29,2.9579272500000053 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2014/12/29,11.823050000495014 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2014/12/29,2.9579272500000053 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/01/29,22.30574166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/01/22,22.468850000000007 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/01/29,22.30574166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/01/22,22.468850000000007 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/03/02,9.998108333118346 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/02/23,22.351800000000008 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/02/23,22.348225000000006 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/03/02,9.998108333118346 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/02/23,22.351800000000008 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/02/23,22.348225000000006 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/04/03,8.447149998910003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/04/03,8.447149998910003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/06,9.242050004672484 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/06,8.823800002372485 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/06,9.242050004672484 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/06,8.823800002372485 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/06/06,11.531489584310837 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/30,3.925040154508331 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/30,3.699440154555831 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/29,9.39610000586998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/22,19.848541666851677 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/22,20.009345833518346 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/06/06,11.531489584310837 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/30,3.925040154508331 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/30,3.699440154555831 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/29,9.39610000586998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/22,19.848541666851677 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/22,20.009345833518346 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/07/08,20.6809625003675 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/06/22,11.983404999952509 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/07/08,20.6809625003675 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/06/22,11.983404999952509 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/09,4.326685606666662 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/02,16.960066666856665 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/02,17.393908333523335 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/09,4.326685606666662 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/02,16.960066666856665 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/02,17.393908333523335 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/03,8.093717994878332 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/03,8.87797888284285 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/25,3.8916311066666567 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/11,4.852208309999996 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/11,6.081265181666655 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/02,5.389074999999994 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/03,8.093717994878332 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/03,8.87797888284285 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/25,3.8916311066666567 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/11,4.852208309999996 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/11,6.081265181666655 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/02,5.389074999999994 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/05,9.306841677474171 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/05,9.70752084644084 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/26,13.507516689666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/04,2.20133175 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/27,2.689066115934066 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/27,2.50224646826923 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/05,9.306841677474171 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/05,9.70752084644084 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/26,13.507516689666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/04,2.20133175 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/27,2.689066115934066 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/27,2.50224646826923 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/05,5.641116578205124 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/05,5.641116578205124 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/12/07,3.7063056219230712 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/30,2.828953075769233 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/30,3.662694820512818 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/21,5.489531899999995 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/12/07,3.7063056219230712 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/30,2.828953075769233 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/30,3.662694820512818 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/21,5.489531899999995 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/03/05,12.158083333518332 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/03/05,13.340624999769991 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/03/05,12.158083333518332 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/03/05,13.340624999769991 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/05,13.282525146715011 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/05,13.282525146715011 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/30,3.815570494999997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/30,3.819022769999997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/21,7.692268958405828 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/29,4.0698000001424965 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/22,3.4863250000000074 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/22,18.766920833338315 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/30,3.815570494999997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/30,3.819022769999997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/21,7.692268958405828 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/29,4.0698000001424965 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/22,3.4863250000000074 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/22,18.766920833338315 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/05/23,13.15572083595584 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/05/31,5.369167813805003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/05/23,13.15572083595584 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/05/31,5.369167813805003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/03,12.556566687486674 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/03,9.164625014159986 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/24,20.55743333358085 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/11,4.372875000409994 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/11,4.579900000699997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/25,2.605743163333333 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/25,3.082678419102564 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/03,12.556566687486674 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/03,9.164625014159986 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/24,20.55743333358085 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/11,4.372875000409994 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/11,4.579900000699997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/25,2.605743163333333 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/25,3.082678419102564 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/04,3.630912727999992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/04,3.688084099999993 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/04,3.630912727999992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/04,3.688084099999993 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/05,3.2631999999999937 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/05,3.3523590999999926 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/27,3.0739674467391644 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/04,4.096879589999998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/05,3.2631999999999937 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/05,3.3523590999999926 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/27,3.0739674467391644 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/04,4.096879589999998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/07,10.160302884666663 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/07,8.520209848333327 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/28,6.452170821528341 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/21,3.4789515116666614 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/21,3.5607674216666605 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/06,3.1841067 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/29,5.405589581999996 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/29,3.394975380769227 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/07,10.160302884666663 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/07,8.520209848333327 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/28,6.452170821528341 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/21,3.4789515116666614 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/21,3.5607674216666605 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/06,3.1841067 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/29,5.405589581999996 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/29,3.394975380769227 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/08,7.840829174414165 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/08,6.603654172029166 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/23,16.69656528261527 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/23,16.17698611144361 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/07,4.098996230769228 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/08,7.840829174414165 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/08,6.603654172029166 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/23,16.69656528261527 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/23,16.17698611144361 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/07,4.098996230769228 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/12/10,6.785903038125837 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/12/10,9.321612585327507 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/12/10,6.785903038125837 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/12/10,9.321612585327507 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/01/11,21.080333333190858 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/01/02,22.47810000000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/01/11,21.080333333190858 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/01/02,22.47810000000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/03,22.47810000000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/04,21.75304166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/04,21.75304166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/03,22.47810000000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/04,21.75304166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/04,21.75304166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/08,14.903266666971678 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/08,14.980224999905008 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/20,20.247183333238368 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/20,20.247183333238368 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/08,14.903266666971678 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/08,14.980224999905008 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/20,20.247183333238368 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/20,20.247183333238368 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/23,22.447608333333346 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/23,22.447608333333346 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/04/24,8.198683336714167 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/05/11,4.03848413 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/05/11,7.415125 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/04/24,8.198683336714167 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/05/11,4.03848413 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/05/11,7.415125 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/06/11,7.310324998470005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/06/11,7.310324998470005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/05,2.901629519999997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/05,2.901629519999997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/07,7.62102916702416 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/07,3.623125000119998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/29,22.003824997955 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/30,3.006564125 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/30,3.03440529 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/07,7.62102916702416 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/07,3.623125000119998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/29,22.003824997955 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/30,3.006564125 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/30,3.03440529 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/30,13.786216687366675 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/23,5.626983338195831 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/23,4.293919701038331 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/30,13.786216687366675 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/23,5.626983338195831 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/23,4.293919701038331 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/10,5.502063644147504 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/10,5.437263644005003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/01,4.268565206666659 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/24,7.221311360000005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/24,7.024202270000006 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/02,2.4597039236263725 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/02,2.6762019293956043 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/23,3.530377259999993 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/10,5.502063644147504 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/10,5.437263644005003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/01,4.268565206666659 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/24,7.221311360000005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/24,7.024202270000006 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/02,2.4597039236263725 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/02,2.6762019293956043 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/23,3.530377259999993 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/11/11,10.076755192380944 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/11/11,9.932933975714278 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/11/10,2.9000772500000056 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/25,16.588166666436656 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/12/04,9.156712942624186 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/11/27,7.404225000000006 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/01/29,6.854783333118335 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/05/05,4.7007000023 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/04/28,6.981162411154219 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/04/28,5.068620914654165 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/05/29,22.58411666723668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/05/30,6.633700002299994 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/05/30,5.481775004647504 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/09,4.598154599999986 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/09,4.599720499999988 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/08,5.65728448024 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/01,2.904079500000003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/01,4.066774999999996 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/06/22,8.623424999307511 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/08/10,7.286538640145004 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/08/10,7.909263642710004 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/08/09,10.243741668474163 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/09/03,8.782925000362507 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/09/03,4.407379500047501 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/10/05,2.261297461538459 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/10/05,3.2500953788461504 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/12/07,22.76551666666667 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/12/08,21.75304166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/11/22,22.14629166611418 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/11/22,21.22687499947752 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/01/01,24.44116666666665 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/12/23,12.803508333333331 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/02/02,22.76205 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/02/01,22.69252500000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/01/25,22.376383333333347 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/01/25,22.115583333333348 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/02/26,21.867666666666683 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/04/23,12.563550044777491 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/04/23,12.645425045759987 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/05/08,10.759846976600834 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/04/22,14.144033346543315 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/10,12.448474997464997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/10,8.391449996072497 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/01,8.498774999902523 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/09,10.028666666999174 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/07/03,11.915187917854183 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/26,5.032718199999984 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/26,4.932268199999983 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/04,15.287287499235 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/05,3.376853380769227 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/05,2.389382480769231 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/07/27,3.761829599999992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/05,3.593518179999992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/29,4.372710606666653 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/29,4.387285606666652 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/06,3.840547930769225 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/06,2.521196425000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/21,7.976949236739166 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/08,6.336205481999993 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/08,6.013637311999995 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/29,12.388508333333329 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/23,6.500199984385006 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/11/09,10.218800000289995 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/24,10.723100000454997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/24,3.556000000047499 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/12/11,10.93638541802917 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/12/11,22.153295833405835 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/11/25,2.7365170961538454 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/11/25,3.68041776923077 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/02/05,22.26459166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/02/05,22.337341666666678 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/02/28,11.069650000385003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/04/01,18.292256250237507 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/04/01,13.006034090285004 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/02,9.1130875039225 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/04/25,7.124459095144995 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/04/25,7.526759095072496 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/03,3.647559099999998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/03,3.2861409100000007 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/27,7.272625000480007 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/27,7.114275000480004 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/06/04,7.144179179624159 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/06/04,8.10088372313582 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/26,4.098143209999988 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/05,4.797203526998215 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/06,2.411227175000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/06,2.5927257307692297 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/06,3.166140920072497 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/30,4.02340837666666 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/30,4.12932429666666 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/07,13.71880000019998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/07,12.41354999999998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/29,2.6661750000475 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/22,3.989309083405831 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/08,3.504700000072503 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/08,6.428299999999998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/30,3.578427250000004 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/23,4.34086667833333 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/23,3.3124455549999983 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/10/09,4.338067446666658 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/23,11.18652916806668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/10/10,13.845058333333334 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/10/10,12.95143333333334 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/24,8.568483334598332 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/24,8.151217425722491 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/11/10,8.393750764999991 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/10/25,6.405087492740014 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/01/30,21.848400000000016 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/03/11,9.793900000000017 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/03/11,10.663858333333348 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/03/02,22.26459166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/03/26,11.042808334238348 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/05/06,5.009575000000002 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/05/06,3.2658750000000056 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/06/07,2.673325000000005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/06/07,3.604802250000005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/05/29,18.350683333533333 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/10,3.13445225 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/10,3.389202250000002 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/07/25,3.738100653846156 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/07/25,3.2829840000000003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/25,2.387768201377501 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/26,6.737675000262501 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/26,4.575552425641016 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/09/26,10.482393750067509 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/06,17.24911322496695 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/06,5.435470460214999 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/10/28,6.297499997975008 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/09,3.6529507099999967 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/09,4.765217436666663 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/05,4.497100000072503 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/10/29,5.618447197435895 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/10/29,5.259692747435895 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/12/07,2.8099817500000004 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/24,2.5670658807692277 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/21,5.476447819999996 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/12/24,24.44116666666665 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/12/23,11.006849248595834 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/02/26,22.14189166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/02/26,22.14189166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/04/06,12.147766666786676 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/03/29,21.88613333333335 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/09,3.370829599999997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/09,3.1474347546666634 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/09,2.926950825000002 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/09,4.144551580769227 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/08,10.514876139610005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/01,2.76632769 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/01,5.303238729999993 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/04/30,7.083658341065829 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/26,15.776339999617498 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/26,15.764131666284165 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/10,10.121950000704992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/10,11.120600000409992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/25,4.934025000529992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/25,4.485961365719997 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/24,10.848291669086676 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/07/04,2.9177977299999984 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/29,3.2200462144683315 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/29,3.70637121381583 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/07/03,6.83868192737024 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/26,5.727473221278212 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/26,4.47460579917238 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/25,3.604117426666666 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/08/07,7.978499999665005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/07/28,4.024502953846147 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/07/28,3.964204203076919 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/08/24,3.606863667948716 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/08/28,3.9707621233333272 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/10/09,6.914774433775005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/10/09,5.565052989845836 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/22,7.214770831583349 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/22,9.158929164059185 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/30,13.650233333405827 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/30,13.346608333333329 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/29,2.961591069999999 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/22,2.788573463380833 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/22,2.979902250000003 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/21,8.772000000299979 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/10/31,8.319703638907495 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/11/09,2.566799661538459 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/11/09,3.051726936767396 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/11/08,2.8650904500000007 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/10/24,12.281825000200008 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/12/10,2.6993861500000005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/12/02,4.0702916733333305 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/11/24,3.6417885 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/02/21,9.426749999595009 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/02/21,9.534874999380008 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/10,11.927708333238328 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/10,12.20291666657166 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/09,15.799299999952488 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/02,13.885008333238334 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/01,21.75304166666668 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/09,9.68222708548586 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/31,7.981252270145001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/26,2.8441581879999984 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/26,4.082124117999993 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/05,4.891510607174165 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/05,4.9910681855075 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/28,5.282050000697501 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/28,12.140858338295832 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/27,22.507450002205005 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/22,3.102903033478329 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/07/06,8.317393563100838 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/21,3.1841772500475027 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/21,2.9726000000474992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/08/05,9.875497124045824 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/08/05,8.726014616023326 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/07/23,3.560027250000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/07/23,8.812850000000008 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/07/22,2.9606000000000057 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/01,8.471404540119998 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/01,4.9413182001449885 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/01,3.5776273000724967 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/08/31,5.732725000000006 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/08/23,2.063327125000001 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/28,7.305952082698347 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/10/03,4.288711384999992 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/10/03,2.8825499500000022 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/10/02,4.450745316333328 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/25,7.139750000722506 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/25,6.199375000627503 +Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/11/03,9.283056056666666 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2014/12/29,15.284400001415015 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2014/12/29,15.284400001415015 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/03/11,22.142908333333345 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/02/23,22.34590833333334 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/03/11,22.142908333333345 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/02/23,22.34590833333334 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/04/28,11.554683216169996 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/05/06,7.839291675866666 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/04/28,11.554683216169996 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/05/06,7.839291675866666 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/06/07,17.121391666866653 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/05/22,2.819425000000004 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/06/07,17.121391666866653 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/05/22,2.819425000000004 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/02,8.615287500047511 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/10,21.132450022522534 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/07/25,4.47377500007249 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/02,8.615287500047511 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/10,21.132450022522534 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/07/25,4.47377500007249 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/03,11.0265350466225 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/11,6.514206096153837 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/26,3.305275000000001 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/03,11.0265350466225 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/11,6.514206096153837 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/26,3.305275000000001 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/10/05,3.3758833617391626 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/27,6.888521335178209 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/10/05,3.3758833617391626 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/27,6.888521335178209 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/11/22,5.902108332938338 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/11/30,9.188299998877492 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/11/22,5.902108332938338 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/11/30,9.188299998877492 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/02/26,11.351565724570834 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/02/26,11.351565724570834 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/03/29,17.751491403903344 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/03/29,17.751491403903344 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/04/30,4.057840915189996 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/05/08,2.532527250000004 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/04/30,4.057840915189996 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/05/08,2.532527250000004 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/06/09,2.453275000000001 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/06/09,2.453275000000001 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/07/03,7.805739591953337 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/06/25,4.536835769230772 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/07/03,7.805739591953337 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/06/25,4.536835769230772 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/08/04,3.868103786956664 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/07/27,4.461698380769227 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/08/04,3.868103786956664 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/07/27,4.461698380769227 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/05,11.745362116761656 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/08/28,20.145025009200022 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/05,11.745362116761656 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/08/28,20.145025009200022 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/07,4.92699019771428 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/21,5.390705195714278 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/29,3.016750325 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/07,4.92699019771428 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/21,5.390705195714278 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/29,3.016750325 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/11/08,5.450359121047614 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/23,11.063281055072489 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/31,5.309873374999988 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/11/08,5.450359121047614 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/23,11.063281055072489 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/31,5.309873374999988 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/12/10,8.918721852380946 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/12/10,8.918721852380946 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/01/11,15.84327708423834 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/12/26,11.789908333333337 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/01/11,15.84327708423834 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/12/26,11.789908333333337 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/02/04,21.675758333333352 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/02/04,21.675758333333352 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/03/08,4.324512308589739 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/03/08,4.324512308589739 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/04/09,5.094742701923067 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/04/09,5.094742701923067 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/07/30,2.4108132499999995 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/07/30,2.4108132499999995 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/10/10,8.770575011422496 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/09/24,10.736178026666671 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/10/02,6.083017405769227 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/10/10,8.770575011422496 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/09/24,10.736178026666671 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/10/02,6.083017405769227 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/11/11,16.435457581266665 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/04/28,4.292624316153838 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/06/07,4.50147268684905 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/05/30,2.8044250000000046 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/07/09,5.457033333478338 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/07/01,8.128025000409993 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/08/10,10.694158333760832 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/08/02,4.01941896230769 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/09/03,2.554527440000001 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/10/05,4.447080436666666 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/12/08,16.34965000038 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/11/22,4.123936400072498 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/01/01,3.9350302868841647 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/02/10,12.649891668359167 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/01/25,18.28078031573917 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/05/09,18.20242333123584 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/04/23,12.275401946886946 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/05/25,22.738799999235013 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/06/02,17.378741666666652 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/07/05,4.706359095005 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/06/26,2.417317500000001 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/07/04,5.873509100869995 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/08/06,6.972184092822505 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/07/28,5.628325000427502 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/08/05,4.6386170945512815 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/08/29,5.218100000072504 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/09/06,12.370983333333331 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/10/08,5.018475001979996 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/09/22,5.857425000310009 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/11/09,4.031799547435898 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/10/24,3.3173337499999995 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/12/03,10.067832962124989 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/12/11,8.302418785714275 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/01/29,13.972741666476669 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/04/01,4.309443992307686 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/04/25,6.262876516666671 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/05/03,7.01589091 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/06/05,3.259088634999997 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/05/27,3.2545846948116623 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/06/04,4.796767830784167 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/06/21,2.938517261538459 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/07/06,3.062927329999998 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/08/08,4.595373375786781 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/07/30,8.476716666714163 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/09/09,9.523443180000005 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/08/31,5.418925645714278 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/08/24,4.986275756739166 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/08/23,6.423600000772498 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/10/11,5.438268185142507 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/09/25,15.04231666680916 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/10/10,22.753362500237508 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/10/27,7.628924999280015 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/11/28,6.192199996010008 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/12/29,3.041075049999997 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/03/11,14.576522917124198 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/04/05,10.05795152998276 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/03/27,7.403349998205012 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/05/07,5.162774980072499 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/05/06,3.236750760598329 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/06/07,4.664827586538461 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/07/10,3.16292256153846 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/06/24,3.007535583333333 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/08/11,7.051574645299163 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/08/02,10.473070835093331 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/07/26,4.771509857029165 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/08/10,11.9050500000475 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/07/25,5.880000000144992 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/09/03,3.461124395333328 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/09/11,4.478550000217496 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/08/26,4.779052250072493 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/11/06,15.26653362740112 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/11/09,7.66054304299999 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/11/04,3.205149089999996 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/10/29,5.018359356410254 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/01/25,22.13946666666668 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/03/30,7.846024993527506 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/03/22,11.283325003892497 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/09,3.7989574447391656 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/09,3.818408179999995 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/01,2.913243875 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/04/23,2.6379022500000064 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/26,20.23719166652416 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/25,6.889400000120004 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/06/29,4.231213808150181 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/06/24,3.336553344102563 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/07/04,3.565784192307693 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/06/26,4.797865889423076 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/07/28,5.54232575666666 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/07/28,7.538909423076913 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/08/31,7.0011409202175 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/08/29,19.79377500009501 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/10/09,8.163338640000003 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/10/08,3.978311548076925 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/11/09,3.004928467307689 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/12/27,6.72801701358974 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/01/28,6.248835057948714 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/02/27,13.65727292438417 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/04/07,3.956001397748571 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/04/10,5.332070416208783 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/04/02,6.90218257833333 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/05/26,2.651041529739166 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/06/05,4.977587505302498 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/05/28,4.3344068199999946 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/07/07,4.1942159201449964 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/06/21,4.387548253846152 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/08/05,5.155874999340001 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/07/31,18.410464166666653 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/07/23,11.125550012957508 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/09/01,12.269309846666667 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/08/22,3.556535447999995 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/09/01,6.112030451999996 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/10/03,8.787996817999987 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/10/27,2.8840022500000053 +Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/11/28,14.00071666706666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/01/05,15.509245834730834 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/01/05,15.509245834730834 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/02/22,11.148625000385003 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/02/22,11.148625000385003 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/04/04,22.476633333333343 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/04/04,22.476633333333343 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/05,12.714058340433333 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/06,7.8610333357783215 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/05,12.714058340433333 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/06,7.8610333357783215 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/06,8.36383332699833 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/30,16.33576667354168 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/07,13.300049999999985 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/29,5.614527329999994 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/22,2.4804422500000007 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/06,8.36383332699833 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/30,16.33576667354168 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/07,13.300049999999985 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/29,5.614527329999994 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/22,2.4804422500000007 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/07/08,20.81821666666666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/22,15.895529168386693 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/30,4.783688273486667 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/07/08,20.81821666666666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/22,15.895529168386693 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/30,4.783688273486667 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/09,4.318300054999987 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/10,11.641425000237495 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/01,12.667083333333323 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/09,4.318300054999987 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/10,11.641425000237495 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/01,12.667083333333323 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/03,6.420550001000005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/25,4.266174626816667 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/11,2.9784386000000014 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/02,9.09655075855083 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/26,12.461933333118328 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/03,6.420550001000005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/25,4.266174626816667 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/11,2.9784386000000014 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/02,9.09655075855083 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/26,12.461933333118328 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/10/05,4.160746949999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/26,4.22612262571428 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/10/04,5.096845179999995 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/27,2.7879378807692303 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/10/05,4.160746949999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/26,4.22612262571428 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/10/04,5.096845179999995 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/27,2.7879378807692303 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/29,6.12714166341917 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/22,4.947846675586078 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/30,2.947301742307692 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/29,6.12714166341917 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/22,4.947846675586078 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/30,2.947301742307692 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/02/26,8.933524999667517 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/03/05,12.1434999995225 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/02/26,8.933524999667517 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/03/05,12.1434999995225 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/05,8.433089399999995 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/03/29,7.629724999265009 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/05,8.433089399999995 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/03/29,7.629724999265009 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/07,14.112530492667496 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/30,5.327262271999993 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/21,4.791661994666661 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/29,6.738100000000003 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/07,14.112530492667496 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/30,5.327262271999993 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/21,4.791661994666661 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/29,6.738100000000003 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/23,6.771838629352498 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/31,5.4482106209075 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/23,6.771838629352498 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/31,5.4482106209075 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/03,17.221379166279185 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/06/24,9.108009090000008 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/11,4.450288960769227 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/06/25,2.337046925000001 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/03,17.221379166279185 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/06/24,9.108009090000008 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/11,4.450288960769227 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/06/25,2.337046925000001 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/11,17.806791666666683 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/04,3.494096818217497 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/03,5.131270539999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/27,3.062056629999999 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/11,17.806791666666683 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/04,3.494096818217497 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/03,5.131270539999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/27,3.062056629999999 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/05,8.010955303333343 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/27,20.824341668966685 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/04,14.613583333333338 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/28,8.502300000625008 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/05,8.010955303333343 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/27,20.824341668966685 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/04,14.613583333333338 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/28,8.502300000625008 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/07,10.909884739047616 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/28,11.22471363666667 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/21,16.764193940000023 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/06,5.135414640769231 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/29,6.554050019999995 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/07,10.909884739047616 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/28,11.22471363666667 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/21,16.764193940000023 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/06,5.135414640769231 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/29,6.554050019999995 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/08,6.009285610825831 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/23,3.145217707435899 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/07,2.816282668269229 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/08,6.009285610825831 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/23,3.145217707435899 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/07,2.816282668269229 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/12/09,3.018700000000007 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/23,5.448990854999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/12/09,3.018700000000007 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/23,5.448990854999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/01/11,19.001195833923354 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/01/11,19.001195833923354 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/04,21.36779166666669 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/04,21.36779166666669 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/03/08,11.518121253022503 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/27,10.627683333118345 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/20,14.551049999905006 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/03/08,11.518121253022503 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/27,10.627683333118345 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/20,14.551049999905006 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/03/23,22.451158333333343 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/04/09,23.15889166870418 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/03/23,22.451158333333343 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/04/09,23.15889166870418 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/05/11,5.567712073846144 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/05/11,5.567712073846144 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/06/11,24.02840833362835 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/05/27,2.810559942307693 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/06/11,24.02840833362835 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/05/27,2.810559942307693 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/05,2.76990365 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/05,2.76990365 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/29,19.424708332903325 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/22,10.414689999477512 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/30,2.9248502492674 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/29,19.424708332903325 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/22,10.414689999477512 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/30,2.9248502492674 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/08/23,7.616133336158333 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/08/31,2.961375000000005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/08/23,7.616133336158333 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/08/31,2.961375000000005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/10,7.71437500123 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/01,18.99602500000002 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/09/24,15.981325000000016 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/02,5.0132414918956005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/09/23,12.750287500095 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/10,7.71437500123 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/01,18.99602500000002 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/09/24,15.981325000000016 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/02,5.0132414918956005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/09/23,12.750287500095 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/11/11,4.103524139047613 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/11/10,2.624931749999998 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/25,2.3745452300000007 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/05/05,3.8541515266666657 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/04/28,6.771699999999998 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/06/07,8.25290000136002 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/05/29,5.684701849838215 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/05/30,3.3754098533333337 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/07/09,12.645616666666664 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/07/08,19.016874999769996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/06/22,6.09418940861166 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/08/10,3.8383924516666617 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/08/09,2.8113545500000003 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/09/03,2.7519250000000035 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/08/25,7.107106820000005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/10/05,7.013325609666667 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/12/07,22.30574166666668 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/11/22,21.791766666666685 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/12/23,7.365883333318338 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/02/10,11.08439166652418 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/03/06,22.47810000000001 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/02/26,13.132908333238335 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/04/23,3.0089507683333307 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/05/08,2.814122200000001 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/04/22,2.5776511875000008 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/06/01,13.25472499892499 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/06/09,2.88216495 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/06/26,8.189136365167506 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/08/04,15.021775020772496 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/08/05,4.134434099999994 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/07/27,5.067100000190005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/09/05,4.661682469047612 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/08/29,7.711672899899163 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/09/06,3.930047734999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/09/21,18.961125004600014 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/10/08,4.977754499999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/09/29,11.928933333333337 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/11/08,6.716699999160011 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/10/24,13.026458333933329 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/11/25,15.86800208403835 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/02/21,22.47810000000001 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/02/29,21.867666666666683 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/02/20,10.843175000185006 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/04/01,8.848274999762515 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/05/02,16.137808342533358 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/04/25,3.343349251666664 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/05/03,6.937690161666666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/05/27,7.330677276884167 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/06/04,4.512627250000004 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/05/26,5.166625000120006 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/07/05,15.102408360933332 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/06/28,3.4953249999999927 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/07/06,4.92528337166666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/07,8.645618948333341 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/31,2.6710689616666654 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/22,16.921291666666647 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/30,2.4243407500000016 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/23,3.204475000000006 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/10/09,3.96324019666666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/10/10,14.41040000345 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/11/03,5.909824997420014 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/01/30,12.862350000184993 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/05/06,5.862300000000004 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/06/07,3.5131750000000017 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/05/29,16.51798333311583 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/08/02,7.164041668381665 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/08/10,3.114647500000001 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/07/25,12.434816666739165 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/09/11,11.526812499999998 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/08/26,2.930952250047504 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/06,5.930655283333324 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/09,2.8510591000000005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/05,3.829403721153848 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/10/29,2.615965793269229 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/24,7.694087168269237 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/21,2.385363299999999 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/12/24,19.56087500000002 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/12/23,3.1430250000000006 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/01/25,22.47810000000001 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/02/26,22.890716666666677 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/04/06,9.916151300920005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/03/29,21.78088333333335 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/09,6.462221976666665 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/09,3.390682999999997 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/08,8.269515915509988 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/01,5.525215929999995 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/04/30,5.622783338763322 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/04/22,3.157641692307692 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/31,8.569466656381666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/26,15.367804165901669 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/25,3.369525014999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/24,5.79707209945905 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/07/04,19.92125833333337 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/06/29,3.727779549999994 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/07/03,6.409490262910713 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/06/26,4.613400000000003 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/06/25,2.8330923399999985 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/07/28,2.6397250000000043 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/07/27,12.06351666663666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/08/29,4.901975000965003 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/08/28,5.069565869999996 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/09/30,3.172071254807692 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/09/29,3.3975750000000096 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/09/21,14.912833333713325 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/10/26,6.733699246785833 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/11/09,3.0675188111263725 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/11/08,2.784556918269229 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/10/31,5.990563638927496 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/12/10,3.500927250000001 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/12/02,7.370420100000005 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/11/24,2.849674999999998 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/04/10,11.662824999952493 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/04/09,12.506108333238323 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/04/02,12.639658333238328 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/04/01,13.158533333238337 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/05/31,8.888643180072505 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/05/26,7.543504163405835 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/06/05,5.339125000747504 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/05/28,10.90150833537082 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/05/27,17.322050002394977 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/06/22,7.887268180192503 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/07/06,6.583111369999997 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/06/21,4.765151516739166 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/10,13.676583335753325 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/05,8.890984090892506 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/07/31,5.200724999955003 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/07/30,3.453250000000004 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/07/23,3.4782157133333333 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/01,8.789846966786666 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/27,5.251449998650004 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/09,4.769135606666667 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/01,5.722950000432502 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/31,4.891360606666663 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/24,4.36769999999999 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/23,2.50902254 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/28,10.733829168044164 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/23,5.998629167004165 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/10/02,5.083260606666661 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/25,14.20447500050499 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/24,17.14474999999998 +Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/11/03,4.930656799999995 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/01/05,21.75304166666668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/01/05,21.75304166666668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/02/23,22.404625000000006 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/02/22,21.750616666666684 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/02/23,22.404625000000006 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/02/22,21.750616666666684 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/04/28,7.444735418514171 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/06,2.8635155750000005 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/04/28,7.444735418514171 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/06,2.8635155750000005 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/06,4.885299560490832 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/30,7.714468761379997 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/07,13.725808333333314 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/29,12.770858333333322 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/22,11.712750031050009 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/06,4.885299560490832 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/30,7.714468761379997 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/07,13.725808333333314 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/29,12.770858333333322 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/22,11.712750031050009 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/07/08,13.64684166513666 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/22,22.123929164944176 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/07/08,13.64684166513666 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/22,22.123929164944176 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/09,4.3735795505575 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/02,21.204258332398336 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/07/24,19.69162499999999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/01,2.558075000000002 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/09,4.3735795505575 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/02,21.204258332398336 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/07/24,19.69162499999999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/01,2.558075000000002 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/25,3.672626374811659 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/11,5.819600003357494 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/02,6.203425002374996 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/25,3.672626374811659 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/11,5.819600003357494 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/02,6.203425002374996 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/26,8.5657500007625 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/10/04,12.882033333333318 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/27,2.443913973626373 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/26,8.5657500007625 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/10/04,12.882033333333318 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/27,2.443913973626373 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/05,13.022199999784984 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/05,13.022199999784984 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/29,9.18567804447166 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/12/07,4.481375000000008 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/30,16.990691666851653 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/29,9.18567804447166 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/12/07,4.481375000000008 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/30,16.990691666851653 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/05,11.753503344810827 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/03/29,9.826400030062509 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/05,11.753503344810827 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/03/29,9.826400030062509 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/07,11.068325025215008 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/30,6.800575000072509 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/21,12.995925000429995 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/08,3.22902500000001 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/29,3.236219024999999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/07,11.068325025215008 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/30,6.800575000072509 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/21,12.995925000429995 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/08,3.22902500000001 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/29,3.236219024999999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/31,7.838996587554999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/31,7.838996587554999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/07/03,7.056472923721662 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/06/24,6.019415829890837 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/07/03,7.056472923721662 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/06/24,6.019415829890837 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/11,2.6331840955075005 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/04,4.037950000072491 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/07/26,4.254102020004405 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/03,2.949475000072504 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/11,2.6331840955075005 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/04,4.037950000072491 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/07/26,4.254102020004405 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/03,2.949475000072504 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/05,4.455072799999991 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/27,7.317717426666664 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/04,3.368084149999997 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/05,4.455072799999991 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/27,7.317717426666664 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/04,3.368084149999997 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/07,7.341343191811664 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/28,8.459829175489174 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/21,3.759353791666659 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/06,2.693720460000001 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/07,7.341343191811664 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/28,8.459829175489174 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/21,3.759353791666659 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/06,2.693720460000001 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/08,4.054537890002501 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/23,15.490366687414188 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/07,2.2578450499999985 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/08,4.054537890002501 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/23,15.490366687414188 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/07,2.2578450499999985 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/09,4.181912074999995 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/23,3.0078000000000014 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/09,4.181912074999995 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/23,3.0078000000000014 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/26,23.333575 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/25,12.757925000184994 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/26,23.333575 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/25,12.757925000184994 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/02/27,21.675758333333352 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/02/20,20.365858333238364 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/02/27,21.675758333333352 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/02/20,20.365858333238364 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/03/23,22.120274999785007 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/04/09,20.595958333238368 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/03/23,22.120274999785007 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/04/09,20.595958333238368 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/04/24,13.70026674486668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/04/24,13.70026674486668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/11,16.19543333333333 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/03,7.534270832640839 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/11,16.19543333333333 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/03,7.534270832640839 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/27,6.867399991462507 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/07/05,13.141216666221656 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/27,6.867399991462507 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/07/05,13.141216666221656 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/07,8.508083339330835 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/07/29,15.661808372433333 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/06,2.938750000000004 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/07,8.508083339330835 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/07/29,15.661808372433333 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/06,2.938750000000004 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/30,2.7910439585983324 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/30,2.7910439585983324 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/01,3.5681037966666618 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/09/24,3.555243185072493 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/02,2.41339116826923 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/09/23,5.435454177250826 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/01,3.5681037966666618 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/09/24,3.555243185072493 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/02,2.41339116826923 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/09/23,5.435454177250826 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/11/11,3.341263778666664 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/11/10,17.248316666851654 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/25,5.9190636799999945 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/12/04,3.0652312492725056 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/01/05,22.663366666666672 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/12/29,22.34590833333334 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/01/06,21.75304166666668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/05/05,10.785738627299995 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/06/07,14.951783335650834 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/05/29,6.518183325570838 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/05/30,5.756975000699997 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/07/09,4.285086385072488 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/06/30,15.02469583295083 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/07/08,9.266935002777478 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/06/22,12.84398333333332 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/08/10,2.715313319871793 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/08/09,12.670133333333322 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/08/25,15.24888333331833 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/11/22,4.5465067500475 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/02/09,9.957608332975852 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/04/23,7.087158335870843 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/05/08,5.708125004672497 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/04/22,3.09300612 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/06/01,9.604204163754192 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/06/09,6.555267825071664 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/07/03,4.418271980080001 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/06/26,4.3149932000724895 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/08/04,16.959108333095827 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/07/28,5.477695824468342 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/07/27,9.163887512870003 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/09/05,3.712237896666658 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/09/21,6.6845962133333305 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/10/08,4.082567630769227 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/09/29,3.831470904999995 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/11/09,3.36514423076923 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/02/21,22.451158333333343 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/02/20,21.867666666666683 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/04/01,3.0707250000000035 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/02,10.850617435062505 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/04/25,17.98317505980002 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/10,10.106408365580831 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/03,4.243728033333326 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/27,5.16440378944333 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/26,3.337004500000002 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/07/05,6.963475003142503 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/08/06,7.006200003117502 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/07/30,3.552827564102563 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/08/31,3.281495499999997 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/08/22,3.3480272716674966 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/10/09,3.113425029999998 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/10/01,9.11417500028999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/11/10,8.409869708405825 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/11/03,4.690179166664176 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/10/25,10.756138763822491 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/12/29,21.75304166666668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/03/02,22.26459166666668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/04/03,10.284322921419166 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/04/04,15.296843750705015 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/05/06,4.530997729999995 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/06/06,16.267499999809985 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/06/07,2.8034772500000007 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/05/29,4.651300000142491 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/06/23,2.376025000000002 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/08/02,7.221375033149999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/07/24,13.35723336126833 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/09/10,7.904925011522501 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/08/25,4.585550001979999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/09/26,2.78629308333333 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/11/06,4.804575052714282 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/10/28,9.150431066666664 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/10/29,2.787035360576923 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/11/24,3.871818615384616 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/11/21,12.916825000047496 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/01/08,21.75304166666668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/02/02,21.675758333333352 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/01/24,21.867666666666683 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/02/26,22.23439166666668 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/03/29,22.113474999737512 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/03/22,11.52869166657166 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/05/09,3.002764800000001 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/05/08,7.939353033333334 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/05/01,5.22425833730083 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/04/30,6.8966666689666605 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/04/22,4.601392307692304 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/05/24,3.104725000000004 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/07/04,11.076125000049998 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/07/11,9.255008338198314 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/07/04,3.938604244871791 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/07/03,5.213670190929881 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/06/26,5.095175000144992 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/06/25,2.795652225000003 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/10,3.4678219669566626 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/08/24,7.867606245495001 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/08/29,2.5463500000000017 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/08/28,3.4671603283333274 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/22,3.2308227357249977 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/10/08,3.2109750000000075 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/30,13.043041666666651 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/29,2.5513795000000017 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/22,5.151173453846148 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/21,15.529366667769164 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/11/09,3.582597461538462 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/11/08,2.1966429499999967 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/12/10,2.275046475000001 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/12/02,3.083675000000006 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/11/24,3.1389067500000016 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/02/04,22.304175000000008 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/04/10,10.563958333238327 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/04/02,12.640574999905006 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/04/01,13.555800000332512 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/03/24,17.36656250072749 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/05/11,7.43883333793333 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/05/31,10.335352270892509 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/05/26,4.206125000072495 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/06/04,4.263438639159999 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/05/27,21.910241665901665 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/06/22,19.238170833380828 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/07/06,4.0968613653600015 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/08/05,4.007237499987507 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/07/30,3.286654500000003 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/07/22,4.823098882292499 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/09/06,6.860944706666666 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/09/01,3.385486369999992 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/09/08,12.625404166451666 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/08/31,3.300565713333331 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/08/23,3.827106849999993 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/10/03,14.08472916654666 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/09/28,5.541758326925841 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/10/03,3.605712349999996 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/10/02,5.783075000192498 +Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/11/03,2.4204131750000006 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2014/12/26,4.542549998232511 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2014/12/26,4.542549998232511 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/03/08,21.750616666666684 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/02/20,21.75304166666668 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/03/08,21.750616666666684 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/02/20,21.75304166666668 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/05/03,11.960845836383353 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/05/11,5.963126310594048 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/05/03,11.960845836383353 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/05/11,5.963126310594048 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/07,10.073525000355 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/07/22,9.153002081243343 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/07/30,11.132279938734175 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/07,10.073525000355 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/07/22,9.153002081243343 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/07/30,11.132279938734175 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/09/08,14.700583749905006 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/23,13.785254863278602 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/31,10.18112499999999 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/09/08,14.700583749905006 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/23,13.785254863278602 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/31,10.18112499999999 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/10/10,4.339893890386071 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/09/24,15.848358333428326 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/10/10,4.339893890386071 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/09/24,15.848358333428326 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/10/26,21.0643627939253 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/11/03,11.004644693333328 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/10/26,21.0643627939253 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/11/03,11.004644693333328 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/01/06,3.250969230769229 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/01/06,3.250969230769229 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/04/03,9.4435062725525 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/03/26,16.94923333295083 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/04/03,9.4435062725525 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/03/26,16.94923333295083 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/04/27,20.51248334573581 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/04/27,20.51248334573581 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/07/08,16.237741666666665 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/06/30,16.540583349580846 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/07/08,16.237741666666665 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/06/30,16.540583349580846 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/08/09,8.300025016500001 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/08/01,8.549979864983603 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/08/09,8.300025016500001 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/08/01,8.549979864983603 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/10,8.969395831398343 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/02,12.23862652342832 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/10,8.969395831398343 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/02,12.23862652342832 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/26,8.279000006130005 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/10/04,7.054566841999994 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/26,8.279000006130005 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/10/04,7.054566841999994 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/10/28,6.55614999409001 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/10/28,6.55614999409001 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/03/05,11.706566667856691 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/03/05,11.706566667856691 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/03/29,8.781950000145004 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/03/29,8.781950000145004 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/04/30,7.566837495170009 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/04/30,7.566837495170009 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/06/09,6.140172501057507 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/06/09,6.140172501057507 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/06/25,7.38683332525834 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/06/25,7.38683332525834 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/08/04,5.45689556695083 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/08/04,5.45689556695083 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/09/21,10.874258337933322 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/09/21,10.874258337933322 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/10/31,7.182925000000011 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/11/08,6.2410977523076845 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/11/24,16.350225000237508 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/02/20,7.386208333718338 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/03/24,16.343581253887496 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/05/03,6.487320911825002 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/05/27,8.01540125056749 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/07/06,5.471700185976552 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/08/23,7.515468180625001 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/10/10,8.68166229199999 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/11/11,17.693558332545823 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/03/27,14.442800000705008 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/05/06,11.086618190000005 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/06/07,19.7526666656142 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/07/01,19.03587083290332 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/07/09,16.61977083333334 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/06/23,22.129983335633327 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/08/02,8.74231667019416 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/08/10,10.4132186451275 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/07/25,8.768425000479995 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/09/03,9.082100000000004 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/09/11,12.993619452151943 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/10/05,27.89573334032832 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/09/27,5.7122226699999965 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/11/06,9.829551141744998 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/10/29,25.405361669156697 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/12/08,5.183163823594169 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/12/24,8.112631258404992 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/03/05,17.720164583665827 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/04/06,12.659822916666664 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/04/22,6.924975 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/06/01,8.023452293547503 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/06/09,6.574125000767501 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/05/24,8.966746790967504 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/07/03,17.75015833314083 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/06/25,4.332692123846146 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/07/27,2.660975000047499 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/09/05,17.11745416946664 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/09/21,8.035059846714171 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/11/08,9.716962508525002 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/10/23,11.765411667319166 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/01/11,6.085749996655008 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/06/04,11.985149998327495 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/05/27,4.930751928285 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/07/06,9.70796171202165 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/06/28,9.161625000217494 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/08/07,9.624966668329185 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/07/22,12.63277916794918 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/07/30,10.1704500000725 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/08/23,6.920404207859168 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/09/24,5.249875603075835 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/10/02,15.186541692111694 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/11/07,5.293650052307688 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/11/03,12.109884090189984 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/11/02,23.19799166652917 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/01/22,21.95438333328585 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/03/03,10.67225833311834 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/04/28,18.930783338228338 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/06/10,2.2998968330725 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/05/29,20.83556666690416 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/05/24,8.861770000479995 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/05/30,4.982400000072495 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/06/27,3.620746183623332 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/07/09,5.413483198072495 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/07/01,6.430383340328339 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/06/23,6.208508333478332 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/08/10,3.353875000000001 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/08/02,8.212727275145001 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/07/25,9.729129552395008 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/10/05,12.140237873333314 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/11/10,13.361211368212505 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/10/24,22.55659444952441 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/10/29,4.716584280769228 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/11/22,7.349899640696667 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/01/09,14.482650000309988 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/02/08,5.996599997545008 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/02/02,11.610044515016677 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/04/10,10.322029591275845 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/04/07,16.16608124947751 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/03/30,16.505900002680026 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/04/27,8.813450007877512 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/05/09,6.3575944312523776 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/06/10,4.804096819424997 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/05/24,9.080560415834183 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/06/10,16.477939166429174 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/06/02,3.1236704999999967 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/07/04,3.5742288333333305 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/06/26,9.902275000289992 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/08/03,12.661633340193328 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/07/28,3.9220583366666575 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/08/30,10.583477499329994 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/09/06,3.180577250000005 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/08/29,13.880646966644148 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/09/30,13.826966659999966 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/09/22,14.674961115758606 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/10/23,6.867124993845007 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/11/01,7.677569696959162 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/10/24,3.7147371666666658 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/12/03,3.712675000000007 +Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/11/25,4.3056843007692285 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/01/22,10.41331666666668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/01/22,10.41331666666668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/02/24,21.67155833333335 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/02/24,21.67155833333335 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/04/28,15.02883336587081 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/04/29,6.162002729999999 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/04/28,15.02883336587081 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/04/29,6.162002729999999 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/05/30,9.270170832173353 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/06/07,9.670442050835003 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/05/22,5.206945082254159 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/05/30,9.270170832173353 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/06/07,9.670442050835003 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/05/22,5.206945082254159 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/10,15.462766673254174 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/01,6.062924993735015 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/10,15.462766673254174 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/01,6.062924993735015 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/02,17.140100004220013 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/25,20.562249999952503 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/02,17.140100004220013 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/25,20.562249999952503 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/03,16.322174998860007 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/27,11.431688783269992 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/11,3.4953045000000054 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/26,14.377806250167517 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/03,16.322174998860007 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/27,11.431688783269992 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/11,3.4953045000000054 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/26,14.377806250167517 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/10/05,18.760995832380846 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/27,17.02429583359584 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/10/05,18.760995832380846 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/27,17.02429583359584 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/01/02,5.385837500282507 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/01/02,5.385837500282507 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/10,6.044749999770006 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/01/25,8.169474997587516 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/02,21.779700004742523 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/10,6.044749999770006 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/01/25,8.169474997587516 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/02,21.779700004742523 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/26,20.734133354008343 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/27,2.955373761538459 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/26,20.734133354008343 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/27,2.955373761538459 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/03/29,11.191050430713338 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/03/30,20.22175835182834 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/03/29,11.191050430713338 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/03/30,20.22175835182834 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/09,15.295341734689153 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/04/23,10.5373250190975 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/08,2.8724000000000034 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/04/22,11.893814495256663 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/09,15.295341734689153 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/04/23,10.5373250190975 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/08,2.8724000000000034 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/04/22,11.893814495256663 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/25,14.703025012600005 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/09,18.82737500638004 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/25,14.703025012600005 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/09,18.82737500638004 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/07/03,24.63075416880416 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/26,10.810414566343338 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/25,15.57212916640417 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/07/03,24.63075416880416 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/26,10.810414566343338 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/25,15.57212916640417 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/08/04,14.855000000000002 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/07/27,23.998108335775843 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/08/04,14.855000000000002 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/07/27,23.998108335775843 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/08/28,15.66972500115002 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/08/28,15.66972500115002 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/07,16.457475000247506 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/09/21,18.92513333333336 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/09/29,23.47630833333333 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/07,16.457475000247506 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/09/21,18.92513333333336 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/09/29,23.47630833333333 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/11/08,24.23965833563336 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/11/01,11.125015832165836 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/23,19.398375000580003 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/31,22.052831252490023 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/11/08,24.23965833563336 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/11/01,11.125015832165836 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/23,19.398375000580003 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/31,22.052831252490023 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/03,11.0882937594425 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/02,3.439885205769229 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/03,11.0882937594425 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/02,3.439885205769229 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/01/11,10.93542083893333 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/26,24.44116666666665 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/27,18.96141669196668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/01/11,10.93542083893333 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/26,24.44116666666665 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/27,18.96141669196668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/02/28,11.879937527930004 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/03/08,2.368087975 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/02/20,19.714556250200005 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/02/28,11.879937527930004 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/03/08,2.368087975 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/02/20,19.714556250200005 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/04/09,2.417622150000003 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/04/02,2.474624650000001 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/04/09,2.417622150000003 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/04/02,2.474624650000001 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/05/27,6.4920000013949855 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/05/27,6.4920000013949855 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/06/28,3.032769230769232 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/06/28,3.032769230769232 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/07/31,16.805675001724993 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/07/30,13.353983346130851 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/07/31,16.805675001724993 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/07/30,13.353983346130851 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/08,7.283794198039164 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/01,19.951028333333344 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/08/23,14.43835835195083 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/08/31,15.910725000189998 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/08,7.283794198039164 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/01,19.951028333333344 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/08/23,14.43835835195083 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/08/31,15.910725000189998 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/10,7.176224993385007 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/03,13.71071666906668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/24,13.177539585415843 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/11,23.304883333165847 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/02,15.62351666676168 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/10,7.176224993385007 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/03,13.71071666906668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/24,13.177539585415843 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/11,23.304883333165847 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/02,15.62351666676168 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/11/11,18.899183334298343 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/11/04,6.052603714471669 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/27,15.104399999905004 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/11/11,18.899183334298343 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/11/04,6.052603714471669 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/27,15.104399999905004 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/12/06,9.78662916444667 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/03/11,6.653274768717941 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/04/05,4.593375000289997 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/04/28,3.622325000000008 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/04/21,9.294358336666653 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/06/07,12.023037499715016 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/05/30,13.374025000000008 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/05/23,4.016699246666662 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/07/09,13.854866668966674 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/07/02,23.37867291666668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/08/10,8.083708331618341 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/08/03,11.31189166874916 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/08/02,4.637722036153836 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/09/04,7.4197479368541615 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/08/26,7.685914999582517 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/09/03,13.662683334055831 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/10/05,22.10436666884668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/11/07,20.417944465239454 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/10/30,20.30440834037585 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/12/09,11.19999168943666 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/12/08,4.107106819999999 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/11/22,3.47925651666666 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/12/25,4.603767854904998 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/01/26,9.851387519319996 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/02/10,9.58254393842168 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/03/06,11.201000000000016 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/04/07,6.568017497369998 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/03/30,6.560675000145 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/05/02,11.270208345023333 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/04/23,21.56481252549002 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/06/03,14.548300026065004 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/05/25,12.55762501840499 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/06/02,11.587124999999984 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/07/05,6.396399993015007 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/06/26,15.681283348563342 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/07/04,25.556175000000003 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/07/28,9.688412529064994 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/09/07,13.85532500249001 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/08/29,10.484054174041663 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/08/22,12.123808339345842 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/09/23,13.778749999630008 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/09/22,15.056600003450002 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/11/01,22.14608333392334 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/10/24,28.23254166896665 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/12/03,11.568514588380836 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/11/26,12.863454861158605 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/12/11,12.811758333518323 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/11/25,17.03728333563334 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/12/28,3.313683333033337 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/01/29,13.502454868201111 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/03/01,9.985393946151648 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/02/21,6.934128028333333 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/03/09,4.850183338240829 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/04/02,11.628689590298343 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/03/24,13.704786137297488 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/04/01,4.572781305333329 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/05/03,5.117225002299993 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/05/27,11.07887499667 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/06/04,8.831841682766672 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/06/28,11.751600110992513 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/06/21,9.303528786666677 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/07/06,5.393490031666663 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/08/08,12.92902499964251 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/08/07,14.996975000190009 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/07/22,2.813152250000007 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/08/24,12.448566673014176 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/09/08,15.214154183701671 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/08/23,18.640677275095 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/10/11,6.444708324520843 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/10/10,24.31990000047499 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/11/28,9.525210413761677 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/12/06,3.32626564711538 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/01/06,6.144695829203348 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/12/29,2.562505830769231 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/01/22,8.9000750913486 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/03/04,9.01683333568082 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/04/05,13.936720849198334 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/03/27,18.858145888465845 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/05/06,3.125565547743333 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/06/07,18.740966686579192 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/06/24,9.02699469666668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/07/09,4.239375000192493 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/06/23,3.079950000072505 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/08/11,17.218743752632488 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/08/02,12.372712499975009 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/09/03,3.297265156666663 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/08/27,8.665300003977501 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/09/11,23.36150000460001 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/08/26,15.708016668966684 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/09/27,16.820491666451673 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/11/06,12.004450760000005 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/11/09,3.354019579999997 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/11/04,13.51201667126668 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/12/01,10.107833935029166 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/02/10,3.291719230769237 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/02/26,18.134512500475 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/02/27,17.58475000000005 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/02/26,3.971558798333331 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/03/30,8.238387497167507 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/04/08,2.8488750000000045 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/03/22,4.610405303333328 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/09,16.33762727333335 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/10,8.197278043333325 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/09,10.2778250506 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/01,10.042200009199984 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/25,14.63097500079999 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/07/11,8.501900000000013 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/06/29,25.58236209023335 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/06/24,23.790632918966693 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/07/04,4.461380315217497 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/06/26,6.770125001709996 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/02,7.37139999706751 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/07/28,9.326900012804993 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/06,9.466520469999995 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/05,8.570075001482481 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/07/29,3.824275000000004 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/31,2.4292962307692325 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/29,6.495799999999998 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/10/09,16.01851630971882 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/10/08,21.079572263164224 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/09/23,18.295393182442503 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/11/07,15.401859099917504 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/10/26,9.136783333533344 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/11/10,15.393718182395002 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/11/09,14.332346969061666 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/11/26,11.041643179999983 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/12/27,13.313041675724172 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/02/10,10.297647929921665 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/02/06,14.35315 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/01/28,2.375226849999999 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/03/09,2.3121572 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/04/11,13.929025071300014 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/04/10,2.4966744750000016 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/04/03,11.133043179999987 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/04/02,13.663406056666677 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/03/26,2.6069730250000034 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/05/26,18.000440153333365 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/06/05,5.459789040705837 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/05/29,14.88796666666667 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/05/28,3.5437113849999973 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/07/07,11.969175000337492 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/06/30,13.18877500029 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/06/29,4.727425000047492 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/06/21,5.847093941746669 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/08/05,22.68568083333333 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/07/31,21.66383500000002 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/07/31,10.04283485333334 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/07/23,9.241978786666674 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/08/27,14.257625006792514 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/08/22,15.28760250033251 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/09/01,22.42975000460001 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/10/03,5.449759039999996 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/10/28,21.422410763566692 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/11/29,11.83042197268832 +Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/11/28,4.258560080769225 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/02/07,22.674233333333337 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/02/07,22.674233333333337 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/03/11,11.54560833307084 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/03/11,11.54560833307084 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/06,4.360050000410001 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/06,4.360050000410001 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/30,4.096201529091667 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/22,13.28875001265001 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/30,4.096201529091667 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/22,13.28875001265001 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/03,7.667477082725849 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/11,3.0853022499999976 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/08/26,4.285250000362493 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/03,7.667477082725849 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/11,3.0853022499999976 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/08/26,4.285250000362493 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/10/05,10.40773333810584 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/27,10.15621136 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/10/05,10.40773333810584 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/27,10.15621136 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/11/22,7.561899994615005 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/11/30,2.6962520000000016 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/11/22,7.561899994615005 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/11/30,2.6962520000000016 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/03/05,13.28685833245833 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/03/05,13.28685833245833 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/03/29,9.791802975520476 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/03/29,9.791802975520476 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/04/30,5.156733338333331 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/04/30,5.156733338333331 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/05/24,4.074824999999992 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/05/24,4.074824999999992 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/07/03,4.318076640440242 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/07/11,4.431499450333331 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/06/25,5.3551 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/07/03,4.318076640440242 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/07/11,4.431499450333331 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/06/25,5.3551 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/08/04,8.362250028074996 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/08/04,8.362250028074996 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/05,10.41954772333334 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/08/28,5.948261366834172 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/05,10.41954772333334 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/08/28,5.948261366834172 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/10/07,5.451702266739172 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/21,8.511340146739164 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/29,4.865995489999996 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/10/07,5.451702266739172 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/21,8.511340146739164 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/29,4.865995489999996 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/11/08,3.908384863623329 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/10/23,11.842699997234996 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/11/08,3.908384863623329 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/10/23,11.842699997234996 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/01/11,17.549756250800016 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/01/11,17.549756250800016 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/02/28,10.403625015787492 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/03/08,12.939492917046662 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/02/28,10.403625015787492 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/03/08,12.939492917046662 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/04/09,3.489544327435893 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/04/09,3.489544327435893 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/05/27,3.2627649207692277 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/05/27,3.2627649207692277 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/06,15.257855834185843 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/06,15.257855834185843 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/08/07,12.553623400075823 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/22,17.06889166767416 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/30,2.7235362750000003 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/08/07,12.553623400075823 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/22,17.06889166767416 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/30,2.7235362750000003 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/08/23,12.398620888230834 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/08/23,12.398620888230834 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/10/10,4.215525002395004 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/09/24,6.304950000142506 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/10/02,4.526233802769228 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/10/10,4.215525002395004 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/09/24,6.304950000142506 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/10/02,4.526233802769228 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/11/11,7.914777270144992 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/11/11,7.914777270144992 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/11/27,7.535868801437499 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/05/30,4.267200000072502 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/07/09,8.6527250042825 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/07/01,10.532250000457497 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/08/10,4.076961359999991 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/09/03,6.934100493248208 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/10/05,2.7900344307692317 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/12/08,5.701335736864881 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/01/25,15.521991666619163 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/03/06,22.177183333333343 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/02/26,21.85934999973752 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/05/09,8.704699994619999 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/04/23,11.251837297656902 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/06/26,8.485150004695003 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/07/28,7.199112915306679 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/08/05,12.663633332903322 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/08/29,8.111025014207497 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/09/06,3.3089238307692286 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/10/08,4.576574722769226 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/11/01,4.106279582353339 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/10/24,4.084100783333327 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/11/25,9.62405682 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/03/08,10.909424999620022 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/04/01,2.898434131666667 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/04/25,3.536790915214999 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/05/03,8.07207045999999 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/05/27,6.757533335965829 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/06/04,6.471625000862503 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/06/28,9.712449985999994 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/07/06,2.75497711153846 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/07/30,9.56264166678667 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/08/07,3.2909465207692272 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/08/31,3.772810606739163 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/10/10,14.729275002299994 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/09/24,8.569383333453324 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/11/03,5.695025000200003 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/12/29,17.00748333970835 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/03/11,12.721558333190828 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/03/27,7.243225004027498 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/05/06,5.63066591 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/06/07,6.667850000264999 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/05/22,9.687916668271654 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/08/02,3.878316666951664 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/08/10,15.692200004600007 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/09/11,5.962475000357504 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/08/26,21.315958333333324 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/11/06,5.057656830214993 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/11/09,3.1869204649999947 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/10/29,3.484447603205125 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/11/22,8.3858431373394 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/12/24,11.580508333333334 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/12/24,8.018216664456675 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/01/25,22.47810000000001 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/02/26,22.14189166666668 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/03/30,11.90125750073251 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/03/22,3.576900014999997 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/05/09,5.547361360047503 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/05/09,4.208565079999996 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/05/01,5.57985454999999 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/04/23,6.7677750064624975 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/05/25,4.702558715825833 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/06/29,3.313365912174163 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/06/26,3.227865910217499 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/07/28,6.200933333333333 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/08/31,3.1753303516025624 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/08/29,17.36550000133999 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/10/04,15.226974999094995 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/10/08,5.667621391999993 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/09/30,13.576287500094995 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/10/26,9.650531251627486 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/11/09,2.8968850807692297 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/12/27,12.68026666665166 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/02/21,10.451208333070849 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/04/07,6.920587503333341 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/04/10,3.909352099999996 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/04/26,3.5263887 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/05/26,7.818164770867506 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/05/28,7.055575000452503 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/07/04,2.6238931826825 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/06/21,15.35615001856752 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/08/05,19.52960019147916 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/07/23,3.238569706739161 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/01,13.489464167214155 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/08/22,10.484044693333336 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/09,10.501841665901663 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/01,23.68949958342832 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/08/24,23.72221666666667 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/28,10.29994584131082 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/23,5.920370827698337 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/10/03,18.860875002489976 +Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/25,3.7911250000725016 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/01/29,22.348225000000006 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/01/29,22.348225000000006 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/02/22,23.552474999999998 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/02/22,23.552474999999998 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/05,4.9309637875092776 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/04/28,5.239650005190004 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/06,8.552088641022483 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/05,4.9309637875092776 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/04/28,5.239650005190004 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/06,8.552088641022483 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/06/06,4.522039625507496 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/06/07,10.818300000142482 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/29,3.8075590365384575 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/06/06,4.522039625507496 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/06/07,10.818300000142482 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/29,3.8075590365384575 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/09,8.024041677999165 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/10,2.7069842500000028 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/01,6.3339357152932045 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/09,8.024041677999165 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/10,2.7069842500000028 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/01,6.3339357152932045 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/03,5.934770821503342 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/25,2.8973144678571416 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/11,3.966829395769224 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/03,5.934770821503342 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/25,2.8973144678571416 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/11,3.966829395769224 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/10/05,9.746329169864168 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/26,3.499456086666658 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/10/04,4.936663625145 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/27,2.6657111125 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/10/05,9.746329169864168 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/26,3.499456086666658 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/10/04,4.936663625145 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/27,2.6657111125 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/29,4.527031814999996 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/22,4.00768574141357 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/21,12.842583333118329 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/29,4.527031814999996 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/22,4.00768574141357 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/21,12.842583333118329 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/01/24,21.98777499978501 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/01/24,21.98777499978501 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/03/04,22.787799999785 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/03/05,13.828591666571672 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/03/04,22.787799999785 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/03/05,13.828591666571672 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/05,7.940693185072502 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/05,7.940693185072502 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/30,7.054195450000009 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/21,7.790100004672501 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/29,5.625606445116663 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/30,7.054195450000009 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/21,7.790100004672501 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/29,5.625606445116663 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/23,6.948537499622498 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/31,4.530296616146665 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/24,12.416624999569985 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/23,6.948537499622498 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/31,4.530296616146665 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/24,12.416624999569985 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/03,3.9799591101449927 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/06/24,2.8713689492033323 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/11,5.288315912027497 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/06/25,3.775203530769224 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/03,3.9799591101449927 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/06/24,2.8713689492033323 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/11,5.288315912027497 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/06/25,3.775203530769224 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/11,14.074133354323337 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/03,12.411833333118318 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/27,4.392336364999992 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/11,14.074133354323337 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/03,12.411833333118318 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/27,4.392336364999992 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/05,4.424218299999988 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/27,4.172265804482612 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/04,5.265159090337496 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/28,5.095363461610949 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/05,4.424218299999988 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/27,4.172265804482612 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/04,5.265159090337496 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/28,5.095363461610949 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/10/07,3.595184848333327 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/28,8.483361360000002 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/21,4.170695698333326 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/10/06,2.340856700000001 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/29,2.906602275 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/10/07,3.595184848333327 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/28,8.483361360000002 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/21,4.170695698333326 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/10/06,2.340856700000001 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/29,2.906602275 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/11/08,9.702408337860822 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/11/07,2.3920361000000003 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/11/08,9.702408337860822 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/11/07,2.3920361000000003 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/12/10,9.923941666666686 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/12/10,9.923941666666686 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/12/25,21.88613333333335 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/12/25,21.88613333333335 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/03/08,6.307074643076913 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/02/27,10.628998333848356 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/02/20,14.687774999857508 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/03/08,6.307074643076913 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/02/27,10.628998333848356 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/02/20,14.687774999857508 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/03/23,22.348225000000006 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/03/23,22.348225000000006 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/04/24,12.372550029900012 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/05/11,3.5092022502649978 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/04/24,12.372550029900012 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/05/11,3.5092022502649978 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/06/11,4.413273223554046 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/06/11,4.413273223554046 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/05,3.239342299999997 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/06/28,4.145149999999993 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/05,3.239342299999997 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/06/28,4.145149999999993 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/29,14.629625006899998 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/30,2.996626387499999 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/29,14.629625006899998 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/30,2.996626387499999 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/08/30,3.8071500000724927 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/08/30,3.8071500000724927 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/10,9.090707922204158 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/01,5.307505952380953 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/09/24,8.95363446676167 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/02,3.4856843932692265 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/09/23,4.990775000697504 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/10,9.090707922204158 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/01,5.307505952380953 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/09/24,8.95363446676167 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/02,3.4856843932692265 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/09/23,4.990775000697504 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/11/10,2.873508735 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/25,6.101569114999994 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/11/10,2.873508735 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/25,6.101569114999994 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/12/04,4.156116666736678 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/01/29,11.270149999985 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/05/05,8.05377667131416 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/05/29,12.910925013442496 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/05/30,4.183603033478328 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/07/09,12.985258333618328 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/06/30,4.761045458760003 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/07/08,12.525433333380825 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/07/01,12.881883333405815 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/06/22,4.354400000000003 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/08/10,4.094113699999993 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/08/09,3.825252250000002 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/09/03,2.944025000000005 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/08/25,4.03949910999999 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/10/05,10.8529750003125 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/12/07,22.373925000000007 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/11/22,3.644000000000008 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/02/09,15.782599999999988 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/02/01,21.794191666666684 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/01/25,11.687449999984995 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/02/26,21.66638333333335 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/04/23,4.971870555552742 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/05/08,7.880575004672487 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/04/22,7.393813461538462 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/06/10,21.3452249983025 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/06/09,4.343511409999988 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/07/04,8.729450000262496 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/08/04,14.885950027887493 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/08/05,3.335829500000001 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/07/27,3.4757750000000005 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/09/05,3.040134089999995 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/09/06,3.953499999999994 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/09/21,7.516722737341666 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/10/08,3.2823658000000013 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/11/01,7.603125009520005 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/10/23,12.187190300771652 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/11/09,3.2237500000000083 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/12/11,4.215745316346153 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/11/25,2.7662272500000027 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/02/05,22.47810000000001 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/04/01,15.248708336930845 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/05/02,15.638533393133352 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/04/25,9.15176668281416 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/05/03,3.31216365 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/05/27,3.4943901586241632 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/05/26,8.08725000385498 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/07/06,4.074319706666662 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/06,3.778791683405828 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/07/30,2.372313646737501 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/07,2.602204750000002 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/31,3.6263468991025656 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/22,4.116175763333327 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/23,4.3476192307692205 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/10/09,3.155066688333331 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/09/23,17.901120833428326 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/10/10,12.72557917246417 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/11/10,8.887512133405814 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/10/25,9.536499995720014 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/12/29,21.75304166666668 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/01/30,21.981250000000014 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/03/02,22.47810000000001 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/04/03,13.85937500756249 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/05/06,3.888190919999997 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/04/27,4.625854168966669 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/06/06,19.21018333385581 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/06/07,5.526400005437507 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/05/29,6.10102010306083 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/06/23,3.119777250047502 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/08/02,11.377729167141686 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/08/10,11.19849999983248 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/09/10,8.792414585790832 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/08/25,4.334650000820001 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/09/11,3.307888424999994 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/08/26,3.4925794999999984 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/09/26,4.419674892453446 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/11/05,3.327817384615385 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/10/29,2.351557699999999 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/11/29,9.03371666735417 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/11/24,2.3483860999999986 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/12/24,11.37413333333334 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/12/23,10.634383333333352 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/02/26,13.16834999969 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/04/06,21.69311666662917 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/03/29,21.88613333333335 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/09,2.9230917999999986 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/08,10.528125017677494 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/01,3.782003033333331 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/04/30,3.791581829999996 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/31,18.15137500124999 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/25,3.494697749999996 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/24,5.3692500007475 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/07/04,3.460109090144994 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/06/29,20.75612499995248 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/07/04,4.1950545 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/07/03,4.680939414054165 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/06/26,9.865275000457496 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/06/25,13.165000005797504 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/08/07,4.204293190144989 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/08/05,5.363500000144994 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/07/28,3.551262794871789 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/09/10,6.890259090867504 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/08/24,11.990416737244168 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/08/28,2.470986225000002 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/09/22,14.567941669971669 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/09/30,2.158793074999997 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/11/09,2.7552322499999997 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/11/08,2.0465975500000004 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/10/24,4.263350000337493 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/10/23,12.64322500039999 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/12/10,2.3343363500000005 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/11/24,4.326195316346156 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/12/27,12.010024999937505 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/02/04,22.14189166666668 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/04/10,9.579783333238325 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/04/09,12.647849999904992 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/04/02,11.74481666657166 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/04/01,12.257081250355007 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/09,18.33450834253332 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/11,5.732100000000007 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/31,3.2419704504349967 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/26,2.774617421956667 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/06/05,8.983294231759226 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/06/04,5.2246107225132095 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/28,4.205475000144991 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/27,16.685000000072492 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/06/22,2.5289545421025004 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/07/06,4.707043185119993 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/06/21,5.313525000699994 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/08/10,7.943150004784999 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/08/05,3.1936884622634585 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/07/30,5.447250000144992 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/07/23,3.59762803468583 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/06,4.543939285786778 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/01,2.053250606116668 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/09,4.347435607414165 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/01,7.140725000407505 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/08/31,3.802636339999995 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/08/23,3.845387530769224 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/28,17.32051921308417 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/10/03,5.430375000362497 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/10/02,3.479574109999993 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/25,5.482975000552507 +Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/11/28,4.176579184230763 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/07,10.452775000000017 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/01/29,22.407050000000005 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/01/22,10.460433333333356 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/07,10.452775000000017 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/01/29,22.407050000000005 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/01/22,10.460433333333356 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/23,22.348225000000006 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/03/10,21.78088333333335 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/22,9.153074999212512 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/23,22.348225000000006 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/03/10,21.78088333333335 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/22,9.153074999212512 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/04/03,9.39795833316585 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/04/03,9.39795833316585 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/06,10.549666671339155 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/06,10.549666671339155 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/06/06,15.324991680466669 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/30,2.5619818224799986 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/29,3.5345295499999945 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/22,5.04060153666666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/06/06,15.324991680466669 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/30,2.5619818224799986 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/29,3.5345295499999945 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/22,5.04060153666666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/07/08,13.147799997092497 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/07/08,13.147799997092497 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/09,3.551648199999994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/10,12.256783333533322 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/01,4.313325230769224 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/09,3.551648199999994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/10,12.256783333533322 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/01,4.313325230769224 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/25,4.53969395379083 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/11,3.678210695769223 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/25,4.53969395379083 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/11,3.678210695769223 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/10/05,5.786200003042502 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/26,3.62813787666666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/10/04,5.875725000072512 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/27,3.11039861826923 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/10/05,5.786200003042502 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/26,3.62813787666666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/10/04,5.875725000072512 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/27,3.11039861826923 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/11/05,5.473031909999996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/11/05,5.473031909999996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/11/21,16.85803750016999 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/11/21,16.85803750016999 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/01/24,21.675758333333352 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/01/24,21.675758333333352 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/02/26,21.69402500000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/03/05,12.504583333118328 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/02/26,21.69402500000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/03/05,12.504583333118328 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/05,10.37794166666666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/05,10.37794166666666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/07,8.163758333768339 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/30,3.92646970666666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/21,7.317578796666668 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/29,22.149775000984988 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/07,8.163758333768339 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/30,3.92646970666666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/21,7.317578796666668 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/29,22.149775000984988 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/23,4.488554163041671 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/31,11.355883348330831 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/24,4.138599999999991 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/23,4.488554163041671 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/31,11.355883348330831 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/24,4.138599999999991 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/06/24,4.371758447594047 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/07/11,11.30769166690416 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/06/25,4.994136359999996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/06/24,4.371758447594047 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/07/11,11.30769166690416 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/06/25,4.994136359999996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/11,3.008847735772498 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/04,3.452603796811661 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/03,20.451283333333315 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/07/27,3.1809003107692284 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/11,3.008847735772498 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/04,3.452603796811661 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/03,20.451283333333315 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/07/27,3.1809003107692284 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/05,3.511809100072493 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/04,7.66945 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/28,3.9443068203124936 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/05,3.511809100072493 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/04,7.66945 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/28,3.9443068203124936 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/07,8.915813630145003 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/28,2.8750113606524987 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/21,3.3186424318116616 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/06,2.215236200000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/29,3.876077284999994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/07,8.915813630145003 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/28,2.8750113606524987 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/21,3.3186424318116616 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/06,2.215236200000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/29,3.876077284999994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/11/08,16.436850027600016 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/23,14.043692932791664 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/11/07,8.692497699999997 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/11/08,16.436850027600016 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/23,14.043692932791664 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/11/07,8.692497699999997 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/12/25,21.75304166666668 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/12/25,21.75304166666668 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/03/08,14.41704583323834 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/03/08,14.41704583323834 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/03/23,22.348225000000006 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/03/23,22.348225000000006 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/04/24,13.564652273405844 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/05/11,3.152224374999999 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/04/24,13.564652273405844 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/05/11,3.152224374999999 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/06/11,4.650325764306666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/06/11,4.650325764306666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/07/05,2.704938550000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/07/05,2.704938550000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/07/30,2.638604450000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/07/30,2.638604450000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/08/30,11.206090910047507 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/08/23,4.377950650859278 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/08/30,11.206090910047507 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/08/23,4.377950650859278 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/10,6.038725000675002 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/01,4.0242136249999945 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/09/24,8.50397878681167 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/02,3.2289203625 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/09/23,6.091775000215007 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/10,6.038725000675002 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/01,4.0242136249999945 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/09/24,8.50397878681167 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/02,3.2289203625 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/09/23,6.091775000215007 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/11,3.2496477302625038 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/10,8.604650001095003 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/25,5.166890999999993 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/11,3.2496477302625038 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/10,8.604650001095003 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/25,5.166890999999993 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/12/04,12.101387504085023 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/26,2.935925 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/01/29,12.175910417414164 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/05/05,5.745193219999989 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/05/29,3.935251531811663 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/05/30,3.346977749999993 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/07/09,4.573293199999986 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/07/08,14.160333333405818 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/07/01,10.01823333733332 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/06/22,2.740395325000002 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/08/10,3.977297800072492 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/08/09,3.3415500000000007 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/08/25,3.970847354999994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/10/05,5.175274271666657 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/02/26,21.909850000000016 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/04/23,6.836634853333331 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/05/08,5.157684102299999 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/04/22,2.5167829900000003 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/06/09,2.81712955 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/06/26,10.206749999524993 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/07/04,13.322525000309994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/08/04,8.492150000892503 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/08/05,2.513248325000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/09/05,4.126285089999988 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/08/29,4.977131719120112 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/09/06,4.137024999999994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/09/21,7.78998787666667 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/10/08,6.148968199999993 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/10/23,3.3289191448717954 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/11/25,13.322666666981675 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/02/29,14.41943333331833 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/02/20,9.998699999427512 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/05/02,7.524125778405828 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/04/25,7.407375000072503 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/05/03,5.632077299999992 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/06/04,13.737212500309996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/05/26,3.3422659100000014 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/07/05,6.806959094737505 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/06/28,7.239074998405009 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/07/06,2.691607675000003 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/06,12.373799998197502 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/07/30,3.4858500038625 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/07,14.56060833333331 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/31,22.442429167331703 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/22,7.512179168966681 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/09/08,7.295191667166672 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/23,4.269522734999994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/10/09,3.777312886739159 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/10/10,16.166768340518338 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/09/24,13.768075000404998 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/11/10,8.990541559047621 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/10/25,12.485793753382486 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/12/29,21.848400000000016 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/02/06,13.088791666404166 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/04/03,11.421725009635 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/04/04,15.994783346030836 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/03/26,9.7307250002375 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/05/06,5.46502725 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/06/06,10.174275005179991 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/06/07,4.089732985769222 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/05/29,21.12945833321334 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/08/10,8.018259090239999 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/07/25,19.105974999922516 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/08/25,5.269458335383333 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/09/11,7.682554168246661 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/08/26,3.6474090901199943 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/06,12.309283348883328 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/10/28,4.39030983333333 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/09,5.06844607966666 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/05,2.371837690000002 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/10/29,2.4992710249999983 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/12/07,21.68654166572917 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/24,2.577922449999999 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/21,3.347579589999998 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/12/24,22.964575 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/12/23,21.75304166666668 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/04/06,9.644233333743347 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/03/29,21.867666666666683 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/09,4.022660606666661 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/09,4.547522060769224 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/08,4.4691750022999965 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/01,5.314410467999993 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/04/30,8.022908340305827 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/04/23,21.69755000033752 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/04/22,5.150050000507494 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/31,17.243899999417504 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/25,3.8346727301200008 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/07/04,3.1705734836233286 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/06/29,6.304175002802505 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/06/26,3.2734002857692253 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/08/24,2.784336200228939 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/08/29,9.643391667096644 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/08/28,3.230458199999997 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/09/30,12.6840625000725 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/09/22,2.877781225000001 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/09/21,12.973550000357491 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/10/31,8.932999996359994 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/10/26,4.666255332174156 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/11/09,3.481234729999996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/11/08,2.14569535 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/12/10,2.6262922500000023 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/12/02,20.844199999990018 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/11/24,3.18384975 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/04/01,10.895900002442495 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/09,12.542379165901655 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/11,5.17163485333333 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/04/26,3.3895750000000064 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/04/25,5.177225000507495 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/31,7.1485113601925 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/26,3.26345303333333 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/06/05,21.44294167586668 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/28,13.914166671601672 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/27,20.68018977461752 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/06/22,3.5462454502174925 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/07/06,3.753954549999996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/08/05,18.741899998924985 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/07/30,3.5084568200724933 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/07/22,3.63215682 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/06,3.374165143985828 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/01,2.8732977310875 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/09,13.28228333373332 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/01,4.422694701881662 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/08/31,3.205427339999996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/08/24,4.8964856076566585 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/08/23,3.259572749999996 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/28,14.478625017752476 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/23,17.90849166770917 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/10/03,5.833200000047507 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/10/02,2.5215149150000027 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/25,20.81619166655914 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/11/03,5.459275029999991 +Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/11/28,13.575949999474998 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/01/29,22.27547500000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/01/22,23.54250833333332 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/06,22.689058333333342 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/01/29,22.27547500000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/01/22,23.54250833333332 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/06,22.689058333333342 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/23,22.674233333333337 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/22,21.18509166666669 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/23,22.674233333333337 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/22,21.18509166666669 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/05,21.76082916742668 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/06,4.5494750003125 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/05,21.76082916742668 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/06,4.5494750003125 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/06,5.012223744657731 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/30,21.15266500123252 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/07,13.450408333333316 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/29,15.020241666666662 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/22,3.4322098533333367 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/06,5.012223744657731 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/30,21.15266500123252 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/07,13.450408333333316 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/29,15.020241666666662 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/22,3.4322098533333367 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/07/08,7.176541680349168 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/22,22.490312500855037 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/07/08,7.176541680349168 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/22,22.490312500855037 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/09,3.642283346666661 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/02,15.491408333333318 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/01,2.578467125000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/07/25,15.368199999769995 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/09,3.642283346666661 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/02,15.491408333333318 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/01,2.578467125000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/07/25,15.368199999769995 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/03,6.456631240952512 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/25,3.679279554999992 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/11,2.444875000000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/02,11.295383333405834 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/03,6.456631240952512 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/25,3.679279554999992 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/11,2.444875000000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/02,11.295383333405834 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/10/05,21.44442499928 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/26,4.799698476355306 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/10/04,12.89615833353332 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/27,2.8576225059981675 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/10/05,21.44442499928 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/26,4.799698476355306 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/10/04,12.89615833353332 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/27,2.8576225059981675 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/05,3.093246383974355 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/05,3.093246383974355 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/12/08,6.63754999647001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/29,11.5360461138436 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/22,6.781881241205007 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/30,2.9641272500000064 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/12/08,6.63754999647001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/29,11.5360461138436 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/22,6.781881241205007 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/30,2.9641272500000064 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/01/24,21.75304166666668 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/01/24,21.75304166666668 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/02/26,22.351800000000008 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/03/05,22.097808333285847 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/02/26,22.351800000000008 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/03/05,22.097808333285847 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/05,7.478638649999991 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/03/29,6.1394499956100095 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/05,7.478638649999991 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/03/29,6.1394499956100095 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/07,5.573519164951669 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/30,3.748906091739162 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/21,5.697821867999992 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/29,3.704029172371664 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/07,5.573519164951669 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/30,3.748906091739162 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/21,5.697821867999992 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/29,3.704029172371664 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/23,5.571207623405238 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/31,6.00591667204666 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/24,8.342925000529993 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/23,5.571207623405238 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/31,6.00591667204666 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/24,8.342925000529993 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/03,3.306128533205126 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/06/24,3.4702666683333274 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/11,9.191284098856652 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/06/25,3.99083487884615 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/03,3.306128533205126 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/06/24,3.4702666683333274 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/11,9.191284098856652 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/06/25,3.99083487884615 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/11,2.4644704510875006 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/04,3.9226733346666576 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/26,21.97015250031252 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/03,7.270083339083329 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/27,3.20762750576923 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/11,2.4644704510875006 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/04,3.9226733346666576 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/26,21.97015250031252 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/03,7.270083339083329 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/27,3.20762750576923 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/05,3.285727749999994 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/27,2.9555604733624974 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/04,3.657643189999997 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/28,5.065250000072493 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/05,3.285727749999994 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/27,2.9555604733624974 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/04,3.657643189999997 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/28,5.065250000072493 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/07,2.7429022800725 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/28,5.838160608405834 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/21,2.968589274666666 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/06,2.3523916673076903 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/29,3.6188161857692247 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/07,2.7429022800725 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/28,5.838160608405834 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/21,2.968589274666666 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/06,2.3523916673076903 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/29,3.6188161857692247 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/11/08,4.094641822289998 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/23,6.612050645714278 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/11/07,2.812398418269229 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/11/08,4.094641822289998 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/23,6.612050645714278 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/11/07,2.812398418269229 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/10,3.710954433478329 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/09,3.5674295000475045 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/10,3.710954433478329 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/09,3.5674295000475045 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/01/02,22.177183333333343 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/25,22.22658333333335 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/01/02,22.177183333333343 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/25,22.22658333333335 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/02/04,22.476633333333343 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/02/04,22.476633333333343 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/03/08,11.968075000427502 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/02/27,13.003675000705018 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/03/08,11.968075000427502 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/02/27,13.003675000705018 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/03/23,22.30574166666668 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/03/23,22.30574166666668 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/04/24,12.53138333333333 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/05/11,2.121101725 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/04/24,12.53138333333333 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/05/11,2.121101725 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/06/11,5.46110363262 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/06/11,5.46110363262 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/05,2.9069977250000005 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/05,2.9069977250000005 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/29,3.524141673405826 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/06,2.9971567500000016 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/30,2.7647117793956038 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/29,3.524141673405826 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/06,2.9971567500000016 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/30,2.7647117793956038 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/30,3.338684095072497 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/23,5.815443952801664 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/30,3.338684095072497 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/23,5.815443952801664 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/10,5.799906839999999 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/01,3.812401566666659 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/09/24,7.688427270217504 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/02,2.9599812502289367 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/09/23,3.632672729999998 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/10,5.799906839999999 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/01,3.812401566666659 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/09/24,7.688427270217504 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/02,2.9599812502289367 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/09/23,3.632672729999998 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/11/11,9.769944258553595 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/11/10,2.8992750000000056 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/25,6.046230569999995 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/11/11,9.769944258553595 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/11/10,2.8992750000000056 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/25,6.046230569999995 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/12/04,13.750629586728351 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/05/05,5.1868500023724975 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/06/07,3.235874998192503 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/05/29,13.605541673566664 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/05/30,3.105804600000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/07/09,4.249744599999989 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/07/08,17.000175001214988 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/06/22,2.6144702182692305 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/08/10,4.127955999999994 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/08/09,4.573638624999993 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/09/03,4.324064534102562 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/08/25,5.163129999999993 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/09/27,4.6592746269616665 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/10/05,2.5777781700000006 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/12/07,22.67296666666667 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/11/22,21.82000000033752 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/02/09,11.214224999125006 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/02/26,21.77565833333335 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/04/23,14.104587502470013 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/05/08,3.630678008333328 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/04/22,2.6492827875 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/06/01,10.132824999572524 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/06/09,3.347273214999995 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/07/03,7.826389582740828 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/06/26,18.104033333118323 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/08/04,6.755022727556668 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/07/28,10.59996249657251 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/08/05,2.973140500000003 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/07/27,3.270750000000005 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/09/05,3.1773609179999944 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/09/06,2.82795501153846 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/09/30,7.752124998635012 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/09/21,7.7240863599999985 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/10/08,3.496184561538457 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/11/08,6.482749996625013 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/10/23,7.669126500822747 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/11/09,3.297425000000008 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/11/25,3.2787847548076936 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/02/21,9.869816666666685 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/02/29,21.919450000000012 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/02/20,22.21583333333335 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/04/01,18.103709090000013 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/02,9.117961226333328 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/04/25,7.618266673661676 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/10,4.255875000144994 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/03,5.279715914999997 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/27,3.991699238478327 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/06/04,11.603820090567492 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/26,2.9726032199999985 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/07/05,7.968791672296662 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/06/28,11.45762499871752 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/07/06,2.9040856490384623 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/06,3.913192446739164 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/07/30,3.641786365217491 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/07,3.1893750000000045 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/22,7.304814589308325 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/30,2.774856645000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/23,4.755514393333328 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/10/09,5.152772781047612 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/10/10,3.675350000000003 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/09/24,12.713975002537492 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/11/10,10.39517186238094 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/10/25,11.549022911474164 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/01/29,22.76205 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/01/30,21.66638333333335 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/03/02,22.539900000000006 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/04/03,11.334616727911676 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/04/04,3.6706000000000047 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/05/06,2.428424950000002 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/06/07,10.8847000014625 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/05/29,4.748329169141662 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/07/09,17.69817500040001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/06/23,5.026390226923069 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/07/24,10.187208336258312 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/08/10,5.103250000072493 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/07/25,6.471892284871786 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/08/25,10.239783333958338 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/09/11,3.540954499999998 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/08/26,3.8202795000725 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/09/26,7.10641667826168 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/11/06,5.5390934522859565 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/10/28,7.652824999925014 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/11/05,3.0292192307692307 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/10/29,2.529708198626372 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/12/07,4.201025000144994 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/11/24,2.335375767307689 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/11/21,2.4583429249999997 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/12/24,23.10110833333333 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/04/06,7.745041666106683 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/04/06,10.789359582758332 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/03/22,12.978691666476667 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/09,3.889752210769228 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/08,3.9408022799999993 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/01,3.024837075000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/04/30,3.665004544999997 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/04/22,3.017561686538457 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/31,15.073671249525011 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/26,7.661225004592499 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/06/10,7.316800000457497 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/25,5.971675003095 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/24,6.48748333345334 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/07/04,8.480493179999998 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/06/29,4.606514600072489 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/07/11,14.600558333318313 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/07/03,6.688485613288327 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/06/25,5.408250000797495 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/08/05,4.5582840999999945 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/07/28,4.44027316410256 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/10,7.165597347076671 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/08/24,5.30907500081 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/08/29,6.503025759195827 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/08/28,3.506147729999995 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/22,5.866533535565002 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/30,3.6383041711566633 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/29,2.9287750000000035 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/22,2.778577250000005 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/21,3.972119099999993 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/10/31,9.46854583348334 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/10/26,7.59314999432001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/11/09,2.849154879807691 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/11/08,2.269662142307689 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/12/10,3.596005799999995 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/11/24,2.980050000000002 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/02/04,22.23312500000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/09,11.995213657182491 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/31,8.177393180217502 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/26,3.190875605029165 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/06/05,6.605175000507498 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/28,14.100175002587507 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/27,19.04885000227749 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/06/22,3.1766718183625 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/07/06,3.665774824999994 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/06/21,4.779492082692306 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/08/10,17.121891666451646 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/08/05,14.92000000016749 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/07/22,2.964679500000001 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/06,3.946123488333327 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/01,6.743690147511667 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/01,3.076277300072495 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/08/31,3.7465219149999927 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/08/23,2.8249084807692286 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/10/03,16.504385606666688 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/28,13.879827194580832 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/23,8.168550003522494 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/10/03,4.013240909999992 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/10/02,2.7721309300000003 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/25,6.79968333405584 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/11/03,2.3941246750000027 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/10/27,2.8767022500000063 +Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/11/28,2.9143750000000037 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/07,22.76205 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/01/22,23.64002499999999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/07,22.76205 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/01/22,23.64002499999999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/23,22.404625000000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/23,22.404625000000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/03/10,21.88613333333335 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/23,22.404625000000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/23,22.404625000000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/03/10,21.88613333333335 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/03,8.148066666499181 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/03,8.148066666499181 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/28,8.630945847578328 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/28,3.5034363652675014 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/06,4.907038625192496 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/06,5.924500000167493 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/28,8.630945847578328 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/28,3.5034363652675014 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/06,4.907038625192496 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/06,5.924500000167493 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/06,5.835202086513337 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/30,14.151950001564996 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/30,16.485300000804997 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/07,12.50030833333332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/07,12.316624999999982 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/29,2.935754999999997 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/22,5.284125000000004 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/22,4.249750000000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/06,5.835202086513337 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/30,14.151950001564996 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/30,16.485300000804997 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/07,12.50030833333332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/07,12.316624999999982 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/29,2.935754999999997 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/22,5.284125000000004 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/22,4.249750000000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/07/08,10.676387500887497 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/07/08,10.676387500887497 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/09,3.572361399999993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/07/24,10.33122500124751 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/10,3.382102250000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/10,2.6310750000000014 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/01,10.080300000552493 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/09,3.572361399999993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/07/24,10.33122500124751 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/10,3.382102250000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/10,2.6310750000000014 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/01,10.080300000552493 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/11,2.7860522500000013 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/11,2.647102250000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/02,2.898375000047501 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/11,2.7860522500000013 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/11,2.647102250000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/02,2.898375000047501 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/05,16.674266666851647 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/05,16.691266666851647 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/26,3.178470479999995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/04,3.98210833813833 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/27,2.7699099182692293 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/27,3.1602940432692304 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/05,16.674266666851647 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/05,16.691266666851647 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/26,3.178470479999995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/04,3.98210833813833 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/27,2.7699099182692293 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/27,3.1602940432692304 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/05,2.0390566999999966 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/05,2.0390566999999966 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/12/08,6.415449996270008 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/12/08,6.840399998635012 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/29,9.170416980380828 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/30,2.6165535668956057 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/30,3.994426903846148 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/12/08,6.415449996270008 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/12/08,6.840399998635012 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/29,9.170416980380828 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/30,2.6165535668956057 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/30,3.994426903846148 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/02/26,22.373925000000007 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/02/26,22.351800000000008 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/05,12.284041667051666 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/05,10.927933333518338 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/02/26,22.373925000000007 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/02/26,22.351800000000008 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/05,12.284041667051666 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/05,10.927933333518338 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/05,20.486033354128363 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/29,5.292692235564167 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/29,5.5337931793825 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/05,20.486033354128363 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/29,5.292692235564167 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/29,5.5337931793825 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/30,3.626865166666665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/30,3.170384253666665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/21,7.152015927372498 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/29,17.24382500018999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/22,17.896783333718332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/22,12.643975000072478 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/30,3.626865166666665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/30,3.170384253666665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/21,7.152015927372498 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/29,17.24382500018999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/22,17.896783333718332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/22,12.643975000072478 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/23,15.28065002769501 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/31,8.13001894179917 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/24,3.071041 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/24,4.50021971166666 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/23,15.28065002769501 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/31,8.13001894179917 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/24,3.071041 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/24,4.50021971166666 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/03,10.649133347373327 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/03,9.170925011739987 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/24,8.991233334685836 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/11,13.595683333333318 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/11,12.797483333333323 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/25,2.3605550000000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/25,2.7043511298076925 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/03,10.649133347373327 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/03,9.170925011739987 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/24,8.991233334685836 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/11,13.595683333333318 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/11,12.797483333333323 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/25,2.3605550000000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/25,2.7043511298076925 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/11,14.969108423480822 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/04,3.0134196999999987 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/04,2.922335599999999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/26,4.676170836658333 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/03,3.371552250000005 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/27,3.3654839999999995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/27,3.447799999999998 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/11,14.969108423480822 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/04,3.0134196999999987 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/04,2.922335599999999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/26,4.676170836658333 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/03,3.371552250000005 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/27,3.3654839999999995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/27,3.447799999999998 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/05,3.6316095499999927 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/05,3.811927749999993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/27,3.099598486666663 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/04,2.493888600000002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/28,9.823241667046652 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/28,10.953383333713315 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/05,3.6316095499999927 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/05,3.811927749999993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/27,3.099598486666663 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/04,2.493888600000002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/28,9.823241667046652 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/28,10.953383333713315 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/07,4.912668231047611 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/07,4.355784146047612 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/28,2.680029406333333 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/21,3.3451324246666605 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/21,3.1235856066666634 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/06,2.443196430769228 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/29,2.4710156000000016 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/29,2.5430560000000013 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/07,4.912668231047611 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/07,4.355784146047612 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/28,2.680029406333333 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/21,3.3451324246666605 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/21,3.1235856066666634 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/06,2.443196430769228 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/29,2.4710156000000016 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/29,2.5430560000000013 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/08,5.182532634380944 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/08,5.109550814380946 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/23,8.273285601666656 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/23,6.532731066714165 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/07,3.421539774038462 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/08,5.182532634380944 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/08,5.109550814380946 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/23,8.273285601666656 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/23,6.532731066714165 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/07,3.421539774038462 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/10,9.35759166666668 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/10,9.217266666666678 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/10,9.35759166666668 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/10,9.217266666666678 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/01/02,22.34590833333334 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/26,23.54250833333332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/01/02,22.34590833333334 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/26,23.54250833333332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/28,13.96546666891916 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/08,18.45479168108419 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/08,16.883116676341665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/27,9.797841666666676 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/20,14.854908337885826 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/20,14.854908337885826 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/28,13.96546666891916 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/08,18.45479168108419 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/08,16.883116676341665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/27,9.797841666666676 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/20,14.854908337885826 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/20,14.854908337885826 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/23,22.34590833333334 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/04/09,13.40400833323834 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/23,22.34590833333334 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/04/09,13.40400833323834 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/04/24,7.927183336666664 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/05/11,3.0970932250000005 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/05/11,2.486720750000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/04/24,7.927183336666664 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/05/11,3.0970932250000005 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/05/11,2.486720750000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/06/11,8.216541661126662 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/06/11,8.216541661126662 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/05,2.484844042307691 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/05,2.484844042307691 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/07,3.80295063485916 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/07,3.6463189815258272 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/29,10.857050000249997 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/06,4.720725758523331 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/30,2.800615274038462 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/30,3.398083543269231 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/07,3.80295063485916 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/07,3.6463189815258272 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/29,10.857050000249997 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/06,4.720725758523331 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/30,2.800615274038462 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/30,3.398083543269231 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/30,18.18251083352333 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/23,15.733631251267497 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/23,15.641264583935827 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/30,18.18251083352333 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/23,15.733631251267497 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/23,15.641264583935827 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/01,3.492861479999993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/24,3.520709094999995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/24,3.537616668333329 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/02,2.620641218269232 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/02,3.148428004807692 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/23,3.1413302499999984 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/01,3.492861479999993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/24,3.520709094999995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/24,3.537616668333329 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/02,2.620641218269232 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/02,3.148428004807692 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/23,3.1413302499999984 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/11,9.939239282380946 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/11,9.36112110571428 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/10,2.6197863500000005 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/25,5.334210210769227 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/11,9.939239282380946 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/11,9.36112110571428 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/10,2.6197863500000005 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/25,5.334210210769227 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/12/04,11.723266721359169 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/05/05,7.821558339083326 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/05/29,5.547989587210835 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/05/30,2.675895350000004 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/05/30,3.8886216857692246 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/09,4.789439599999984 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/09,4.833455499999984 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/08,12.234883333380822 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/01,5.020925000724992 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/01,5.967850000507496 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/06/22,3.233956879807692 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/08/10,4.284173777435891 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/08/10,3.3158274524358946 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/08/09,5.979375000000004 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/09/03,3.0851045 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/09/03,2.498811250000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/08/25,18.12485000020001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/10/05,2.586811250000002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/10/05,2.467704350000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/12/07,10.632091666451675 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/12/08,21.866400000000016 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/11/22,8.636345038548328 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/11/22,2.4686250000000007 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/02/09,11.070249998925007 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/02/02,23.424491666666658 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/02/26,21.75304166666668 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/02/26,21.75304166666668 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/04/30,3.60045625013001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/04/23,6.977777077810839 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/04/23,8.054179166244175 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/05/08,11.19843335410583 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/04/22,2.37028929230769 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/06/10,7.348425008227492 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/06/10,4.386784094974997 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/06/01,10.737233337458354 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/06/09,5.87087500103249 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/07/03,9.844193759984996 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/04,16.532458354105835 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/05,12.72083333373332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/05,3.243952250000007 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/07/27,4.579081749999999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/05,3.707510606666657 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/29,4.771454886662504 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/29,8.928149171869155 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/06,2.3847408499999987 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/06,2.565169804807692 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/30,8.024949992800005 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/30,8.93904999774751 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/21,7.673182573333331 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/10/08,3.619190300641019 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/10/08,3.0374231284340647 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/29,13.646033333333328 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/08,5.816274996730008 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/10/23,3.5572232983333287 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/09,2.374975 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/09,4.066424999999999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/12/11,17.15460000004749 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/12/11,3.895295504807693 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/25,14.274249999762514 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/25,14.218324999905011 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/02/05,10.000733333118344 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/02/05,9.916316666451676 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/02/21,22.137733333333344 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/04/01,11.9108250003325 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/04/01,12.0115500003325 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/02,7.106925000072499 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/04/25,4.2854147787525 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/04/25,4.2838272777925 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/10,13.60045833333332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/03,2.446677250000003 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/03,2.4955545 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/27,3.8708984883333257 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/27,3.833348488333325 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/26,2.9815818000000025 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/05,12.97352958257334 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/06,2.8120618432692317 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/06,3.182487629807692 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/06,17.78505000018499 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/30,3.464838205769228 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/30,3.464838205769228 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/07,3.907849999999994 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/07,4.068301517391663 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/31,2.1306447000000004 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/31,2.732710599999998 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/23,5.337167431666661 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/23,2.9836842857692267 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/09,5.089934159999987 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/09/23,12.3799999989725 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/10,5.624208333670833 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/10,6.3009283308417245 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/01,12.703308333318326 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/09/24,6.829359092991665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/09/24,7.626067427782492 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/11/10,4.049364556999995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/25,11.61031250692249 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/01/29,24.02516666666665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/01/30,21.791766666666685 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/01/30,21.791766666666685 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/03/02,22.447608333333346 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/05/06,2.5822694999999998 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/05/06,2.533633125 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/04/27,2.966900000000007 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/06/07,3.530004500000002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/06/07,4.7335545 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/05/29,5.914973874863327 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/06/23,3.038450000000002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/06/23,2.597583999999999 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/10,2.6251295000000034 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/10,2.5676067500000004 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/07/25,4.457894225769223 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/07/25,4.999932703974349 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/09/10,4.532865913333329 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/25,18.069074999999987 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/09/11,4.0971500000000045 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/09/11,3.5783500000000066 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/26,3.728149285769225 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/26,4.280421849615382 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/09/26,13.416524999559996 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/06,6.3997958334708365 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/06,10.362022077713323 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/10/28,8.665800026739163 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/05,2.877938461538464 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/10/29,2.52774516826923 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/10/29,2.816619793269231 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/12/07,12.499874999722495 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/24,2.2545930749999967 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/21,2.3055362499999976 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/12/24,24.44116666666665 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/01/08,21.856800000000018 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/12/23,12.963775000144995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/01,22.348225000000006 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/01/25,21.961558333333347 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/01/25,21.961558333333347 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/26,22.417966666666675 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/26,22.305908333333345 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/26,22.438508333333345 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/26,22.438508333333345 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/04/06,9.285933333743351 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/04/06,14.57986875826001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/03/29,21.88613333333335 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/03/22,14.811500000210016 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/09,2.430626750000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/09,2.7620792500000007 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/08,3.313885395 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/01,4.075112163333326 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/01,2.692377650000002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/04/30,10.7913250023 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/31,12.968358749667509 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/26,17.057916668966673 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/26,18.793991666666667 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/25,2.573847625000002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/25,4.595922730144993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/04,4.472758351739164 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/11,17.13809999971498 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/03,5.41195986182916 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/06/26,3.943757578645836 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/06/26,6.487550002612497 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/06/25,4.783909783333332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/07,3.7790219771016633 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/05,8.629950000507492 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/05,7.6990106069791615 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/28,3.338050118076921 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/28,3.670985031923073 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/10,7.128913259591669 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/24,4.191573107543332 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/29,6.550654166154152 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/29,4.842725000454994 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/28,2.3743475000000016 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/09,9.686574997075002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/09,10.123949997580004 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/22,3.2418627699999973 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/22,2.4176635500000008 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/30,17.428849999969994 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/22,2.9744628730769223 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/22,3.4330623499999984 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/21,8.717166668751652 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/26,15.826616666666668 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/11/09,2.661620955769229 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/11/09,2.7934523990384603 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/11/08,2.389928042307691 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/24,15.749716668266656 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/24,13.40399166826666 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/12/10,2.39093175 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/12/02,12.575675000862496 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/11/24,5.098475000192495 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/02/04,22.22352500000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/01/28,12.987441666356666 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/02/21,10.612133333023348 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/02/21,10.612133333023348 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/04/09,14.317108333285828 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/04/02,11.824274999857504 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/09,9.696379171099176 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/04/26,8.415350000192493 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/04/26,7.916173730914218 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/31,7.358603786739164 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/26,2.4344256196666656 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/26,4.158108217999993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/06/05,13.898158333595829 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/06/05,13.941475000262496 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/28,4.044450000529993 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/28,14.895600002540014 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/27,24.56179166666667 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/06/22,3.494252269999994 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/06,2.496545200000002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/10,12.303683333238329 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/05,10.652262506202494 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/05,8.72088899452524 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/30,3.765475000047501 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/23,4.413684853333328 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/23,3.273561073076924 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/22,2.856627250000005 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/06,8.540220450072496 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/01,3.4447886400724945 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/01,8.696709090120002 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/01,3.474955366666661 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/31,3.0129013399999987 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/23,2.390784942307693 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/10/03,16.75171060666669 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/28,14.936600030074992 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/23,4.8804203750724975 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/23,4.631727250072499 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/10/03,2.957033100000001 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/10/03,4.319012916666664 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/10/02,4.616602244999995 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/25,7.284400000192511 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/25,3.212809090337496 +Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/11/03,5.045206749999995 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/01/22,23.94899999999999 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/02/23,22.674233333333337 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/03/10,21.67155833333335 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/04/03,9.26932499914001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/05,10.280050000277502 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/04/28,8.712483328385835 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/04/28,9.547287503372496 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/06,7.076825002372487 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/06,4.675875000287496 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/06/06,7.122199996442503 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/06/07,13.198499999999983 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/06/07,13.95592499999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/29,8.772325005104983 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/22,3.3008757583333312 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/22,3.084200000047501 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/07/08,3.94718063771488 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/06/22,4.183558333223337 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/08/09,3.529292744102562 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/08/01,2.8870545000000005 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/11,4.2654379471153865 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/11,2.3736021875 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/02,3.714275000000001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/08/26,14.130225000287483 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/08/26,12.239950000357489 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/05,7.934397919329172 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/05,6.711163994312743 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/26,9.239625012052487 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/04,3.051644999999997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/27,2.9955970432692305 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/27,3.382207793269231 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/05,2.302128017307689 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/29,13.940916666619168 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/29,13.940916666619168 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/22,7.975724988780005 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/22,7.696349988072504 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/30,3.099416076923077 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/30,4.372838678846145 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/21,4.002789780422498 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/02/02,3.1530750000725014 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/02/02,7.773217714150051 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/02/26,12.02168333311833 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/02/26,21.804150000000007 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/05,8.067145831215832 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/07,4.296537468555001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/30,4.57947970866666 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/30,4.827478181999992 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/21,6.837006834999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/29,6.489062884130832 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/23,5.154769443847738 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/31,4.974411005534167 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/24,3.635999999999996 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/24,10.716950006972494 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/03,3.9154796099999967 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/03,3.557875104999996 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/06/24,16.270775000072504 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/11,10.766308333570816 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/11,11.033250002537486 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/06/25,2.5180211303571443 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/06/25,3.576594909203294 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/11,5.433547161367502 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/04,3.878458941333323 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/04,3.810333941333324 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/26,11.228800012682491 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/03,2.5955823000000016 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/27,2.7387522500000063 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/27,4.256052249999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/05,2.750424999999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/05,2.799099999999997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/27,3.663809858405824 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/04,5.792174271666664 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/28,4.054848299999993 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/28,3.520229499999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/07,5.285307624380945 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/07,2.8184644133333325 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/28,5.4156606083808345 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/21,2.7201856066666674 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/21,2.4425840900000013 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/06,2.5516038307692286 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/29,5.280435714933208 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/29,4.785735715245712 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/11/08,3.6704809799999953 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/11/08,3.824406014999997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/23,3.318380437072499 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/23,3.799334971999997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/11/07,3.1684022548076927 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/12/10,4.417412500032504 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/12/10,9.24592708244585 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/01/02,22.47810000000001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/12/26,24.44116666666665 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/03/08,16.304052088185834 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/03/08,12.50365833431834 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/02/27,13.393508333238334 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/02/20,15.005562499905002 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/02/20,14.997674999905009 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/03/23,22.447608333333346 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/04/24,6.690245454999999 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/05/11,2.594259425000003 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/05/11,2.820443675000001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/06/11,7.423566132157493 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/07/05,5.191677199999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/06/28,2.926327250047501 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/06/28,2.319525000047499 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/07,2.824821971739165 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/07,2.937778721956664 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/07/29,16.48858333328582 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/06,2.9720295000000023 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/07/30,3.207875469999997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/07/30,2.6888498500000035 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/08,9.44776272369146 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/30,9.50540833418833 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/23,9.506677084720842 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/23,7.96708958307585 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/07,14.356900000312482 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/10/01,5.510255620769225 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/24,3.2241945429999963 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/24,3.0073490930724978 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/10/02,2.6540605736263734 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/10/02,3.281410043269231 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/23,3.194839109999997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/11/11,4.107207721999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/11/11,4.883809901047616 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/11/10,3.5148022500000065 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/10/25,2.8680522500000056 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/12/04,14.232298643309989 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/05/05,3.2344545000475016 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/05/29,9.352216662461668 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/05/30,3.814374999999997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/05/30,3.602470630769223 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/09,4.2166431999999885 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/09,4.210593199999988 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/08,12.87843750031 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/01,3.151102250047505 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/01,2.8814250000475026 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/06/22,2.8366119807692303 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/08/10,3.240128699999996 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/08/10,3.0678945999999967 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/08/09,3.46301364 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/08/25,19.743075000200005 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/10/05,2.774816668269229 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/10/05,3.0720307268314992 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/12/07,22.30574166666668 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/11/22,3.042200000000008 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/11/22,2.949475000000007 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/02/09,12.279108334963327 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/02/26,21.75304166666668 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/04/23,3.4336242517391646 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/04/23,3.484207583405831 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/05/08,8.469166673566654 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/04/22,2.1176450999999976 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/06/01,9.915425001065024 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/06/09,2.491649850000002 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/06/26,5.395514395432501 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/06/26,5.693200002291668 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/08/04,6.063566669094171 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/07/28,11.577160424411666 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/07/28,12.262929173176676 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/08/05,2.161720000000001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/08/05,5.126968980769229 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/07/27,4.048950000362494 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/05,4.500391559047611 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/06,2.754999824999999 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/06,2.807001711538462 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/21,7.723645449999999 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/10/08,2.8710048057692283 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/10/08,3.124875117307687 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/29,17.780016667466647 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/11/08,9.933287501810014 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/10/23,5.8759818224925 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/12/11,11.979535420824188 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/12/11,10.147595847058328 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/11/25,2.5196612500000004 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/11/25,3.5472638826923046 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/02/05,22.658500000000007 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/02/05,22.64890000000001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/03/08,22.451808333333343 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/02/20,21.791766666666685 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/02,6.863153048333332 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/04/25,9.3017499961375 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/04/25,9.354724995014998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/03,4.910896215633334 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/03,2.987279550000004 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/27,3.671745449999994 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/27,3.192949999999997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/06/04,14.59214999999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/06/04,3.942025000095005 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/26,3.1927736699999985 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/05,19.518674996630008 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/06,2.86789616826923 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/06,2.918214543269229 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/06,9.958341671339149 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/30,4.588592577152013 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/30,4.522731202152013 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/07,2.8047250000000044 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/07,12.585524999784989 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/31,4.005632681319044 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/31,4.072567801161665 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/22,2.664200000474997 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/30,12.897558374970831 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/23,2.6450978857692284 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/23,3.1618246615384598 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/09,5.790667332380945 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/10,8.218875760920824 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/10,8.68412500033249 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/01,3.559750000000005 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/09/24,5.035753035325829 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/09/24,10.006686367511657 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/11/10,5.156831107714275 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/25,13.560958333333335 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/12/29,4.278286216346155 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/12/29,4.251186216346155 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/01/30,21.794191666666684 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/03/11,7.217199999785006 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/03/02,22.29259999935501 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/04/03,22.29679999935501 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/05/06,4.841750000312496 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/05/06,5.946665910287497 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/06/07,3.182527250000007 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/06/07,3.400654500000004 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/05/29,15.82398333333332 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/06/23,2.76715675 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/06/23,5.085976923196919 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/08/10,2.837400000000004 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/08/10,4.182074999999996 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/07/25,7.301175000000005 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/07/25,6.619231661610953 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/08/25,10.42655417627416 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/09/26,12.586441675966682 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/06,10.988708347465831 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/06,7.658492363601108 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/09,3.1368567899999986 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/09,3.1007497899999983 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/05,3.123400000000002 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/10/29,2.7241848307692296 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/10/29,2.5757809807692307 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/12/07,2.4728468200000013 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/24,2.470422755769229 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/21,2.1324155624999985 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/12/24,24.44116666666665 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/12/23,6.999462611456535 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/01/25,9.841433333333349 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/01/25,10.913916667051671 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/02/26,23.23219166666666 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/02/26,22.529033333333334 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/03/30,22.26459166666668 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/04/06,8.792961676461665 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/03/29,21.88613333333335 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/03/22,13.638033333590842 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/03/22,15.30952500090502 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/09,2.513413349999999 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/09,2.6529219374999995 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/08,8.351775009199992 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/01,2.921352625 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/01,4.414398279999995 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/04/30,5.226724999999999 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/31,15.10243374952501 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/26,10.158733334370812 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/26,9.117533334370812 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/25,2.973775000000001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/25,3.493300000000003 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/24,3.3893795000000035 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/04,7.0470750012050045 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/29,17.42044999952249 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/29,17.25993999952249 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/11,17.82745000048001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/03,7.905202275402503 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/26,4.278849999999992 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/26,3.5302431999999984 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/25,6.2314750045475 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/07,4.331364998320009 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/05,5.242200001377489 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/05,5.547944707124159 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/28,2.7224250000000048 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/28,4.886325001104998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/10,8.066597349376678 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/29,3.8346250000000026 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/29,3.4429214807692343 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/28,2.623422475 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/09,6.3358249977600085 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/09,6.302824996255009 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/22,5.685349999970004 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/30,12.852949999999986 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/29,4.752162942307686 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/22,2.8488273750000013 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/22,3.5984599798076893 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/21,6.090625000285001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/31,8.711074991835002 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/26,8.848158333533345 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/11/09,2.909834793269229 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/11/09,2.9403519230769204 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/11/08,2.3478064500000007 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/24,9.787249999940007 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/12/10,2.322124850000001 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/12/02,4.693250000409995 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/11/24,3.2482317500000017 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/02/21,14.863641668881662 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/02/21,9.126924999762506 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/04/10,10.561558333238327 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/04/02,13.618991666619165 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/04/02,12.258474999904992 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/04/01,13.886483333238337 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/09,9.473614585785858 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/31,2.5734506047391674 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/26,3.5088422729999964 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/26,3.529971817999994 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/05,8.938400002539982 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/05,14.451958340233332 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/04,3.836900000312495 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/28,4.004725000989995 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/28,15.840758335850843 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/27,8.995053033975841 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/22,3.715359089999995 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/06,4.725875501806547 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/21,4.390096254807695 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/21,3.1843357307692326 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/10,11.200189583000856 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/05,9.83167103686 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/05,8.457150038345002 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/31,3.3795750000000004 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/31,4.072853330769225 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/30,9.50748334181082 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/23,3.4708250000000067 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/23,7.564125001392492 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/22,3.4945795000000044 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/06,5.092209094999991 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/01,2.7920931852174995 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/01,2.8315507684058328 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/01,5.000795455119991 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/01,5.314400000217494 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/31,3.541042436666659 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/23,2.3526364557692307 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/10/03,6.644525764999998 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/28,10.963068753157511 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/10/03,4.482091171666662 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/10/03,2.5525208500000023 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/10/02,3.5478990499999963 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/25,3.367931399999996 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/25,3.439715924999996 +Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/11/03,4.351472948666663 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/01/22,23.94899999999999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/01/22,23.94899999999999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/03/02,10.265349999785007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/02/23,22.47810000000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/02/23,22.47810000000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/03/10,21.66638333333335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/03/02,10.265349999785007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/02/23,22.47810000000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/02/23,22.47810000000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/03/10,21.66638333333335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/04/28,8.325199993220005 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/04/28,7.999674992820006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/06,7.169975000287495 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/06,4.5704000004325 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/04/28,8.325199993220005 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/04/28,7.999674992820006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/06,7.169975000287495 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/06,4.5704000004325 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/06,4.308620218216781 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/30,8.409389585108327 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/30,8.111839585208328 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/07,12.95595833333332 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/07,12.614683333333316 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/29,4.593715909999999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/22,3.041574825000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/22,2.870527250000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/06,4.308620218216781 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/30,8.409389585108327 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/30,8.111839585208328 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/07,12.95595833333332 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/07,12.614683333333316 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/29,4.593715909999999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/22,3.041574825000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/22,2.870527250000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/07/08,2.820073504348332 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/22,6.277300003137508 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/07/08,2.820073504348332 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/22,6.277300003137508 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/09,3.7627454999999954 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/02,13.605174999000006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/02,22.302383332980835 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/09,3.7627454999999954 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/02,13.605174999000006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/02,22.302383332980835 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/03,11.753737502527516 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/03,20.11043333608335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/25,12.481850014474992 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/11,2.3224248000000007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/11,2.123447600000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/02,6.414700000410007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/03,11.753737502527516 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/03,20.11043333608335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/25,12.481850014474992 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/11,2.3224248000000007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/11,2.123447600000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/02,6.414700000410007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/05,14.092645674833316 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/05,15.308112593827492 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/26,12.898008348858331 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/04,3.709949999999996 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/27,2.1877749499999983 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/27,2.105472599999998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/05,14.092645674833316 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/05,15.308112593827492 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/26,12.898008348858331 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/04,3.709949999999996 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/27,2.1877749499999983 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/27,2.105472599999998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/05,2.39854055 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/05,2.39854055 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/30,2.5524303125000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/30,3.5990599355769213 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/21,3.805954171564165 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/30,2.5524303125000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/30,3.5990599355769213 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/21,3.805954171564165 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/10,22.404625000000006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/01/24,21.77565833333335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/10,22.404625000000006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/01/24,21.77565833333335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/26,10.081941666451678 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/26,10.00432499978501 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/26,10.081941666451678 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/26,10.00432499978501 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/05,11.364662372538604 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/05,11.364662372538604 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/07,7.940073331778334 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/30,3.1275166983333302 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/30,3.19552123833333 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/21,5.037036374999994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/29,4.971804169039167 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/07,7.940073331778334 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/30,3.1275166983333302 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/30,3.19552123833333 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/21,5.037036374999994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/29,4.971804169039167 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/23,4.882765691586783 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/31,6.049726148014162 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/24,5.999475000047506 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/24,3.2752749999999957 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/23,4.882765691586783 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/31,6.049726148014162 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/24,5.999475000047506 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/24,3.2752749999999957 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/03,21.02309583373833 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/03,18.715583332998325 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/24,14.839791678166655 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/11,10.540633335870822 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/11,9.45477500018999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/02,2.9333750000000043 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/25,2.4850588000000022 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/25,2.589277350000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/03,21.02309583373833 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/03,18.715583332998325 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/24,14.839791678166655 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/11,10.540633335870822 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/11,9.45477500018999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/02,2.9333750000000043 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/25,2.4850588000000022 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/25,2.589277350000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/11,5.502508526992497 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/04,3.926850000144991 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/04,4.261625000072489 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/03,14.62747500007248 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/27,2.688752250000007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/27,2.6697522500000064 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/11,5.502508526992497 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/04,3.926850000144991 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/04,4.261625000072489 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/03,14.62747500007248 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/27,2.688752250000007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/27,2.6697522500000064 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/05,3.604936399999992 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/05,3.558286399999992 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/27,3.609365919999993 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/04,3.414059124999994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/28,4.85740000101 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/28,4.688650001007499 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/05,3.604936399999992 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/05,3.558286399999992 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/27,3.609365919999993 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/04,3.414059124999994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/28,4.85740000101 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/28,4.688650001007499 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/07,4.21199305633333 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/07,3.3597968380724965 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/28,3.618921223695825 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/21,3.6047331779999943 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/21,3.3149490879999943 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/06,2.4777794500000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/29,14.056558333533312 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/29,13.404583333533315 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/07,4.21199305633333 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/07,3.3597968380724965 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/28,3.618921223695825 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/21,3.6047331779999943 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/21,3.3149490879999943 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/06,2.4777794500000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/29,14.056558333533312 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/29,13.404583333533315 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/08,6.884884853478335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/08,7.5607954601450045 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/23,2.9938000000724987 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/23,3.3084916683333305 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/07,2.90520763653846 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/08,6.884884853478335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/08,7.5607954601450045 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/23,2.9938000000724987 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/23,3.3084916683333305 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/07,2.90520763653846 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/10,12.74784166685166 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/09,6.3392522759075 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/10,12.74784166685166 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/09,6.3392522759075 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/01/02,22.373925000000007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/26,11.242791666666683 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/26,22.407066666666672 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/01/02,22.373925000000007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/26,11.242791666666683 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/26,22.407066666666672 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/03,22.351800000000008 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/03,22.351800000000008 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/08,16.52975482076921 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/08,5.732313407692301 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/27,21.675758333333352 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/20,14.931983333238334 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/20,14.721666666571672 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/08,16.52975482076921 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/08,5.732313407692301 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/27,21.675758333333352 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/20,14.931983333238334 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/20,14.721666666571672 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/23,22.34590833333334 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/09,6.531000000072501 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/09,6.569953428213331 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/23,22.34590833333334 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/09,6.531000000072501 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/09,6.569953428213331 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/24,7.408535606739175 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/05/11,2.340702200000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/05/11,2.413765090000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/24,7.408535606739175 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/05/11,2.340702200000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/05/11,2.413765090000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/11,5.710674466540834 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/11,5.710674466540834 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/05,2.866286300000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/28,3.560650000000008 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/28,2.4951250000000056 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/05,2.866286300000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/28,3.560650000000008 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/28,2.4951250000000056 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/29,16.484774999999985 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/06,3.080488520000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/30,3.1223316250000006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/30,2.688442375000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/29,16.484774999999985 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/06,3.080488520000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/30,3.1223316250000006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/30,2.688442375000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/30,10.307479184661664 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/23,18.199318849784994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/23,17.433602178685828 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/31,2.807125000000004 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/31,3.002975000000005 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/30,10.307479184661664 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/23,18.199318849784994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/23,17.433602178685828 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/31,2.807125000000004 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/31,3.002975000000005 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/10,6.9164958237683445 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/10,6.248587492445014 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/01,4.213566106666657 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/24,5.417170465145001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/24,5.740184858405836 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/02,2.532183950000002 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/02,2.2916819875000014 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/23,3.126700499999996 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/10,6.9164958237683445 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/10,6.248587492445014 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/01,4.213566106666657 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/24,5.417170465145001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/24,5.740184858405836 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/02,2.532183950000002 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/02,2.2916819875000014 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/23,3.126700499999996 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/11/11,5.130526567714275 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/11/11,4.58827279271428 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/11/11,5.130526567714275 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/11/11,4.58827279271428 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/12/04,10.862954200986668 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/01/29,6.028649999555008 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/05/05,2.6155222500000006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/04/28,5.057752538461526 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/04/28,6.009199346153836 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/05/29,5.670283326855835 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/05/30,4.320694330769222 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/05/30,2.9103825400000005 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/09,4.417493199999987 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/09,4.4194931999999865 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/08,12.84508333333332 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/01,4.338700000699998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/01,7.235950000362497 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/06/22,5.213775000000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/08/10,3.692736399999995 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/08/10,3.7221613999999943 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/08/09,4.146821213333323 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/09/03,2.515374999999997 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/09/03,2.483977250047501 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/10/05,2.433538449999999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/10/05,2.2422815999999988 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/12/07,22.67296666666667 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/12/08,21.867666666666683 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/11/22,11.990041666651662 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/11/22,12.327449999984994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/12/23,9.035008333333346 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/02/09,13.181515000095 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/02/26,21.867666666666683 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/02/26,21.867666666666683 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/04/23,6.3634848686708345 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/04/23,6.376466688670836 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/05/08,5.063209102299998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/04/22,2.1002021500000008 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/10,10.116374999399993 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/10,11.199750000697511 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/01,11.398908333933344 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/09,2.7061205000000017 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/07/03,9.680442558186304 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/26,4.031075000072489 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/26,4.053675000072489 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/07/04,12.257599999999982 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/07/04,10.06255833338082 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/04,12.07537084047084 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/05,3.881809199999995 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/05,3.7633682999999936 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/05,4.2255251866666566 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/29,4.318443180404998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/29,3.76536818019 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/06,2.888320300000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/06,2.775731350000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/21,6.967056056739165 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/10/08,2.6253292000000017 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/10/08,2.488842950000002 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/29,12.251674999999986 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/10/24,11.067475000622494 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/10/24,6.849200000410003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/11/25,4.241345966346154 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/11/25,16.86461346158593 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/02/05,11.090416665591668 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/03/08,22.304499999355013 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/02/21,22.476608333333346 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/03/07,21.83503333333335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/02/20,10.905883333118336 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/04/01,2.1177747250000034 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/04/01,3.197987924038461 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/02,7.380103033478334 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/04/25,10.1415999984825 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/04/25,9.8205249980675 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/03,3.191453445 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/03,3.9098287199999935 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/27,3.774150001884158 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/27,3.774652276884158 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/06/04,12.33135833587083 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/06/04,10.784175000407492 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/26,4.0833250000724925 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/05,7.355825002222505 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/06,2.524224950000002 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/06,3.052244470769228 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/06,3.688877280072496 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/30,3.2180848549999963 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/30,3.1615748549999965 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/31,3.467754864102561 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/31,2.7317696899999984 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/22,3.752411369999991 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/08,18.76509999998499 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/08,15.115083333398331 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/30,3.190277250000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/23,4.165915499999992 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/23,3.6048205049999935 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/09,4.645847759999988 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/23,16.948745833320835 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/10,6.8714000000474975 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/10,10.239150000047491 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/01,3.200579500000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/24,9.3284250026625 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/24,5.406850000627503 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/11/10,3.572216098666664 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/25,6.056920825715846 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/01/29,9.716483333333343 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/02/06,21.66638333333335 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/01/30,21.75304166666668 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/03/11,10.34457500000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/03/02,22.404625000000006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/04/03,11.991979166101665 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/04/04,3.0422504999999984 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/04/04,6.460354999999997 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/03/26,7.135275000552499 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/05/06,2.5614159000000027 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/05/06,2.733404125000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/04/27,13.324083333118322 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/06/07,3.693390444102556 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/06/07,3.604171213333326 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/05/29,5.317883336653329 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/06/23,3.3362250000000047 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/06/23,3.173925000000004 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/02,3.5430729169766746 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/02,1.8359940468540503 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/10,3.2537251000724967 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/10,4.133236387179481 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/07/25,6.626950000144996 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/07/25,4.509824999999994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/25,9.342433333908332 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/26,4.43134196076922 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/26,3.9436272999999913 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/09/26,5.056159092395 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/06,6.036873498620829 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/06,6.424161375552497 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/09,3.0232488 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/09,2.728788500000002 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/10/29,2.144481699999998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/10/29,2.2937051124999988 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/12/07,16.56413333359084 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/24,2.2995680999999992 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/21,4.636744999999997 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/12/24,24.44116666666665 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/01/25,11.464708333333345 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/02/01,22.274983333333346 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/02/26,22.52759166666668 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/02/26,22.424041666666675 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/03/30,22.26459166666668 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/04/06,4.160936004999994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/03/29,21.750616666666684 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/03/22,15.875256250152493 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/03/22,15.931989583485828 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/09,2.896545400000002 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/09,2.702339000000004 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/08,3.2471889999999983 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/01,3.0382267499999998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/01,2.861179950000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/04/30,3.4989773099999955 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/31,17.738625001630005 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/26,9.75955832807833 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/25,3.9015000001449978 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/25,4.389150000072494 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/24,21.00513749991501 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/04,11.51310000273248 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/11,17.98445000060001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/03,4.076493938333326 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/06/26,11.449875002609993 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/06/26,10.818591666976651 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/06/25,2.278203015000003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/28,4.168350000000007 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/28,3.668334000000004 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/10,7.663934090965003 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/08/24,4.2029613706675 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/08/29,3.974959095385001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/08/29,4.087500000362496 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/08/28,2.469024890000002 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/09,7.7313288233658355 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/09,9.622525013410009 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/22,7.289800000200009 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/30,11.80601666666665 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/30,12.50632499999998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/22,2.6352968125000005 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/22,3.2083826153846142 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/21,12.677013625072496 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/31,8.058549996919998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/26,4.817749998895005 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/26,6.78332499389001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/11/09,2.3729156999999974 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/11/09,2.280668599999998 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/11/08,2.3616497999999995 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/12/10,2.392336300000001 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/12/02,3.1878067500000014 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/11/24,4.1995045000000015 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/02/21,15.738200198456672 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/04/10,22.89725000000002 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/04/10,10.675083333238328 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/04/09,11.557099999904995 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/04/01,9.987741666476689 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/03/24,9.370974999332512 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/09,10.06991458579586 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/31,2.7835772705075006 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/26,2.996879550072498 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/26,4.061871996811662 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/05,15.989058333405843 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/05,6.191825000792502 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/04,4.161875000217495 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/28,5.838600000504999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/28,6.673325000505 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/27,24.7458000000475 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/22,3.770246818289994 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/07/06,3.397415909999999 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/21,3.567184124999995 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/21,3.3518282307692284 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/08/05,20.371595836473357 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/08/05,9.49348958807834 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/07/30,11.865375000577483 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/07/23,4.135999999999988 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/07/23,4.145953985641022 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/06,7.438465153478331 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/01,2.792369706884166 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/01,2.661453801811667 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/01,3.512875000289996 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/01,3.496925000072494 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/08/31,3.1794179633333317 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/08/23,2.3967703500000037 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/28,6.760570825470845 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/28,5.642439577355841 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/10/03,3.6550090799999926 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/10/03,3.309340019999996 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/10/02,3.906788649999996 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/25,4.349786389999991 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/25,4.421275989999989 +Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/11/03,4.820024979999994 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/01/22,23.333575 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/02/06,21.77565833333335 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/03/10,21.66638333333335 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/04/03,9.726166666286687 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/06,8.682733335778318 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/06,6.682325002612498 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/06/06,4.466316048032615 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/06/07,11.006200000237492 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/06/07,11.425500000237497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/29,4.07909999999999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/22,4.429884099999994 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/22,3.5520749999999977 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/07/08,16.31164166628417 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/06/22,5.08491703247595 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/08/09,4.22199243666666 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/07/24,5.145591671274169 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/08/10,4.976319231034224 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/08/10,7.481944231251726 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/03,7.148458333533342 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/08/25,3.177966686126373 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/11,3.9203672015384567 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/11,2.648460750000002 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/02,4.601363461683456 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/10/05,4.104436370507497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/10/05,3.4664265372466656 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/26,3.313140176666661 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/10/04,12.867833333333325 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/27,2.6924252807692306 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/27,3.3241787596153847 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/05,2.080597574999996 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/29,8.8190495047144 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/22,3.702232116959704 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/22,3.652030061346149 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/30,2.8939199615384634 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/30,4.117920384615379 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/02/10,22.663366666666672 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/02/26,22.404625000000006 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/05,10.332429164614176 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/03/29,7.860324999985002 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/30,4.298325768333327 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/30,3.725353028333328 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/21,13.88018335875334 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/29,6.289133719034168 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/05/23,12.441162524752508 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/05/31,6.245833723889166 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/05/24,4.646150009999994 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/05/24,5.4293454499999925 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/03,14.027433333333317 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/03,16.72192500196999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/06/24,14.13218333427584 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/11,10.447649999952482 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/11,11.394450002252484 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/02,6.692475000434999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/06/25,2.802699813333335 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/06/25,3.722535454999997 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/11,8.12037660743535 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/04,3.7368912641025593 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/04,3.714073830769225 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/26,8.488906444231663 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/03,3.2316545000000003 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/27,3.0598335266025622 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/27,2.970642728846153 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/05,4.085245814102557 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/05,4.073970814102558 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/27,3.261293199999997 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/04,3.646227299999996 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/07,3.742887128333328 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/07,2.6425295450000004 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/28,2.680735467999999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/21,3.5881386999999942 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/21,3.3678636999999947 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/06,2.3306962923076897 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/29,12.382624999999978 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/29,13.654699999999975 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/11/08,4.680782470714278 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/11/08,3.456343978333331 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/23,5.008097766047614 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/23,3.924308455405833 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/11/07,3.30162129326923 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/12/10,7.90842727 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/12/10,7.192788769882495 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/11/23,12.690058333318325 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/01/02,13.181875000384998 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/02/28,10.110831249905004 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/03/08,11.9401250004275 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/03/08,11.827225000627502 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/02/27,11.627808332855832 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/02/20,14.499358336735828 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/02/20,14.404633333285837 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/03/23,22.34590833333334 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/04/09,11.673399999857509 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/04/24,6.745100000192508 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/05/11,4.844208335755832 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/05/11,4.777854169351666 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/06/11,6.777848327413329 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/07/05,3.6029461999999937 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/07,8.190279167581663 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/07,4.852831444244171 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/07/29,6.169975004030002 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/06,9.383700001677497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/07/30,2.6691656557692305 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/07/30,2.742856211538462 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/30,20.045452501300016 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/23,13.16763052455084 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/23,12.483132598834173 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/10/01,3.4280364799999927 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/09/24,3.212063635072495 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/09/24,3.2101295451449947 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/10/02,2.5395429682692305 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/10/02,2.768310711538463 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/09/23,4.882350000047502 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/11/11,5.041851567714278 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/11/11,4.720284901047612 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/11/10,4.289859099999995 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/10/25,2.672460450000002 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/12/04,14.484033367833336 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/03/26,22.29679999935501 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/05/05,4.243400000000001 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/04/28,13.311809092632489 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/04/28,18.705475770894143 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/05/29,13.284058344880831 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/05/30,3.9835575833333303 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/05/30,3.9146249999999942 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/09,4.483306899999987 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/09,4.576782299999987 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/06/30,16.174774999999983 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/08,17.164095834930837 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/01,6.032675000507498 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/01,5.044850000579995 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/06/22,4.586465175795831 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/08/10,3.0149279649999983 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/08/10,3.7352431499999934 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/08/09,3.6710659149999993 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/09/03,2.589075000000003 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/09/03,3.0300500000000072 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/08/25,17.841299999492513 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/10/05,2.236588474999998 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/10/05,2.32863698076923 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/11/22,2.906454500000005 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/11/22,2.7728750000000053 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/02/09,22.539900000000006 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/02/26,21.856800000000018 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/04/23,5.123842043838453 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/04/23,5.1402420438384535 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/05/08,7.305691679021652 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/04/22,2.0972998249999963 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/06/01,10.00030000024503 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/06/09,3.859914599999992 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/06/26,20.59036666666665 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/06/26,20.849370833263325 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/07/04,12.052074999999986 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/08/04,7.557675001157497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/08/05,3.179845409999999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/08/05,3.1747544999999997 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/07/27,3.0104522500475013 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/05,3.844958396666658 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/06,2.862008974999999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/06,2.4156414807692297 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/21,3.356765146666664 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/10/08,3.0559413515384573 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/10/08,2.8809072615384577 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/29,15.058691666666649 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/10/23,12.264266667021667 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/11/09,12.89690000067249 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/11/09,2.634604500000005 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/12/11,5.814776499999999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/12/11,7.090029167366664 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/11/25,2.5762404038461546 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/11/25,4.076650048076917 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/02/05,22.26459166666668 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/02/29,21.750616666666684 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/02/29,21.791766666666685 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/02/20,11.791533333518334 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/04/01,16.300650000000008 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/04/01,17.02521666685667 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/02,7.326361374999997 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/04/25,4.323789778087499 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/04/25,4.159739778515 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/10,5.98342500004749 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/03,4.904425000214995 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/03,4.457572725407491 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/27,4.227015151739156 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/27,4.206340151739157 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/06/11,2.446225000000004 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/06/04,14.84029999999998 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/26,3.722554500000001 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/05,10.054200006684992 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/06,2.397815725000002 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/06,2.5450641057692307 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/06,3.560459090072493 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/30,8.902150007959987 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/30,11.576408359160837 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/31,5.087550004462497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/31,4.975950004507497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/23,4.638409089999993 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/23,2.6160473500000028 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/10/09,4.783531859999988 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/10/10,7.662550000552501 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/10/10,7.246325000867498 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/09/24,4.095300000507495 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/09/24,3.6206250009425 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/11/10,4.864828837714279 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/10/25,7.388473483405835 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/12/29,21.791766666666685 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/12/29,21.78088333333335 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/01/29,22.76205 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/01/30,21.838800000000013 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/03/02,22.34590833333334 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/04/03,11.585291666571663 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/04/04,3.076517250000001 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/04/04,12.358791666571667 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/05/06,12.55730000028999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/05/06,2.7847250000000043 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/06,16.08630833496582 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/07,4.25260675 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/07,2.6301749550000006 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/05/29,5.831212508671662 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/23,3.135772525641025 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/23,3.0658483000000003 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/02,8.636924989027497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/02,6.700999992800012 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/10,6.444693180787503 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/10,4.163168180214992 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/09/10,3.7038250003374986 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/25,6.478925001352497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/09/11,13.727460714840698 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/09/11,5.370825000652494 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/26,3.392750000047502 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/26,3.271475000047502 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/09/26,18.11175000017752 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/06,3.8292638137391646 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/06,3.888198667072497 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/10/28,7.9221400346666595 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/05,3.688253230769231 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/10/29,2.49426331826923 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/10/29,2.873769711538462 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/12/07,4.536284779131155 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/24,2.553254286538459 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/24,2.4776940807692287 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/21,2.189924949999998 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/12/24,24.44116666666665 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/01/25,10.755349998905013 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/02/26,22.674233333333337 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/04/06,9.440035415234169 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/03/29,21.791766666666685 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/03/22,13.897400000142513 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/03/22,13.001525000332505 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/09,2.168449700000001 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/09,2.537426500000002 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/08,3.5865414896666614 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/01,3.736752249999996 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/01,4.261494100072495 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/04/30,4.496100000072499 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/31,10.846874999635004 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/25,4.928244231204223 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/25,4.587400006079996 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/24,4.119719697029165 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/07/04,3.749068968333329 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/06/29,10.359125002322498 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/07/03,5.916605323719997 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/06/26,3.808100000144997 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/06/26,3.2156635 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/06/25,3.7907356164358337 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/07,16.20816083525084 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/05,5.2287750002649895 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/05,4.956000000407489 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/10,2.706666673525836 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/29,4.061075000289994 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/29,4.194024999999996 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/28,3.1527829749999974 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/10/09,5.348475000185 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/10/09,6.42547499668501 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/22,4.3532144141058255 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/22,8.43173334071583 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/30,3.4952541712816623 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/30,3.7015791705591625 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/21,4.236800000144993 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/11/09,2.7142494682692297 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/11/09,3.099785247664835 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/11/08,2.5713378932692303 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/10/24,21.396124999280016 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/12/10,2.46768855 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/12/02,22.542550000907514 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/11/24,3.4239545 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/02/21,9.85639999969001 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/10,18.696806250200005 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/10,12.472108333190828 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/09,12.56317499995249 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/02,13.367258333190836 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/01,14.467537500305008 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/09,9.162945836160842 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/31,3.166770450217499 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/26,2.971184694884166 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/26,3.0295809181449984 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/28,6.464025000385 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/28,15.23321666942168 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/27,16.738558338100816 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/06/22,3.085109090217496 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/06/22,3.414077270217493 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/06,3.882075000072494 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/08/05,3.3145479562042306 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/08/05,4.755442673489941 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/30,6.2462102327099975 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/23,4.17761369999999 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/23,4.032213124615383 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/22,14.174883359830831 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/06,8.519758336666664 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/01,3.1709704699999977 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/01,3.272995469999997 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/01,5.306362881786656 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/01,6.119668180239995 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/08/31,3.034582408333332 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/08/23,2.1795977 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/10/03,7.839527275432501 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/28,6.60597082734835 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/28,8.816095822928334 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/23,20.15609583295081 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/10/03,4.284413709999991 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/10/03,3.081172600000001 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/10/02,2.8019988500000017 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/25,4.397984089999993 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/25,3.697284099999992 +Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/11/03,2.7326624774999986 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/01/29,22.34590833333334 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/06,21.88613333333335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/01/29,22.34590833333334 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/06,21.88613333333335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/23,22.47810000000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/22,21.88613333333335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/22,21.88613333333335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/23,22.47810000000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/22,21.88613333333335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/22,21.88613333333335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/04/28,22.898458335903356 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/06,2.793089550000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/04/28,22.898458335903356 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/06,2.793089550000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/06,13.535150022999996 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/06,13.68124168966666 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/07,12.44447500004749 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/29,2.3115863500000025 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/29,2.219809100000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/22,10.075300000384992 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/06,13.535150022999996 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/06,13.68124168966666 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/07,12.44447500004749 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/29,2.3115863500000025 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/29,2.219809100000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/22,10.075300000384992 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/08,5.002119700168333 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/08,7.312750759903333 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/22,4.387075002852498 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/22,8.285000016507496 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/08,5.002119700168333 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/08,7.312750759903333 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/22,4.387075002852498 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/22,8.285000016507496 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/09,3.8352997546666585 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/09,3.840892934666658 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/24,14.199533334118312 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/24,19.237091667451654 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/10,5.322925000072493 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/01,3.3326000002399967 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/01,3.722325000167495 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/09,3.8352997546666585 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/09,3.840892934666658 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/24,14.199533334118312 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/24,19.237091667451654 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/10,5.322925000072493 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/01,3.3326000002399967 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/01,3.722325000167495 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/03,6.60352499665501 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/25,3.799879666405241 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/25,3.6788743618560735 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/11,4.270850000000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/02,17.175466666666672 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/02,17.345425000000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/03,6.60352499665501 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/25,3.799879666405241 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/25,3.6788743618560735 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/11,4.270850000000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/02,17.175466666666672 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/02,17.345425000000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/26,3.1087840999999963 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/26,3.4548295499999937 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/27,3.332876509615386 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/26,3.1087840999999963 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/26,3.4548295499999937 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/27,3.332876509615386 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/05,2.325429324999998 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/05,2.1823588499999977 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/05,2.325429324999998 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/05,2.1823588499999977 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/29,5.542693600627732 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/29,4.635098294481067 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/22,3.3495885773076908 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/30,3.788481244230767 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/29,5.542693600627732 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/29,4.635098294481067 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/22,3.3495885773076908 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/30,3.788481244230767 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/01/08,12.862350000184993 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/01/08,12.862350000184993 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/02/02,3.1959750000000047 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/01/24,21.75304166666668 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/02/02,3.1959750000000047 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/01/24,21.75304166666668 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/02/26,10.798274999785002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/02/26,10.798274999785002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/05,10.3462123655436 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/05,13.384782791530268 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/05,10.3462123655436 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/05,13.384782791530268 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/07,3.731375005012508 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/07,6.705310631560838 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/30,4.750243953478328 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/21,7.302353632254994 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/21,7.258378627964995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/29,2.8226540000000013 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/29,2.9297667500000024 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/07,3.731375005012508 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/07,6.705310631560838 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/30,4.750243953478328 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/21,7.302353632254994 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/21,7.258378627964995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/29,2.8226540000000013 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/29,2.9297667500000024 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/23,15.188391813601674 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/23,16.201525153175012 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/31,6.681511478705239 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/31,5.884213368834407 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/23,15.188391813601674 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/23,16.201525153175012 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/31,6.681511478705239 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/31,5.884213368834407 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/03,4.3088829309617225 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/24,6.453957431683334 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/24,7.067742430080836 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/11,5.12331500033749 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/25,3.878586769102559 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/03,4.3088829309617225 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/24,6.453957431683334 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/24,7.067742430080836 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/11,5.12331500033749 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/25,3.878586769102559 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/11,12.855537500522503 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/11,12.599907501217512 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/04,6.700634094545006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/26,4.161888751565235 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/26,4.550550517728572 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/03,2.589560000000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/03,2.5128102500000025 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/11,12.855537500522503 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/11,12.599907501217512 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/04,6.700634094545006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/26,4.161888751565235 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/26,4.550550517728572 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/03,2.589560000000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/03,2.5128102500000025 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/05,4.862655047252742 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/27,2.3262038 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/27,2.402534099999999 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/04,4.890152249999995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/04,4.4666204499999935 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/28,6.3360750000725 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/05,4.862655047252742 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/27,2.3262038 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/27,2.402534099999999 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/04,4.890152249999995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/04,4.4666204499999935 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/28,6.3360750000725 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/07,9.66682640571429 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/28,6.113280319999997 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/28,6.548042433333332 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/21,2.4718660000000003 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/06,2.29164085 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/06,2.0737908499999973 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/29,2.8802826499999994 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/07,9.66682640571429 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/28,6.113280319999997 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/28,6.548042433333332 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/21,2.4718660000000003 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/06,2.29164085 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/06,2.0737908499999973 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/29,2.8802826499999994 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/08,5.855787025714281 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/23,7.869415885072491 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/07,7.480937961538469 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/07,2.613622968269232 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/08,5.855787025714281 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/23,7.869415885072491 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/07,7.480937961538469 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/07,2.613622968269232 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/10,5.559956529702783 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/09,3.110225000000004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/09,2.820475000000004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/23,18.25622499992251 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/23,17.556050000352514 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/10,5.559956529702783 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/09,3.110225000000004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/09,2.820475000000004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/23,18.25622499992251 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/23,17.556050000352514 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/01/02,22.348225000000006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/01/02,22.404625000000006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/01/02,22.348225000000006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/01/02,22.404625000000006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/04,22.689058333333342 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/04,22.689058333333342 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/08,13.557897162357506 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/27,12.991491666571669 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/20,15.166899999905004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/08,13.557897162357506 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/27,12.991491666571669 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/20,15.166899999905004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/23,22.480808333333343 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/23,22.451808333333343 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/23,22.480808333333343 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/23,22.451808333333343 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/05/03,8.616725017465008 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/04/24,13.659783374805846 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/04/24,13.738558379405848 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/05/03,8.616725017465008 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/04/24,13.659783374805846 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/04/24,13.738558379405848 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/11,6.3968399949449966 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/11,6.097264993409993 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/11,6.3968399949449966 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/11,6.097264993409993 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/05,4.775778801646663 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/05,4.7647038016466645 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/28,4.582976530769226 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/05,4.775778801646663 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/05,4.7647038016466645 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/28,4.582976530769226 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/29,23.218491666714176 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/29,22.63876666695168 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/08/06,4.961244042307692 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/08/06,8.183883650000004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/30,2.710719673076923 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/29,23.218491666714176 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/29,22.63876666695168 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/08/06,4.961244042307692 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/08/06,8.183883650000004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/30,2.710719673076923 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/10,7.221849997545013 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/01,5.0090207557692255 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/01,4.913814277380947 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/24,8.600023483333336 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/02,2.897574461538463 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/23,4.252274999999991 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/23,3.065678 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/10,7.221849997545013 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/01,5.0090207557692255 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/01,4.913814277380947 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/24,8.600023483333336 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/02,2.897574461538463 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/23,4.252274999999991 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/23,3.065678 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/11/11,4.091959228739162 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/25,2.367352200000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/25,5.492398759999994 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/11/11,4.091959228739162 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/25,2.367352200000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/25,5.492398759999994 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/12/04,4.074848986292736 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/12/04,3.7391578391977354 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/01/06,21.66638333333335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/05,4.260747739999999 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/05,3.007763639999999 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/29,12.589529173661669 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/29,11.902095835775832 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/30,5.414825000792499 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/07/09,3.2653537969566635 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/06/30,16.63516666695665 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/06/30,16.65274166580665 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/07/08,6.239789511529882 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/07/08,4.5471352412908335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/07/01,7.813139410406669 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/06/22,4.9757750008675 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/06/22,5.017975000747499 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/10,4.72924769968864 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/09,3.105000005000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/09,3.551874999999999 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/09/03,7.389375000000013 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/25,14.647400000602502 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/25,12.735981250170004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/10/05,2.493417500000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/12/07,14.614191666666663 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/12/08,13.23659166660416 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/11/22,3.6260750000000064 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/02/01,21.867666666666683 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/02/01,21.75304166666668 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/01/25,12.077324999984995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/03/06,22.37892500000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/03/05,22.115583333333348 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/02/26,21.794191666666684 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/05/09,4.851145445885124 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/04/23,5.831036365142503 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/05/08,2.76896268 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/05/08,2.8057995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/04/22,2.3262949499999985 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/04/22,2.323522199999998 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/10,12.248425000844996 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/01,9.517629163516691 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/01,9.250705414289197 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/09,2.8452588500000013 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/09,3.1584088500000003 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/26,16.61603333328582 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/08/04,12.67287500038001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/08/04,13.995600000237514 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/08/05,3.634485482371789 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/07/27,4.437150000167492 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/07/27,4.2547000004099935 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/05,3.989492496666656 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/05,3.952304796666657 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/08/29,8.539230302591662 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/06,2.655405330769233 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/21,3.2379871133333307 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/21,3.117243179999997 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/10/08,2.73420944903846 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/29,19.39840000014 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/11/08,6.55827499625501 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/11/08,4.731699999985003 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/11/09,2.6689794999999985 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/12/03,9.93683230487979 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/12/11,2.7924750000000045 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/11/25,3.697819113461537 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/02/05,22.30117500000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/03/31,16.15251884043001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/04/01,4.014927278534995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/02,4.556112891813334 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/02,4.323196224426667 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/04/25,9.078495846678344 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/10,3.104806750000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/10,3.4433499999999992 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/27,2.810715144058331 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/06/04,4.324000000362496 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/26,4.721960606666667 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/26,3.461949246666669 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/07/05,16.598708334868334 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/07/05,17.00638333486833 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/06/28,4.00770012564102 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/07/06,3.34719440160256 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/06,3.250186375144997 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/06,3.3494545551449963 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/07,3.372189524679486 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/31,3.1139822198717946 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/22,3.0701159257974977 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/22,2.428548494443332 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/09/08,14.09490000014251 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/23,4.541950000482493 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/09,4.803750649047612 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/09,4.596034749047614 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/10,12.104163461683465 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/01,14.746900000119972 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/09/24,5.144264400051665 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/11/10,4.140006983666662 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/11/10,3.436515340333329 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/11/03,15.172416667444184 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/25,3.816959092467504 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/25,3.667309092467504 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/12/29,4.010208855769228 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/01/29,22.26459166666668 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/01/29,22.26459166666668 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/01/22,24.44116666666665 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/02/06,21.867666666666683 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/03/02,22.663366666666672 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/03/02,22.663366666666672 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/04/03,13.541700015859996 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/04/03,16.19705836332834 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/04/04,2.97908827 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/05/06,3.0814752432692307 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/06/06,6.506760420869166 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/06/06,6.810131255592503 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/06/07,4.261724999999995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/05/29,15.548000000427486 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/05/29,4.202779170976664 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/06/23,3.3551371307692297 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/02,3.609844166714168 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/10,4.570638086538456 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/07/25,4.891412556410246 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/25,5.350858335358332 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/25,5.240283335430832 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/09/11,2.6692522500000058 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/26,3.916393180337495 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/06,4.114504728739166 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/10/28,7.502367156621067 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/10/28,6.261766998506906 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/05,6.921006750000006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/05,3.027138461538464 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/10/29,2.5871688111263738 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/24,2.357977199999997 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/24,2.1804225999999973 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/21,3.689317949999999 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/21,2.1427158000000004 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/12/23,3.5415000000000068 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/12/23,3.962950000000006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/02/26,22.658500000000007 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/02/26,22.274983333333346 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/03/30,22.451158333333343 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/03/29,21.66638333333335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/03/22,17.36113750053249 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/09,2.8697694250000008 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/08,6.167466674599157 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/08,6.122658338965821 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/01,8.733308333155813 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/04/30,3.216820424999999 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/04/30,3.2354567999999984 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/31,15.04568333311832 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/06/10,6.586948136482747 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/25,6.160232956967486 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/24,7.363333333843314 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/24,8.309600000179982 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/04,20.046724999984978 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/11,19.971666666811664 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/11,17.04135000017 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/03,5.351817811960001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/03,5.357680312350003 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/06/26,3.3676022500475025 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/06/25,3.1465983374999995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/06/25,2.627113350000002 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/08/05,4.209263461610963 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/10,2.598278028333333 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/10,2.687096961739168 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/08/29,3.461356205769229 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/08/28,3.1550195000000003 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/08/28,3.1053717500000007 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/30,18.488099999325 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/29,2.6350317499999982 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/29,4.767325713380837 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/22,3.4808248942307665 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/21,2.978544464999999 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/21,3.396060279999995 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/10/31,6.232021218099164 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/10/26,6.328708324458344 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/09,2.7673093980769234 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/08,5.163181211538461 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/08,2.5098867182692306 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/12/10,4.9656270499999975 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/12/10,2.5507633000000007 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/12/02,2.59845 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/12/02,2.8876772500000047 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/24,3.0681172500000016 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/24,3.2953295000000025 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/10,15.703881251009989 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/09,10.843454167891656 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/09,8.989612501454985 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/02,13.524699999952498 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/01,11.918550000332502 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/01,11.474391666666676 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/09,10.732133336165838 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/11,7.021582958752483 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/11,7.692810615219986 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/31,6.460670451497503 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/26,3.5247250001924955 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/05,21.679766666666676 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/04,5.873288263195827 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/04,5.896529171076659 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/28,23.28185834023335 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/27,25.257683333333347 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/27,24.366625000000003 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/22,17.04034166762665 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/06,3.5538091000724936 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/06,5.462045374999997 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/21,3.5110031207692294 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/30,4.728600713333333 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/30,4.752904499999997 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/23,6.7230432000725 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/22,5.803080318897498 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/22,4.415407599054166 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/06,3.5052386299999925 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/06,3.072249256739163 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/01,4.052834090217492 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/01,4.198711365239992 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/08/31,2.559986340000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/08/31,2.577486340000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/08/23,2.86154305 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/08/23,2.908068 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/03,6.136393187196668 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/03,3.7050000012825 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/23,14.590124999952485 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/03,3.0274953500000006 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/02,2.798022600000001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/02,3.713540089999994 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/25,2.512140312500001 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/11/03,3.1849268875 +Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/11/03,2.848247387500001 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/06,9.705733333143344 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/06,9.705733333143344 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/23,22.404625000000006 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/22,10.754591666451672 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/23,22.404625000000006 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/22,10.754591666451672 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/04/28,3.1650250004525 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/06,4.106762133333328 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/04/28,3.1650250004525 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/06,4.106762133333328 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/06,4.7127476807025 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/07,13.538633333453324 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/29,3.120649251666665 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/22,4.171275000047497 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/06,4.7127476807025 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/07,13.538633333453324 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/29,3.120649251666665 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/22,4.171275000047497 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/07/08,6.322868753365001 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/22,9.801825016387491 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/07/08,6.322868753365001 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/22,9.801825016387491 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/09,3.7468022899999904 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/07/24,13.90765834833083 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/10,3.651500000000006 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/01,5.2557045 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/09,3.7468022899999904 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/07/24,13.90765834833083 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/10,3.651500000000006 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/01,5.2557045 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/25,3.9365583467391616 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/11,4.6324795000474985 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/02,2.727275000047501 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/25,3.9365583467391616 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/11,4.6324795000474985 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/02,2.727275000047501 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/10/05,4.891150000047502 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/26,4.377377658453332 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/10/04,14.57151666686665 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/27,2.7054456923076917 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/10/05,4.891150000047502 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/26,4.377377658453332 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/10/04,14.57151666686665 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/27,2.7054456923076917 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/05,4.991604169739164 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/05,4.991604169739164 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/29,6.849052990609403 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/30,12.715258333333328 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/29,6.849052990609403 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/30,12.715258333333328 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/02/02,3.61539263461539 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/02/02,3.61539263461539 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/02/26,22.404625000000006 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/03/05,9.888491666451673 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/02/26,22.404625000000006 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/03/05,9.888491666451673 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/05,8.01392777988776 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/03/29,7.1250562402375 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/05,8.01392777988776 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/03/29,7.1250562402375 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/07,5.881811367352506 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/30,6.533834090072502 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/21,4.425654278858568 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/29,6.764825000072508 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/07,5.881811367352506 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/30,6.533834090072502 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/21,4.425654278858568 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/29,6.764825000072508 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/23,11.11676466712334 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/31,4.192904169461662 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/23,11.11676466712334 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/31,4.192904169461662 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/03,4.196205313333322 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/06/24,11.009354166976664 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/11,7.266424623706656 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/02,4.279625000214999 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/06/25,3.9988674711538432 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/03,4.196205313333322 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/06/24,11.009354166976664 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/11,7.266424623706656 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/02,4.279625000214999 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/06/25,3.9988674711538432 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/11,7.586012502084995 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/04,3.435484099999996 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/03,3.7869449999999967 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/27,4.255916779487175 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/11,7.586012502084995 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/04,3.435484099999996 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/03,3.7869449999999967 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/27,4.255916779487175 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/05,3.8591868499999937 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/27,2.733691661666665 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/04,4.911859069999995 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/28,11.326600000072483 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/05,3.8591868499999937 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/27,2.733691661666665 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/04,4.911859069999995 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/28,11.326600000072483 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/07,3.817101511884165 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/28,6.372443205167497 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/21,3.2517574246666605 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/06,2.3880159557692284 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/29,14.577583332903314 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/07,3.817101511884165 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/28,6.372443205167497 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/21,3.2517574246666605 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/06,2.3880159557692284 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/29,14.577583332903314 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/08,9.30596667955666 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/23,7.944056795072491 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/07,2.5890135182692284 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/08,9.30596667955666 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/23,7.944056795072491 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/07,2.5890135182692284 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/12/10,7.525125000755005 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/23,2.5014045000000014 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/12/10,7.525125000755005 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/23,2.5014045000000014 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/12/25,11.10594166705167 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/12/25,11.10594166705167 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/03/08,16.020964583665833 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/02/27,21.67155833333335 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/02/20,20.365858333238364 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/03/08,16.020964583665833 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/02/27,21.67155833333335 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/02/20,20.365858333238364 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/03/23,22.304499999355013 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/03/23,22.304499999355013 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/04/24,9.335166666666655 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/04/24,9.335166666666655 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/06/11,4.622250602870833 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/06/03,4.93709206685833 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/06/11,4.622250602870833 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/06/03,4.93709206685833 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/05,3.7178545000000023 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/05,3.7178545000000023 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/07,9.229806320287503 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/29,14.213933335633344 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/06,3.265981699999998 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/30,2.9608706125000013 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/07,9.229806320287503 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/29,14.213933335633344 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/06,3.265981699999998 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/30,2.9608706125000013 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/30,3.623250000072496 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/23,3.9147583375583337 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/30,3.623250000072496 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/23,3.9147583375583337 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/10,5.982345825915846 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/01,3.2085219666666625 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/09/24,2.916819697029166 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/02,2.3259661682692294 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/09/23,3.6915909100725015 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/10,5.982345825915846 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/01,3.2085219666666625 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/09/24,2.916819697029166 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/02,2.3259661682692294 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/09/23,3.6915909100725015 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/11/11,8.39132109904761 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/11/10,4.956867999999999 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/25,5.382179679999994 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/11/11,8.39132109904761 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/11/10,4.956867999999999 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/25,5.382179679999994 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/12/04,3.5793816665841747 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/12/29,22.348225000000006 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/01/06,21.794191666666684 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/03/26,21.49743583333335 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/05/05,8.505033337028317 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/05/29,4.879155946946545 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/05/30,5.385075000647495 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/07/09,3.657006133333328 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/06/30,13.329349999999993 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/07/08,9.36489659247165 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/07/01,4.664200000434991 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/06/22,6.21100000047749 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/08/10,3.015772254102562 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/08/09,5.315495499999996 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/09/03,3.752950842307688 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/08/25,14.260250000357493 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/10/05,4.772941671206664 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/12/07,10.84014166645167 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/11/22,9.770918750027509 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/02/09,22.451158333333343 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/02/02,22.351800000000008 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/01/25,10.830375000000004 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/03/06,22.337341666666678 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/03/05,11.447216666651672 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/02/26,21.794191666666684 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/05/09,10.792890944177495 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/04/23,10.155566673851654 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/05/08,6.958433340353325 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/04/22,2.2382565750000007 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/06/01,8.382161664676682 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/06/09,2.857918290000001 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/07/03,8.998054172201666 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/08/04,10.567962501472508 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/08/05,3.5940059448717894 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/07/27,17.729333351878353 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/09/05,3.199232424666661 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/08/29,2.9698204766666656 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/09/06,2.6561004182692307 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/09/21,6.461670449999997 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/10/08,3.7612221607692256 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/09/29,4.019390909999993 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/11/09,4.241225000264995 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/11/25,4.143239028846151 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/03/08,22.471433333333344 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/02/21,22.451158333333343 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/03/07,21.67155833333335 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/02,13.69012500460001 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/04/25,10.673425018497506 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/10,3.1610022500000072 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/03,3.07842067 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/27,5.738284090527502 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/06/04,3.93490000041 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/26,4.964749999999998 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/07/05,5.601584091107502 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/06/28,2.9473318200725 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/07/06,14.428508332903313 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/06,3.886712133405828 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/07/30,2.627112882584164 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/07,4.631271434487172 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/31,5.977625004542494 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/22,4.002496973885832 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/30,3.2048321230769226 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/23,3.935779034615381 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/10/09,4.299035514047613 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/10/10,8.869625000432496 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/10/01,3.766636906943463 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/09/24,13.93373333340582 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/11/10,3.676020610695831 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/11/03,8.407183372680835 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/10/25,13.967055969624989 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/12/29,21.794191666666684 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/02/06,12.591508333470829 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/01/30,21.919450000000012 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/03/02,22.447608333333346 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/04/03,12.458666666856669 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/04/04,10.900641666571662 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/05/06,7.40519583706332 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/06/06,15.481774999784996 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/06/07,3.6811068209175 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/05/29,5.0471633049325 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/06/23,4.235418438461534 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/09,15.04750833311831 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/02,11.176929168784175 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/07/24,13.43271667831167 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/10,6.090752564102561 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/09/10,3.631902284999993 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/09/03,8.28823333190084 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/25,6.2483590913525004 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/09/11,4.274961250072498 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/09/02,2.8189500000000014 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/26,9.984854167414156 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/11/06,4.600518845714282 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/10/28,7.734826511666659 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/10/29,2.5241203365384624 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/11/24,2.6419930432692302 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/11/21,3.163431819999998 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/01/08,21.75304166666668 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/02/09,21.838800000000013 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/02/02,21.77565833333335 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/01/24,21.867666666666683 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/02/26,22.23439166666668 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/03/29,21.88613333333335 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/03/22,15.897995834093331 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/09,2.704916502500001 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/08,3.5651780733333305 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/01,5.541514398895823 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/04/30,4.441479534999998 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/31,17.94692499999999 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/25,4.773175000047491 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/24,5.035848215528212 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/04,10.917275002587512 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/06/29,19.26590000004748 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/11,7.674508338633318 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/04,4.215238699999992 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/03,7.53999167456415 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/06/25,3.1789341 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/08/05,3.631494042307693 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/28,2.701927250000001 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/09/10,2.741643189999999 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/08/24,9.743599992160002 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/08/29,10.647346213478343 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/08/28,3.1062786999999976 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/09/22,5.131819811903572 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/09/29,3.553525000000004 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/09/21,4.168100000072497 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/10/31,8.054574999479998 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/11/09,2.7677940842032966 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/11/08,2.0907793499999965 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/12/10,2.23683835 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/12/02,3.361950000000005 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/11/24,2.89759 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/02/04,22.13946666666668 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/04/10,10.955658333238327 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/04/09,11.239258333238327 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/04/02,12.731924999737496 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/04/01,10.236416666524176 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/09,9.858454170546674 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/11,5.004175000000001 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/31,7.788295450772503 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/26,2.9168272703625 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/06/04,5.0543308070382125 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/28,22.63400833350084 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/27,26.61800833333332 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/06/22,13.065874996585007 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/06,6.679358336786667 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/08/05,6.200399996455008 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/31,8.742050000119999 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/30,3.205219230769229 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/23,4.627966792307683 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/22,5.7643814542849965 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/06,7.2778689435008355 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/01,3.468085601739162 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/01,5.751652270217494 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/08/31,3.933883073333328 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/08/23,4.482052299999989 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/10/03,12.021691669251664 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/28,5.977299246786665 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/10/03,3.675904599999997 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/10/02,3.4924146799999964 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/25,2.906003699999998 +Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/11/03,2.622313350000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/02/06,21.909850000000016 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/02/06,21.84966666666668 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/04/03,12.506700000000002 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/04/03,12.668916666666666 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/06/06,11.403575002709982 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/06/06,11.36050000256498 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/05/29,13.05640833333332 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/05/29,13.01218333333332 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/07/08,7.076670456544999 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/07/08,7.082020456544999 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/06/22,19.10055833295081 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/06/22,18.94448333333332 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/09,3.538709099999995 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/09,3.5021681999999954 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/07/24,9.235966689834171 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/07/24,8.835625016267505 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/01,3.661152381538459 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/01,3.097978936538462 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/25,3.8084339413333232 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/25,3.937257613333324 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/09/02,6.856825000362505 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/09/02,6.620175000652505 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/09/26,7.392921218550835 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/09/26,4.475311375289996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/10/04,12.81583333333332 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/10/04,12.78398333333332 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/11/05,3.054219230769229 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/11/05,4.352517999999999 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/05,12.965085289615276 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/05,12.548866541725271 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/07,7.535856249529998 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/07,7.874475010385003 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/21,4.0935564416066645 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/21,4.067981441606665 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/29,2.8143590000000014 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/29,2.614804000000002 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/23,8.040179167369166 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/23,8.055841670911665 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/31,12.775825000457491 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/31,2.608602250000005 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/06/24,8.679558334515834 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/06/24,9.807033334515834 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/11,3.5416500015274988 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/11,3.294100006159996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/03,3.9893152857692256 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/03,3.209292630769227 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/27,3.4265878999999955 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/27,3.570664399999996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/09/04,3.863624999999996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/09/04,3.943049999999996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/09/28,6.86141212333333 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/09/28,8.10057121333333 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/10/06,2.444134 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/10/06,2.298022625 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/11/07,2.2587179499999976 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/11/07,2.129279349999998 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/12/25,21.675758333333352 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/04/24,10.866966666739156 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/04/24,10.682333333405824 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/06/11,4.22147019345488 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/06/11,4.1914201934548805 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/06/03,5.251474999999998 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/06/03,5.0205249999999975 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/07/05,2.4593908682692325 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/07/05,2.5711522432692315 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/07/29,4.483343254999988 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/07/29,4.416543254999988 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/08/06,3.6714000049999935 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/08/06,3.618246213333325 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/08/30,3.630300000144995 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/08/30,4.574817283072489 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/10/01,3.207168210144997 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/10/01,3.2149606468116656 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/09/23,5.08717819999999 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/09/23,4.789897809999991 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/10/25,4.768938689999995 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/10/25,4.939291029999995 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/12/04,4.275739529478572 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/12/04,7.401839021633338 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/01/05,22.64890000000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/01/29,13.431491666571668 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/01/29,13.431491666571668 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/04/11,22.30574166666668 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/04/11,22.26459166666668 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/03/26,21.34328583328585 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/05/05,3.594271203333327 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/05/05,2.84701675 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/05/29,15.796533351733329 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/05/29,14.885200027600002 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/06/30,21.8170250002375 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/06/30,22.146483333570835 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/07/08,4.420434099999991 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/07/08,4.39316819999999 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/06/22,10.820808335870824 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/06/22,10.720975000237488 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/08/09,3.92641667333333 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/08/09,3.4500636400474973 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/08/25,4.516451019999991 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/08/25,4.598156919999992 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/12/07,22.407050000000005 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/12/07,22.373925000000007 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/02/09,22.37892500000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/05/08,2.794799000000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/05/08,2.7760240000000014 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/04/22,2.4167090000000018 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/04/22,2.184965750000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/06/01,11.06434791637667 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/06/01,10.009108335160835 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/06/09,3.260383440769226 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/06/09,3.238076640769226 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/03,9.382265669592142 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/03,9.03384067200464 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/11,17.70963333351834 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/08/04,3.246136372971663 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/08/04,2.9998909262324984 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/27,6.730750000382499 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/27,5.280751516929161 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/05,3.867413679999992 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/05,3.846813679999993 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/21,8.29407273 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/21,8.29407273 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/29,10.880062500309991 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/29,10.831312500309991 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/02/20,21.75304166666668 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/02/20,21.75304166666668 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/02,10.658416682766658 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/02,17.390991735666685 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/10,4.254300929999996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/10,4.160356830000003 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/26,6.565850000525002 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/26,5.63685000048 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/07/05,6.974665157051666 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/07/05,6.413104550384998 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/08/06,3.915845454999994 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/08/06,4.162445454999993 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/09,3.403850024999997 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/09,3.3482212383333296 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/01,11.902377250167484 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/01,10.59658333333334 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/11/10,6.39883106833333 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/11/10,5.427609099999995 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/25,8.309831241449999 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/25,9.4260499976925 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/01/29,22.76551666666667 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/01/29,22.76551666666667 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/03/02,22.47810000000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/03/02,22.47810000000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/04/03,16.689416707804174 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/04/03,16.67382504573751 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/05/29,3.804625009999998 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/05/29,3.839550009999999 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/07/24,16.58793333309581 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/07/24,16.29817499976248 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/09/10,15.280349999984995 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/09/10,18.150912499327504 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/08/25,8.118983334468332 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/08/25,8.401008334468335 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/09/26,7.650541671741663 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/09/26,5.192245839633333 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/10/28,6.934317439109169 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/10/28,6.762152275119997 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/05,3.6746128461538494 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/05,3.101371115384614 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/12/07,3.009800000000007 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/12/07,2.7626295000000045 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/24,2.5468108500000013 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/24,2.5477063750000006 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/21,5.212043570062494 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/21,5.903868570062488 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/01/08,21.848400000000016 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/12/23,15.682391666571656 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/12/23,15.919358333310822 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/04/06,2.656227250000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/04/06,2.9575734633333357 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/08,3.4655322349999977 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/08,3.4464202249999967 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/04/30,3.466901377999994 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/04/30,3.4238763779999943 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/31,16.475641668489153 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/31,16.70429166848915 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/24,3.066425000000004 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/24,3.559675000000002 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/07/03,4.460925000000003 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/07/03,4.711400000047502 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/06/25,4.500750000217492 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/06/25,4.308425000362494 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/07,15.345570834220837 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/07,13.249437501660008 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/10,2.264160606739168 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/10,2.434062881739168 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/24,3.557206086666664 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/24,3.231771154999998 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/28,3.286179375000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/28,3.1383982875 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/29,2.7470817500000044 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/29,3.199029500120004 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/21,5.739300000145002 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/21,4.972225000240004 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/10/31,6.493549994090012 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/10/31,6.009699994735009 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/11/08,2.135583949999996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/11/08,2.149083949999996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/12/10,2.8633134000000013 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/12/10,2.4154134000000016 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/12/02,3.521102250000006 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/12/02,3.477425000000007 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/11/24,5.732375000072498 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/11/24,2.5028022500475005 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/02/04,22.23439166666668 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/04/09,14.895389587858332 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/04/09,14.781370837858336 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/04/01,14.498612499905008 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/04/01,10.76186666657166 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/09,9.31216458683085 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/31,3.066340146811665 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/31,3.0641992367391646 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/26,3.5618091000724923 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/06/04,10.186621599229165 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/06/04,10.824216669879156 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/27,19.016300000047494 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/27,17.606125000072502 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/06/22,3.144902270144996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/06/22,3.178852270144996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/06,4.337650000409995 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/06,4.611796530914218 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/10,21.30641666666664 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/10,18.06376666666665 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/05,3.2793059239424944 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/30,3.626106899999994 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/30,2.7628173125000006 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/22,6.400175000142499 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/22,5.095375000047504 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/06,6.671747729999998 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/06,6.778847729999998 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/01,3.1108090903625 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/08,4.354444230769223 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/31,3.0712635 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/31,3.0424635 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/23,4.528711349999996 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/23,5.640252249999995 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/10/03,13.242516666859178 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/10/03,18.10222501619501 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/28,7.923047915301685 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/28,6.146570826638348 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/10/02,2.728881780000001 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/10/02,2.9980422399999984 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/11/03,3.4651816199999974 +Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/11/03,3.4659376449999955 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/02/06,21.750616666666684 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/02/06,21.750616666666684 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/02/23,22.404625000000006 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/02/23,22.404625000000006 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/04/28,9.839452286547488 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/06,3.2564363699999985 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/04/28,9.839452286547488 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/06,3.2564363699999985 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/06/06,7.452778333045837 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/29,4.526425000120008 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/22,3.960604500000005 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/06/06,7.452778333045837 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/29,4.526425000120008 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/22,3.960604500000005 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/07/08,20.82704583237585 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/06/22,7.706395296731659 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/07/08,20.82704583237585 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/06/22,7.706395296731659 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/09,2.881138970100733 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/02,22.38777500014 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/09,2.881138970100733 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/02,22.38777500014 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/03,6.285664582593337 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/25,3.0464234883333305 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/11,2.272890250000001 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/02,3.1238250000000063 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/26,3.8613514319597058 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/03,6.285664582593337 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/25,3.0464234883333305 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/11,2.272890250000001 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/02,3.1238250000000063 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/26,3.8613514319597058 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/26,4.482342049932501 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/27,3.19637804326923 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/26,4.482342049932501 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/27,3.19637804326923 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/05,2.40806115 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/05,2.40806115 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/29,10.005291559047608 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/22,3.5384799384699988 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/12/07,3.5894976586538467 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/30,2.661281750000003 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/29,10.005291559047608 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/22,3.5384799384699988 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/12/07,3.5894976586538467 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/30,2.661281750000003 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/10,22.37892500000001 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/02,9.453106773846152 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/10,22.37892500000001 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/02,9.453106773846152 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/26,13.286466666476674 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/26,13.286466666476674 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/05,7.710647912881663 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/05,7.710647912881663 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/30,13.219556307995004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/21,13.776308338958344 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/08,4.030550000000004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/29,3.869480303333329 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/30,13.219556307995004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/21,13.776308338958344 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/08,4.030550000000004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/29,3.869480303333329 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/23,4.152925767940008 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/31,3.725029173424165 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/23,4.152925767940008 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/31,3.725029173424165 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/03,16.67015833311832 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/06/24,12.823883333645838 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/02,5.533437888711663 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/06/25,4.330141119230765 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/03,16.67015833311832 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/06/24,12.823883333645838 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/02,5.533437888711663 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/06/25,4.330141119230765 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/11,8.57082502686 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/04,4.832297730772499 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/26,4.284900514674408 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/03,3.3714545000000014 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/11,8.57082502686 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/04,4.832297730772499 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/26,4.284900514674408 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/03,3.3714545000000014 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/05,3.611940156666659 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/27,7.575758333448335 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/04,3.7421954899999976 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/28,3.4600500003849937 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/05,3.611940156666659 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/27,7.575758333448335 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/04,3.7421954899999976 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/28,3.4600500003849937 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/07,4.047570464999996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/21,2.7759060616666646 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/06,2.328574786538459 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/29,3.397361505769224 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/07,4.047570464999996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/21,2.7759060616666646 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/06,2.328574786538459 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/29,3.397361505769224 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/08,3.9168295602899943 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/23,8.461705298405827 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/07,2.929385543269229 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/08,3.9168295602899943 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/23,8.461705298405827 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/07,2.929385543269229 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/10,9.39827437022026 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/09,9.06248334198082 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/23,4.62854982 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/10,9.39827437022026 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/09,9.06248334198082 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/23,4.62854982 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/26,24.44116666666665 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/26,24.44116666666665 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/02/04,13.351058332855832 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/02/04,13.351058332855832 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/02/19,20.596072919156697 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/03/08,14.980410801729994 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/02/19,20.596072919156697 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/03/08,14.980410801729994 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/08,10.830516666666677 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/03/23,20.95038333314336 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/09,13.872174999952495 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/08,10.830516666666677 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/03/23,20.95038333314336 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/09,13.872174999952495 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/24,4.427598496136667 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/24,4.427598496136667 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/11,20.137625000380023 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/03,6.3712833334783285 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/11,20.137625000380023 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/03,6.3712833334783285 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/07/05,6.089527250145002 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/28,3.4302317500000044 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/07/05,6.089527250145002 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/28,3.4302317500000044 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/07,12.890200000617504 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/07/30,2.7920102807692317 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/07,12.890200000617504 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/07/30,2.7920102807692317 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/30,3.609462881666663 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/23,12.025191365425831 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/07,3.391950000000006 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/30,3.609462881666663 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/23,12.025191365425831 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/07,3.391950000000006 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/10,9.049901496666664 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/01,5.330605952380945 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/24,2.982883182999998 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/02,2.4398289057692293 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/23,3.2789421999999977 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/10,9.049901496666664 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/01,5.330605952380945 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/24,2.982883182999998 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/02,2.4398289057692293 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/23,3.2789421999999977 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/11/11,5.50533702571428 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/11/10,2.3493198249999985 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/25,2.2405361000000013 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/11/11,5.50533702571428 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/11/10,2.3493198249999985 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/25,2.2405361000000013 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/12/04,7.894006909300242 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/01/06,21.675758333333352 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/03/26,20.789133333238357 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/05/05,6.969200002300003 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/04/28,18.114491674089148 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/05/29,8.98434697333333 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/05/30,2.731227250000002 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/07/09,8.201500000072507 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/06/30,9.913981659476653 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/07/08,3.663852299999992 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/06/22,12.598333333333322 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/08/10,3.7627499999999903 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/08/09,5.877250000120008 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/09/03,2.7187772500000063 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/08/25,4.326007578960834 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/10/05,2.7611409000000013 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/11/22,8.795083344833332 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/12/24,9.950691667651665 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/02/02,22.26459166666668 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/02/10,21.525883333333358 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/01/25,11.820625000737504 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/03/06,11.061999998925009 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/03/05,11.01204999969001 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/02/26,21.75304166666668 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/05/09,6.64374999409001 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/04/23,10.68817628292999 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/05/08,3.3128795 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/04/22,3.568444682307688 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/06/01,9.532683336020826 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/06/09,5.540376524590827 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/07/03,6.666470833718336 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/06/26,3.3434431999999945 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/07/28,3.4404083375366623 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/08/05,3.4517606730769232 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/07/27,3.0905387000724964 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/05,3.5945606066666573 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/08/29,3.260187881739163 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/06,2.8041106625 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/30,3.6706940531265486 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/21,8.343897729999998 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/10/08,3.721484099999996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/29,3.464240909999996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/22,14.380683333643328 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/11/08,9.460152500552518 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/11/01,7.9896250146425025 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/11/09,2.339540475 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/10/24,4.407225000217494 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/12/11,15.390583335633336 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/11/25,3.1897750000000062 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/03/08,20.96963333319086 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/02/21,22.120274999785007 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/02/29,21.981250000000014 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/02/20,21.848774999737515 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/02,10.647816684946669 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/04/25,7.328758347253334 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/10,4.276054172856664 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/03,4.1091182199999965 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/27,5.864809090382505 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/06/04,3.4283393984783377 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/26,3.597823204999996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/07/05,13.682474999759991 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/06/28,19.38348560883334 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/07/06,4.819831361538456 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/06,10.852606253439992 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/07/30,3.73863106666666 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/07,14.600275000072484 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/31,3.1261786499999946 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/22,12.155550000427509 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/23,4.001759099999992 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/10/09,4.179831220333326 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/09/23,17.792189597133348 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/10/10,11.556900000072504 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/10/01,2.516041625 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/11/10,8.628556831666662 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/11/03,4.560997725119998 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/10/25,7.999957583566672 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/12/29,21.75304166666668 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/03/02,22.34590833333334 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/04/04,9.746833332760843 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/05/06,3.568365910000004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/06/06,12.637883333238324 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/06/07,5.660484090120004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/06/23,2.751174999999999 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/08/02,7.581697733000009 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/07/24,21.51775 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/08/10,8.023019233714228 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/07/25,4.528345407179479 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/09/03,8.843899996622499 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/08/25,17.427250036992497 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/09/11,3.542631899999995 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/08/26,4.455240910119994 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/09/26,7.9709499887450015 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/11/06,8.486045435072487 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/10/28,7.728815901666658 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/11/09,2.986673463333335 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/10/29,2.434847218269232 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/11/24,2.493673480769229 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/11/21,5.1223727 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/12/23,17.77100000407753 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/01/25,22.68484166666667 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/03/30,11.555599999985 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/09,2.8874750149999984 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/09,2.0909404150000004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/08,5.873850003332491 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/01,2.935151588333335 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/04/30,6.305108338930824 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/04/23,10.137125000529991 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/06/10,5.069934496923066 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/24,13.43499166662166 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/07/04,11.244199997344994 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/06/29,15.490449999784996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/07/11,9.79529167593915 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/07/04,14.858083333383323 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/07/03,8.681627275880004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/06/26,2.6817613499999995 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/06/25,2.5104362000000027 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/08/05,4.829989350512811 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/09/10,7.7143750004825025 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/08/29,3.496154499999999 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/08/28,2.7976000000475016 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/09,3.727182583500832 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/08,2.830925874999999 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/09/29,2.461545330769229 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/09/22,3.0113522500000034 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/09/21,3.150593674999996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/31,19.80052083399835 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/11/09,3.282921288461539 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/11/08,2.2235121423076887 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/31,21.177658333113342 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/24,23.55130833333333 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/12/10,2.3010428500000004 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/12/02,13.605441666636658 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/11/24,3.4442792115384617 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/12/26,12.136699999984998 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/02/04,21.961558333333347 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/02/20,19.843006250437508 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/10,11.488408333238326 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/09,14.08581666661916 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/02,13.768499999905002 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/01,11.435591666571662 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/03/24,21.592858333238347 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/09,8.53653749954752 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/11,4.779325002419997 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/26,3.0760750000000026 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/31,7.209420451037505 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/26,3.622703033405829 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/06/05,6.160075000647493 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/06/04,4.573643565252497 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/28,15.37698333352584 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/27,3.2821500010874973 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/06/22,4.692049097999996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/07,4.170259099999995 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/06,4.257835180769223 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/06/21,6.078588288076926 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/08/05,2.884720455289997 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/31,2.738811366015 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/30,4.792292806921664 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/23,4.503968199999991 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/22,8.745588258954168 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/06,7.817382580072497 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/01,3.3664348433333275 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/01,5.058109089999995 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/08/31,3.713050773333326 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/08/23,4.801018199999994 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/28,9.628536111396098 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/10/03,3.4012413999999977 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/10/02,2.759747600000003 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/25,4.037274094999995 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/11/11,20.270187500384992 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/11/03,3.354208354999996 +Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/11/27,3.447859000047499 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/02/07,22.539900000000006 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/02/07,22.539900000000006 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/02/07,22.539900000000006 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/02/07,22.539900000000006 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/06,11.774075000457508 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/06,7.305075000337503 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/06,11.774075000457508 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/06,7.305075000337503 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/22,3.943750000000007 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/22,2.5712272500474995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/22,3.943750000000007 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/22,2.5712272500474995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/06/23,3.2704272500475 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/06/23,7.621050000094995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/06/23,3.2704272500475 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/06/23,7.621050000094995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/02,4.912087504592499 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/02,5.423595837315833 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/02,4.912087504592499 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/02,5.423595837315833 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/03,8.549599992267503 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/03,6.604712485337509 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/11,3.5092500000000086 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/11,4.097650000312491 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/26,3.885723216346154 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/26,2.502890500000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/03,8.549599992267503 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/03,6.604712485337509 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/11,3.5092500000000086 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/11,4.097650000312491 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/26,3.885723216346154 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/26,2.502890500000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/10/05,9.6489875097025 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/10/05,10.05547083965834 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/27,2.49713101826923 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/27,2.5456123432692306 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/10/05,9.6489875097025 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/10/05,10.05547083965834 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/27,2.49713101826923 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/27,2.5456123432692306 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/11/22,10.14374912238094 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/11/22,5.257678827714278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/11/22,10.14374912238094 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/11/22,5.257678827714278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/10,22.09322500000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/10,22.09322500000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/26,11.704174194979164 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/26,11.52147419732666 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/05,3.1495250000000032 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/26,11.704174194979164 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/26,11.52147419732666 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/05,3.1495250000000032 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/29,5.916235631666665 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/29,5.152298508405827 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/29,5.916235631666665 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/29,5.152298508405827 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/04/30,7.020640159039164 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/04/30,6.986033339039166 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/08,4.599757830841724 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/04/30,7.020640159039164 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/04/30,6.986033339039166 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/08,4.599757830841724 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/09,5.1059750001924895 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/24,11.141975000189989 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/24,7.733000000144995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/09,5.1059750001924895 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/24,11.141975000189989 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/24,7.733000000144995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/03,6.042006251729998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/03,5.327689585398336 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/11,16.010774999999978 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/25,2.4448727400000023 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/25,2.466410325000004 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/03,6.042006251729998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/03,5.327689585398336 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/11,16.010774999999978 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/25,2.4448727400000023 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/25,2.466410325000004 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/04,4.24397045499999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/04,4.18767045499999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/27,2.7105511800000017 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/27,3.0564769288461537 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/04,4.24397045499999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/04,4.18767045499999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/27,2.7105511800000017 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/27,3.0564769288461537 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/05,3.4385499999999927 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/05,3.5038249999999924 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/28,3.0565220307692265 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/28,4.376190334615382 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/05,3.4385499999999927 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/05,3.5038249999999924 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/28,3.0565220307692265 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/28,4.376190334615382 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/07,3.958447883666663 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/07,3.123359095 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/21,2.948388644999997 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/21,3.228949251666661 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/29,4.280938625144993 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/29,4.003584100072495 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/07,3.958447883666663 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/07,3.123359095 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/21,2.948388644999997 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/21,3.228949251666661 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/29,4.280938625144993 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/29,4.003584100072495 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/11/08,4.732758362714278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/11/08,4.544817452714279 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/23,4.876446100714277 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/23,4.801163510714278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/11/08,4.732758362714278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/11/08,4.544817452714279 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/23,4.876446100714277 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/23,4.801163510714278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/10,6.182825000370005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/10,6.393624998865007 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/10,6.182825000370005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/10,6.393624998865007 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/26,22.76205 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/26,22.76205 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/26,22.76205 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/26,22.76205 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/01/27,10.705508333118338 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/04,12.425250000384995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/04,13.218100000384998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/01/27,10.705508333118338 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/04,12.425250000384995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/04,13.218100000384998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/28,13.847625000952512 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/28,14.044925000752514 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/03/08,4.412624999999999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/03/08,13.905146978021971 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/20,20.365858333238364 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/28,13.847625000952512 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/28,14.044925000752514 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/03/08,4.412624999999999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/03/08,13.905146978021971 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/20,20.365858333238364 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/04/09,14.479383333333349 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/04/09,14.198062501150009 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/04/09,14.479383333333349 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/04/09,14.198062501150009 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/03,4.464583053365241 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/03,5.29663897071774 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/11,4.135266819999997 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/11,3.315911829999996 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/03,4.464583053365241 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/03,5.29663897071774 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/11,4.135266819999997 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/11,3.315911829999996 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/07,2.549738257074166 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/07,2.3461882571216663 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/07/30,2.321240740000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/07/30,2.1886201 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/07,2.549738257074166 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/07,2.3461882571216663 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/07/30,2.321240740000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/07/30,2.1886201 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/23,5.191737876859164 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/23,3.944508335753336 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/31,4.413897754807691 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/31,2.877145319999998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/23,5.191737876859164 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/23,3.944508335753336 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/31,4.413897754807691 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/31,2.877145319999998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/10,4.302293835714278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/10,2.8378453313333325 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/09/24,2.806844542999999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/09/24,2.713523329666666 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/02,2.7667463307692306 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/02,3.030789511126374 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/10,4.302293835714278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/10,2.8378453313333325 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/09/24,2.806844542999999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/09/24,2.713523329666666 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/02,2.7667463307692306 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/02,3.030789511126374 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/11,5.61683794771428 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/11,4.943500059999993 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/11,5.61683794771428 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/11,4.943500059999993 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/27,5.513074998020005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/04/28,4.045956820699994 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/04/28,4.993425000192491 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/05/30,4.698486753110832 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/05/30,4.824875000789996 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/07/09,14.396233349528345 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/07/09,14.183058351828343 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/07/01,3.8733613999999927 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/07/01,4.130036211538455 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/08/10,3.311790099999994 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/08/10,3.071451399999997 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/09/03,12.136525002699988 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/09/27,16.192483334318315 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/09/27,14.159558335518318 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/10/05,2.931739518269231 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/10/05,2.9976437548076893 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/12/08,2.284767995000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/12/08,2.54939029 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/11/22,5.044436250000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/11/22,2.310422500000002 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/01/01,12.397224173891662 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/01/01,10.834288205341936 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/01/25,21.95325833333335 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/01/25,21.77565833333335 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/02/26,20.521608333238365 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/04/23,3.736093963333332 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/04/23,3.498206849999998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/06/10,22.043987499617472 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/06/10,13.572623332665826 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/06/26,3.3451204399999943 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/06/26,3.4689045399999943 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/07/28,5.039850001882498 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/07/28,11.362408341173332 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/08/05,2.344343917307693 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/08/05,2.594719429395605 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/08/29,3.807524246666656 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/08/29,3.757043189999991 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/09/06,3.072495269999999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/09/06,2.6259680000000016 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/10/08,2.7529113899999995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/10/08,2.282152200000002 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/01,10.325527319300008 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/01,9.104700041639996 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/09,19.06855000004749 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/09,6.950600000000005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/10/24,2.782498000000002 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/10/24,3.301430475 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/12/03,9.650683196106934 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/12/03,12.565659333941936 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/12/11,2.580828268269229 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/12/11,3.127673091346154 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/25,2.4530982923076907 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/25,3.4092741298076947 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/02/29,22.69252500000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/02/29,22.479058333333345 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/04/01,22.87150833319085 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/04/01,15.612000000025004 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/04/25,3.036421218333329 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/04/25,2.9264393983333306 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/05/03,5.872325000000002 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/05/03,2.6758068200000014 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/05/27,2.9278621207249955 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/05/27,3.606793940579995 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/07/06,3.035132269999999 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/07/06,2.508233945000004 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/07/30,3.6834310668116577 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/07/30,3.490791678405825 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/09/08,3.9349250004099936 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/09/08,3.816250000312491 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/08/23,2.912370549999998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/08/23,3.2198649307692278 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/10/10,17.138566666404184 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/10/10,3.1257530335258306 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/09/24,11.23151060731917 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/09/24,4.049800000434996 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/11/03,4.794362499855008 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/11/03,3.254033332938336 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/12/29,13.24158333333332 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/12/29,13.715758335618313 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/01/22,24.02516666666665 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/03/11,13.141616666571672 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/03/11,21.34328583328585 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/02/23,10.082524999785011 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/02/23,10.082524999785011 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/03/27,9.80061588640582 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/03/27,9.424863800684994 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/04/04,11.342225000095 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/04/04,8.57520833453082 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/05/06,4.444250000000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/05/06,6.272600000000004 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/06/07,3.261593966666664 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/06/07,3.275320499999996 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/06/23,3.3933022500000054 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/06/23,18.13759166666665 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/02,9.65260416628417 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/02,9.59872916677917 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/10,2.628052250000005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/10,3.5238772500000044 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/07/25,4.0128328657692265 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/07/25,5.84322014974358 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/09/11,13.292124999784985 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/09/11,13.820649999999976 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/26,3.8031339999999982 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/26,4.670755580769223 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/06,4.86636732071428 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/06,9.418307468014277 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/09,2.722995150000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/09,3.0164712 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/04,16.608800000169996 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/10/29,2.8151190182692303 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/10/29,3.233039774038461 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/12/24,12.158108333333336 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/02/02,21.88613333333335 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/02/02,21.88613333333335 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/01/25,22.438508333333345 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/03/30,8.123675416224188 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/03/30,8.041792082890852 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/03/22,21.108409090617464 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/03/22,8.970995113076919 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/09,4.159332434666663 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/09,5.045325000000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/09,4.699334100000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/01,3.344135293333331 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/01,2.513378135000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/26,8.226050000785017 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/25,12.322583333380829 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/25,11.29815000004749 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/07/11,3.1983904641025624 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/06/29,2.8714399979999974 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/06/26,3.814007578598336 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/06/26,4.277605000072493 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/07/28,3.614898898717947 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/05,2.854575000000005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/05,2.758775000000004 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/07/28,2.953454500000002 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/07/28,2.818152250047502 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/31,12.044875000645002 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/29,2.833125000000005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/29,3.214575000000005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/10/08,2.263804349999998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/10/08,2.796079754807691 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/09/30,13.337049999999982 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/09/30,13.446374999999982 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/09/22,4.441127300289993 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/09/22,3.921334875144997 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/11/09,2.35832237403846 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/11/09,3.084117709203296 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/12/27,3.1208750000000065 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/12/27,2.792002250000006 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/04/10,10.529833333238328 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/04/26,4.2163786549999935 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/04/26,3.242392279999996 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/05/26,2.603577874956668 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/05/26,2.394731676550835 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/05,17.117679167164166 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/05,21.799254167071663 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/05/28,3.9867750008699945 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/05/28,3.6729090908449966 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/04,7.117533956659164 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/07,4.468783336859157 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/07,4.146142426859158 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/29,2.911275000000006 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/21,3.4332500000000024 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/21,3.466800000000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/08/05,6.425699994305011 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/08/05,6.23012499430501 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/31,2.1331250008625005 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/23,4.535031719999997 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/23,5.344754439999998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/01,7.690610606666675 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/01,7.14726060666667 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/09,16.55170000017 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/09,15.602500000199989 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/01,3.5088628999999965 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/01,3.795332880769224 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/28,13.074166756214163 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/28,9.19335230276749 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/10/03,4.165890964999994 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/10/03,4.144066591666661 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/25,3.093649824999998 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/25,3.482911250000001 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/11/28,3.027450000000006 +Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/11/28,5.385675000434995 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/02/07,23.465666666666657 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/01/22,20.191522919156693 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/02/07,23.465666666666657 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/01/22,20.191522919156693 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/02/23,22.34590833333334 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/02/23,22.34590833333334 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/04/04,11.25330833311834 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/04/04,11.25330833311834 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/05/06,14.14450002300001 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/05/06,14.14450002300001 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/06/23,15.356541694339182 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/06/23,15.356541694339182 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/03,7.359749990650009 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/11,3.83427305032051 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/08/26,4.470957429487176 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/03,7.359749990650009 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/11,3.83427305032051 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/08/26,4.470957429487176 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/10/05,7.565400004337497 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/27,3.431352235576924 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/10/05,7.565400004337497 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/27,3.431352235576924 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/11/22,3.4136690770725 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/11/22,3.4136690770725 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/02/02,2.726552250000001 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/02/02,2.726552250000001 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/02/26,10.127574999762496 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/02/26,10.127574999762496 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/03/29,5.182140915144996 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/03/29,5.182140915144996 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/04/30,7.428367438333327 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/04/30,7.428367438333327 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/05/24,10.552962500237497 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/05/24,10.552962500237497 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/03,4.156800390120004 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/11,14.07542499999998 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/06/25,4.492344242307686 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/03,4.156800390120004 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/11,14.07542499999998 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/06/25,4.492344242307686 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/08/04,2.840609089999997 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/27,3.1955567500000024 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/08/04,2.840609089999997 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/27,3.1955567500000024 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/05,3.392590909999994 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/08/28,3.897444230961722 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/05,3.392590909999994 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/08/28,3.897444230961722 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/10/07,3.649933485333329 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/21,3.106240156666664 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/29,2.800187750000002 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/10/07,3.649933485333329 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/21,3.106240156666664 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/29,2.800187750000002 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/11/08,5.787181094380945 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/10/23,5.284371218333331 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/11/08,5.787181094380945 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/10/23,5.284371218333331 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/12/10,6.827374992800014 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/12/10,6.827374992800014 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/01/11,11.55706666657166 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/12/26,23.716533333333324 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/01/11,11.55706666657166 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/12/26,23.716533333333324 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/03/08,11.723761837252733 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/03/08,11.723761837252733 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/04/09,16.01203958366583 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/04/09,16.01203958366583 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/05/03,4.642528039544176 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/05/11,4.400425000000002 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/05/03,4.642528039544176 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/05/11,4.400425000000002 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/06/28,2.647702250000003 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/06/28,2.647702250000003 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/07,19.32078333345332 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/07/30,2.1606018750000016 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/07,19.32078333345332 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/07/30,2.1606018750000016 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/09/08,8.32282499465 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/23,6.434277774420245 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/31,11.841499999569988 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/09/08,8.32282499465 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/23,6.434277774420245 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/31,11.841499999569988 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/10/10,11.590891668221678 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/09/24,6.409027270000006 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/10/02,3.0257075048076905 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/10/10,11.590891668221678 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/09/24,6.409027270000006 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/10/02,3.0257075048076905 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/11/11,4.395003816666661 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/11/11,4.395003816666661 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/01/06,21.88613333333335 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/04/28,3.015275000000005 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/05/30,6.203254185646668 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/07/09,15.306708356380843 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/07/01,2.9539250000475006 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/08/10,2.512343189999999 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/08/02,14.340600000279997 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/09/03,3.109477250000006 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/09/27,4.3180500030875 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/10/05,3.475741834615381 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/12/08,5.808449997835009 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/11/22,2.818968 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/01/25,21.38388333328585 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/02/26,20.38688333323837 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/04/23,7.505072751666663 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/06/10,11.974699996385002 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/06/26,3.344374999999995 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/07/28,7.239441676464165 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/08/05,3.029754979807692 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/08/29,14.92665009407 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/09/06,3.906218330769225 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/10/08,14.60079166666665 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/11/09,6.8477621291141615 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/10/24,8.176735457999994 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/12/03,9.966924866808604 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/12/11,2.7829445240384603 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/11/25,3.1195442307692294 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/02/05,12.059531249904996 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/03/08,14.210891666619164 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/02/29,10.666966666666676 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/04/01,10.274783335890838 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/04/25,6.306021976811667 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/05/03,4.518004169809164 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/05/27,3.234887120652496 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/07/06,3.519387128333327 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/07/30,10.912412563802503 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/08/07,4.310300001134999 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/08/31,3.1706181999999945 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/09/08,4.4343500015224935 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/08/23,2.9882466307692277 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/10/10,13.122925002447497 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/09/24,4.133637504114996 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/12/29,4.340120316346155 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/03/11,9.537100000257505 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/02/23,22.957816666666663 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/03/27,8.680570886383338 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/05/06,2.529950250000004 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/06/07,7.022083340400847 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/06/23,2.8381272500000057 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/08/02,2.745847721522498 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/08/10,2.735477250047498 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/09/11,7.494304500000003 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/08/26,4.427334100072492 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/11/06,14.40102736830112 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/11/09,14.010858333595811 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/11/04,4.85027173205128 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/10/29,3.753851897435892 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/02/02,21.268550000000022 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/02/26,22.26459166666668 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/03/22,7.959227094668332 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/05/09,3.0829271413333306 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/05/09,2.672788015000001 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/05/01,2.6193043400000016 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/04/23,5.0256075784533305 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/06/02,2.7622022500000067 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/05/25,5.2067250010349975 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/06/29,2.453287876666665 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/06/26,4.823800002395002 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/07/28,3.5739923705128183 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/08/05,4.420024999999993 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/08/31,2.8228794456410258 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/10/08,2.8380492749999977 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/09/22,9.120741667051664 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/10/26,5.651324998650006 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/11/09,3.3039025480769237 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/12/27,5.094609100964991 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/02/21,9.21874166567918 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/04/10,15.531995834208356 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/04/26,3.434752250047499 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/05/26,8.573537123525831 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/06/05,7.121733340420827 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/05/28,8.965100001169994 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/07/04,3.487345219871792 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/07/07,21.453937500035007 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/08/05,12.009166724469166 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/07/31,2.8379189469574966 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/07/23,4.397436359999994 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/09/01,4.170388630362496 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/08/22,10.546068752540007 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/09/09,3.1195295000000014 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/09/01,5.821939373333329 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/10/03,2.795206700000004 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/09/25,3.1640213669999957 +Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/10/27,3.5328651923076886 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/06,21.794191666666684 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/06,21.88855833333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/06,21.794191666666684 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/06,21.88855833333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/03/11,13.683583333190832 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/23,22.47810000000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/22,12.847366666404165 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/22,12.913666666404165 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/03/11,13.683583333190832 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/23,22.47810000000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/22,12.847366666404165 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/22,12.913666666404165 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/04/28,4.204774999700004 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/06,10.825450002299991 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/04/28,4.204774999700004 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/06,10.825450002299991 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/06/06,5.66971666248417 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/06/06,5.882049993427503 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/30,7.914662491815014 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/29,9.415291667721654 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/29,10.59434166776916 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/22,14.881500000094992 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/06/06,5.66971666248417 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/06/06,5.882049993427503 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/30,7.914662491815014 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/29,9.415291667721654 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/29,10.59434166776916 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/22,14.881500000094992 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/08,5.34577918007917 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/08,5.62961326719917 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/08,5.34577918007917 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/08,5.62961326719917 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/09,12.599624999999996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/09,18.54089863430113 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/02,22.0255999982 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/24,22.14766666580666 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/24,13.677499997074996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/10,2.3162249999999984 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/09,12.599624999999996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/09,18.54089863430113 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/02,22.0255999982 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/24,22.14766666580666 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/24,13.677499997074996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/10,2.3162249999999984 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/03,10.469500000277533 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/25,18.678158333333325 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/25,18.62711666666665 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/11,8.25313035333333 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/02,11.329616666666666 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/02,8.295150000120001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/26,3.047575000000009 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/03,10.469500000277533 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/25,18.678158333333325 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/25,18.62711666666665 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/11,8.25313035333333 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/02,11.329616666666666 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/02,8.295150000120001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/26,3.047575000000009 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/05,11.956565910000004 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/26,22.418052273333355 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/26,24.416150000000027 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/04,8.903908337933329 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/04,8.634258337933328 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/27,6.565811306666671 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/05,11.956565910000004 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/26,22.418052273333355 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/26,24.416150000000027 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/04,8.903908337933329 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/04,8.634258337933328 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/27,6.565811306666671 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/05,2.249218942307689 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/05,2.2746741428571404 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/05,2.249218942307689 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/05,2.2746741428571404 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/08,7.578558332443347 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/29,16.151927363696107 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/29,10.825119447029431 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/07,8.804000001467486 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/07,12.99180000033749 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/30,2.4866272500000024 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/08,7.578558332443347 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/29,16.151927363696107 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/29,10.825119447029431 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/07,8.804000001467486 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/07,12.99180000033749 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/30,2.4866272500000024 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/01/08,22.013858333333346 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/01/08,22.013858333333346 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/10,11.061749999785 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/02,11.826900000152504 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/10,11.061749999785 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/02,11.826900000152504 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/26,22.30574166666668 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/26,22.30574166666668 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/05,13.163332085675826 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/05,12.424006548389038 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/05,13.163332085675826 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/05,12.424006548389038 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/07,15.197693751900024 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/07,9.72941250409502 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/30,20.89275078549001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/21,16.818625052900014 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/21,17.280725048300006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/08,2.8891000000000053 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/29,10.769550048299996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/29,10.943150032199997 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/22,3.6310795000000025 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/07,15.197693751900024 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/07,9.72941250409502 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/30,20.89275078549001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/21,16.818625052900014 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/21,17.280725048300006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/08,2.8891000000000053 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/29,10.769550048299996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/29,10.943150032199997 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/22,3.6310795000000025 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/23,9.782098097613346 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/23,9.761764764232517 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/31,3.135362123333329 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/31,3.1816121233333297 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/23,9.782098097613346 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/23,9.761764764232517 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/31,3.135362123333329 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/31,3.1816121233333297 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/03,8.383137506525008 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/24,20.562141666809183 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/24,20.88461666680918 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/11,13.034791667076664 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/02,4.61831062083833 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/02,6.886536759430831 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/25,13.236599999999983 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/03,8.383137506525008 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/24,20.562141666809183 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/24,20.88461666680918 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/11,13.034791667076664 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/02,4.61831062083833 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/02,6.886536759430831 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/25,13.236599999999983 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/04,3.160841673333331 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/26,3.9717379016666583 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/26,3.2739227449999952 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/03,3.170674000000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/03,3.0955749999999984 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/27,5.360354480769233 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/04,3.160841673333331 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/26,3.9717379016666583 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/26,3.2739227449999952 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/03,3.170674000000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/03,3.0955749999999984 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/27,5.360354480769233 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/05,3.3341545599999964 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/27,6.297483335895839 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/27,6.242945460945002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/04,4.335777269999996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/04,4.318220449999997 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/28,5.320209092726661 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/05,3.3341545599999964 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/27,6.297483335895839 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/27,6.242945460945002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/04,4.335777269999996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/04,4.318220449999997 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/28,5.320209092726661 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/07,16.91556212730002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/28,12.140450304034156 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/28,14.860067818794166 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/21,8.031728786666658 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/06,5.364296433269228 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/06,5.352344933269229 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/29,17.57744166622166 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/07,16.91556212730002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/28,12.140450304034156 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/28,14.860067818794166 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/21,8.031728786666658 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/06,5.364296433269228 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/06,5.352344933269229 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/29,17.57744166622166 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/08,5.592902935714281 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/23,8.82960291571427 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/07,5.491525143269232 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/07,3.181158024038461 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/08,5.592902935714281 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/23,8.82960291571427 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/07,5.491525143269232 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/07,3.181158024038461 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/10,22.451158333333343 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/23,11.57054166633418 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/10,22.451158333333343 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/23,11.57054166633418 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/25,11.849324999857505 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/25,11.543224999810002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/25,11.849324999857505 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/25,11.543224999810002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/03,9.823583333333348 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/03,9.823583333333348 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/04,21.66638333333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/03,9.823583333333348 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/03,9.823583333333348 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/04,21.66638333333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/03/08,13.614279168966675 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/03/08,13.614279168966675 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/08,22.34590833333334 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/03/23,22.120274999785007 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/09,20.365858333238364 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/08,22.34590833333334 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/03/23,22.120274999785007 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/09,20.365858333238364 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/05/03,6.797281240175003 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/24,7.0875000023925 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/24,7.655287502325 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/05/03,6.797281240175003 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/24,7.0875000023925 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/24,7.655287502325 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/06/11,21.192233333808357 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/06/11,25.41966666695168 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/06/11,21.192233333808357 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/06/11,25.41966666695168 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/07,13.419772937894166 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/06,3.349950000000005 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/06,3.334500000000008 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/07/30,5.1974328707692266 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/07,13.419772937894166 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/06,3.349950000000005 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/06,3.334500000000008 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/07/30,5.1974328707692266 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/30,11.291678786666672 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/30,17.744000000000018 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/23,6.662387508992505 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/07,2.6852250000000053 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/07,3.083450000000006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/22,14.619533333333314 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/30,11.291678786666672 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/30,17.744000000000018 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/23,6.662387508992505 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/07,2.6852250000000053 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/07,3.083450000000006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/22,14.619533333333314 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/01,5.414095747435892 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/01,4.471400019999993 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/24,5.753116286666669 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/02,5.923668545576917 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/23,10.949566669039152 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/23,10.977566669039152 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/01,5.414095747435892 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/01,4.471400019999993 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/24,5.753116286666669 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/02,5.923668545576917 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/23,10.949566669039152 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/23,10.977566669039152 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/11/11,16.05772834622584 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/11/11,16.05772834622584 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/12/04,13.30584166638167 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/12/04,12.510533333048338 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/01/05,22.539900000000006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/01/29,10.987549999785005 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/03/26,23.594316666666654 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/05,6.781700011547494 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/05,8.169791682814159 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/04/28,12.201208335538324 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/29,5.723229162081669 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/29,6.0953791623691655 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/30,9.731160001632489 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/07/09,8.604968180000013 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/07/08,13.371233333333324 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/07/08,13.330333333405818 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/07/01,3.477427250000004 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/06/22,9.360200000000004 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/06/22,4.464949999999994 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/10,5.284137138333328 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/09,9.981525013800006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/09,10.405550011500006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/09/03,2.7564749999999987 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/25,2.8792522500000057 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/25,9.455966667859151 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/09/27,7.324595825098343 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/10/05,2.748369425000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/12/07,22.348225000000006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/12/08,21.88613333333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/11/22,21.66638333333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/12/23,7.388791666666675 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/02/01,13.7707749998575 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/02/01,10.663274999762509 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/03/06,22.47810000000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/03/05,21.909850000000016 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/05/09,16.989400127960003 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/04/23,5.583606825142498 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/05/08,11.507038627300007 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/05/08,7.396133356333332 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/04/22,16.758158337528346 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/04/22,15.955933337218353 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/01,10.319381255550011 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/01,10.171481253250024 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/09,5.224092809119169 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/09,5.128442809074167 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/03,6.478277086023337 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/03,9.33162709182583 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/26,3.8520295549999934 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/08/04,13.034154166666674 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/08/04,15.55632916628416 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/28,10.621760419384175 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/08/05,2.9310719249999995 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/27,2.989500000000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/27,3.4882022500000023 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/05,6.123054549999997 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/05,6.462272730000002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/08/29,11.806790937097492 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/06,9.705212420769229 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/21,18.60308636333334 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/21,18.60308636333334 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/10/08,4.708562380769224 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/29,11.470283333285822 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/29,11.448483333285823 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/22,12.971024999999988 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/11/08,7.567632545552502 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/11/08,7.911976301620002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/10/24,6.429675000262488 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/12/11,20.700656250200005 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/02/21,22.177183333333343 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/03/07,21.66638333333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/03/07,21.66638333333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/02/20,12.90195833371833 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/04/01,13.741625000147502 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/02,16.064162138333348 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/02,13.05441668833334 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/04/25,9.014932961587508 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/10,2.764975000000005 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/10,3.029375000000008 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/03,6.290038639999995 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/27,10.168979180324175 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/06/04,17.226350000034998 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/26,6.8478665246666655 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/26,13.34180606666667 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/06/28,11.215694166856656 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/07/06,2.3499837500000016 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/06,8.844959090000005 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/06,8.692609090000005 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/07/30,8.879581810000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/31,9.863611360000007 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/22,4.881341668489171 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/22,18.54614583542836 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/09/08,17.628349999769988 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/23,12.896224999984986 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/09,9.136334094999992 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/09,10.888347619047613 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/09/23,10.532749998952497 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/09/23,7.808906666666663 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/10,10.429825000217496 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/11/10,4.882950804380945 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/11/10,4.939521269380945 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/11/03,6.176249995395011 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/25,11.777600000854996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/25,10.181250003670012 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/12/29,21.75304166666668 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/01/29,10.376091666666683 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/02/06,21.88613333333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/02/06,21.66638333333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/03/02,22.348225000000006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/03/02,22.348225000000006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/04/03,22.309808333333343 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/04/03,22.30029999935501 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/05/06,2.9016090900000013 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/06/06,13.276929189101654 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/06/06,13.631254194514156 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/02,6.422924995750012 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/07/24,18.330875 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/07/24,12.823725000617507 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/10,3.7707272999999937 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/07/25,3.248875000000005 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/10,4.048584586648571 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/10,3.75001943565024 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/25,18.23475001408751 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/25,17.955041680754174 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/11,3.38805 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/26,12.607270850098336 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/26,15.231650000199988 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/26,9.818399995299997 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/06,5.53726368771428 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/10/28,5.246649297714278 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/10/28,4.8346947427142775 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/09,3.0584120650000006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/10/29,2.58530741826923 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/29,10.401666666666676 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/24,8.307224999250026 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/24,8.698568749440026 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/21,3.405121230769232 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/21,2.586820349999998 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/01/08,21.848400000000016 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/02/26,10.824516667051672 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/03/30,22.26459166666668 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/06,12.234029362173334 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/06,11.854019887310006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/03/29,21.75304166666668 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/03/29,21.75304166666668 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/09,9.768540166666662 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/09,5.517429267435896 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/08,8.841908358680827 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/08,10.441861388047498 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/01,5.251732578333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/30,8.673235006899993 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/30,9.34120167586666 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/22,3.295125000000007 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/22,2.822450000000002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/25,2.89707725 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/06/29,4.649337300434991 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/11,11.058775007019989 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/11,10.290850004719982 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/03,6.726766670369151 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/03,6.457183334615817 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/06/25,3.913634099999992 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/06/25,4.134459099999991 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/28,3.280134942307691 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/10,11.2858613601675 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/10,7.787818180215006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/24,3.077545804395605 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/24,3.2674148588827814 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/29,3.4245317500000003 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/28,2.911050000047502 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/28,2.7728522500000023 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/10/09,6.59447499883501 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/30,18.404275000184988 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/22,3.721175000000004 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/21,5.593625000095002 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/21,5.342625000192503 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/11/09,5.505037378388275 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/11/08,4.0377111175 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/11/08,5.221863419999995 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/10/24,24.27742499999998 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/12/10,15.172775000190011 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/12/10,14.721543749522516 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/12/02,22.515633333333344 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/01/11,21.67155833333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/01/11,21.67155833333335 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/02/21,10.79253166633419 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/10,14.258249999952495 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/09,14.171958333285827 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/02,13.476466666476677 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/01,15.799849999999998 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/01,15.733374999999992 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/09,9.544027084763336 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/11,8.848950005987486 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/11,8.901333339320821 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/31,11.439348103380835 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/26,8.562657950000006 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/05,18.256783333500824 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/04,8.471095831873338 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/04,6.841822272702504 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/28,27.59955833352332 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/27,18.61632500230001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/27,19.885708333333337 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/22,2.906137728072498 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/06,2.472743000000003 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/06,2.6609817500000026 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/21,3.290125 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/05,20.74357916726919 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/30,2.6406500000000004 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/30,3.2777000000000047 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/23,2.46658868 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/22,3.8118083376283294 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/22,4.146554172029164 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/06,7.618693940047502 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/06,7.8628189400475 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/01,7.729102270119998 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/01,8.98225227043001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/31,5.443749999999995 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/31,5.494374999999995 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/23,2.3431847500000016 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/23,2.428659000000001 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/28,8.816356248765024 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/10/03,6.036396074666668 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/10/02,3.22039423076923 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/10/02,3.208244230769229 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/25,4.929870479999996 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/11/03,5.7935151266666605 +Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/11/03,5.333740126666662 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/01/29,22.26459166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/01/22,10.204525000000022 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/01/29,22.26459166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/01/22,10.204525000000022 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/03/02,22.348225000000006 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/03/02,22.348225000000006 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/04/28,4.583734095314998 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/06,4.657750000217494 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/04/28,4.583734095314998 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/06,4.657750000217494 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/06,19.442862500565003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/06,19.073737500755 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/30,8.032393749857512 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/29,9.32807500498498 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/29,8.530100005032489 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/22,6.001822729999995 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/06,19.442862500565003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/06,19.073737500755 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/30,8.032393749857512 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/29,9.32807500498498 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/29,8.530100005032489 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/22,6.001822729999995 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/07/08,14.894787499907498 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/07/08,14.870737500289993 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/23,8.227425000289996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/07/08,14.894787499907498 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/07/08,14.870737500289993 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/23,8.227425000289996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/09,6.89851608436107 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/09,8.368591677181666 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/02,20.355549999999983 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/10,5.699419231034224 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/09,6.89851608436107 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/09,8.368591677181666 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/02,20.355549999999983 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/10,5.699419231034224 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/03,12.898195258382962 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/11,2.636836925000001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/02,6.66855833381334 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/02,10.172356821110002 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/26,3.714579988461535 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/03,12.898195258382962 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/11,2.636836925000001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/02,6.66855833381334 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/02,10.172356821110002 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/26,3.714579988461535 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/26,10.750175003217478 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/26,10.69173333655081 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/10/04,3.722714885319878 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/10/04,3.714039885319878 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/27,3.2646684429487136 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/26,10.750175003217478 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/26,10.69173333655081 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/10/04,3.722714885319878 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/10/04,3.714039885319878 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/27,3.2646684429487136 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/06,6.741041657886676 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/05,2.3697767000000005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/05,2.399281325 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/06,6.741041657886676 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/05,2.3697767000000005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/05,2.399281325 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/29,3.0175159151424986 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/29,3.2703340950475006 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/22,8.575022111310238 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/12/07,2.14462475 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/12/07,2.83005139 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/29,3.0175159151424986 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/29,3.2703340950475006 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/22,8.575022111310238 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/12/07,2.14462475 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/12/07,2.83005139 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/01/08,3.918595504807695 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/01/08,12.335083333070832 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/01/08,3.918595504807695 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/01/08,12.335083333070832 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/02/26,9.823583333333348 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/03/05,21.675758333333352 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/02/26,9.823583333333348 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/03/05,21.675758333333352 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/05,14.844001251769996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/05,10.973874999647489 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/05,14.844001251769996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/05,10.973874999647489 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/30,7.85519471173916 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/21,7.1176636423725 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/21,7.0543386423725005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/08,3.2960280823076897 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/22,3.104500000000007 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/30,7.85519471173916 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/21,7.1176636423725 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/21,7.0543386423725005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/08,3.2960280823076897 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/22,3.104500000000007 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/31,5.112026899490828 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/31,5.088988638667496 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/31,5.112026899490828 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/31,5.088988638667496 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/03,5.724675005080001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/24,20.290816667126663 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/24,11.340091668456662 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/02,2.8346250000000053 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/02,2.482575000000001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/25,3.959202250000002 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/03,5.724675005080001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/24,20.290816667126663 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/24,11.340091668456662 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/02,2.8346250000000053 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/02,2.482575000000001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/25,3.959202250000002 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/04,2.867303811739164 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/26,4.139377777044409 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/26,4.101909972877742 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/03,3.394609099999995 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/03,7.552609000000003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/27,2.833367097664835 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/04,2.867303811739164 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/26,4.139377777044409 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/26,4.101909972877742 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/03,3.394609099999995 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/03,7.552609000000003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/27,2.833367097664835 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/05,3.665284099999992 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/27,3.5868499999999948 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/27,3.4634249999999955 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/04,3.56569621347833 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/04,4.590180308333325 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/28,4.948638461610956 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/05,3.665284099999992 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/27,3.5868499999999948 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/27,3.4634249999999955 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/04,3.56569621347833 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/04,4.590180308333325 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/28,4.948638461610956 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/07,3.021254549999997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/21,3.563390758333325 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/06,2.253009049999997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/06,2.231772674999997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/07,3.021254549999997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/21,3.563390758333325 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/06,2.253009049999997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/06,2.231772674999997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/08,4.968873621999992 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/23,3.534016038666665 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/07,2.4314815999999984 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/07,2.012277099999996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/08,4.968873621999992 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/23,3.534016038666665 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/07,2.4314815999999984 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/07,2.012277099999996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/10,6.381674996777514 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/09,3.9709545000725024 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/09,2.888659000167503 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/23,2.8402091394230764 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/23,3.096829120192308 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/10,6.381674996777514 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/09,3.9709545000725024 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/09,2.888659000167503 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/23,2.8402091394230764 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/23,3.096829120192308 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/01/02,22.451158333333343 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/25,12.238233333285828 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/25,11.899333336688327 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/01/02,22.451158333333343 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/25,12.238233333285828 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/25,11.899333336688327 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/03,22.00959166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/03,22.00959166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/03,22.00959166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/03,22.00959166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/20,20.383683333238366 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/20,20.383683333238366 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/03/23,23.469816666666656 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/03/23,23.469816666666656 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/09,14.460699999952494 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/03/23,23.469816666666656 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/03/23,23.469816666666656 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/09,14.460699999952494 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/05/03,3.11087738 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/24,8.905937509105005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/24,7.413950010760003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/05/11,5.485583335878329 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/05/03,3.11087738 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/24,8.905937509105005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/24,7.413950010760003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/05/11,5.485583335878329 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/06/11,20.800345833898344 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/06/11,22.036495834103352 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/06/11,20.800345833898344 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/06/11,22.036495834103352 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/05,2.999504500000003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/05,2.46535675 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/05,2.999504500000003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/05,2.46535675 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/07,15.643896028612485 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/06,8.893429175101671 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/06,8.890308340763339 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/30,2.9735413625 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/07,15.643896028612485 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/06,8.893429175101671 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/06,8.890308340763339 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/30,2.9735413625 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/30,4.56043333567083 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/30,10.822416667319157 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/23,13.573499997545 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/07,16.28259999999998 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/07,2.804625000000006 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/31,4.487703330769221 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/30,4.56043333567083 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/30,10.822416667319157 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/23,13.573499997545 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/07,16.28259999999998 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/07,2.804625000000006 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/31,4.487703330769221 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/10,7.009749998132511 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/01,3.033402279999996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/01,2.8840045499999967 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/24,4.768415911979166 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/02,3.0607016506410214 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/23,5.88847500088999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/23,5.400600000672489 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/10,7.009749998132511 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/01,3.033402279999996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/01,2.8840045499999967 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/24,4.768415911979166 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/02,3.0607016506410214 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/23,5.88847500088999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/23,5.400600000672489 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/11/11,4.189166812145 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/11/11,4.189166812145 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/03/26,21.014883333238355 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/05/29,13.523300004600005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/05/29,13.4983750023 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/05/30,4.12858189999999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/07/09,3.3241507836233324 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/06/30,21.773116666206665 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/06/30,22.66849166600667 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/07/08,22.92167727318251 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/07/08,22.81792727318251 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/07/01,11.644100000200002 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/06/22,4.187765925072493 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/06/22,4.1819873000724925 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/10,3.5893022999999933 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/09,3.802928930769225 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/09,3.5112051999999934 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/25,11.623958333333324 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/25,11.945933333333324 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/10/05,2.3804995615384588 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/11/22,16.103325000047484 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/01/01,24.44116666666665 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/03/06,22.26459166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/04/23,14.648005265251673 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/05/08,4.536855706438328 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/05/08,4.87557541826833 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/06/09,8.36465834028082 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/06/09,8.12471834028082 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/06/26,4.375099999999988 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/07/28,2.303985611354165 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/08/05,4.568952299999993 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/07/27,10.84731833956082 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/07/27,16.423226690794163 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/08/29,2.896872720434997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/09/06,4.019644330769224 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/09/30,8.66009999537749 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/10/08,4.946990139999994 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/09/22,3.911232203197497 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/11/09,3.229775000000006 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/10/24,4.5331150079999984 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/12/11,15.506000003450003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/11/25,4.6938449503205 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/02/05,22.137733333333344 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/02/29,21.75304166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/04/01,7.919125000785 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/04/25,6.757125004720001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/10,3.0255000000000063 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/10,3.036525000000009 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/03,3.394614149999996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/27,3.4525750018116605 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/06/04,11.719424999569991 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/26,3.475949999999993 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/26,3.7112280383333314 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/07/06,2.913661517307692 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/07/30,5.947434855794999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/07,4.089628008846147 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/31,18.447399997635 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/09/08,16.691433333398333 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/30,12.767749999354985 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/30,13.010158332903316 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/23,3.585807930769226 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/10/10,5.7822750005075 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/10/01,11.951291666651658 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/09/24,11.493870833523331 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/12/29,21.848400000000016 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/03/27,11.631106267302489 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/03/26,23.593699999999995 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/06/07,3.632002250000001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/06/23,4.360826126410249 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/08/02,6.465437495985007 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/08/10,5.138062257307684 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/07/25,3.139204500000001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/09/03,2.962301506739165 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/08/26,4.271971317307683 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/06,5.879437133620828 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/09,3.661951372999996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/05,2.152636199999997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/05,2.128913449999997 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/10/29,2.387447098626371 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/12/07,5.196625000239996 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/12/07,14.084574999999989 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/24,2.4219179499999983 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/24,2.4703564999999994 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/21,4.218251399999994 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/21,2.784595150000001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/01/25,13.058883332808332 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/02/26,22.14189166666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/03/30,9.65341666666668 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/05/09,3.5187392814058267 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/05/09,3.022481275 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/05/01,2.724354950000002 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/04/30,8.688058338078323 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/04/30,6.865000002444991 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/04/23,3.1686522500000045 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/06/02,11.51410833361832 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/05/25,5.4747750020174974 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/06/29,6.792750010650001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/11,6.7408939370866685 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/11,6.665039767740003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/04,8.11745000066999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/03,4.4200906415569 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/03,4.405790641439401 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/06/26,3.93792725 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/28,2.3775522500475 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/08/29,3.2118545000000025 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/08/28,5.903906820000004 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/08/28,7.463675000000003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/09,6.752649999925011 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/08,2.9560168250000007 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/09/30,17.98829166745165 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/09/22,2.556350000047499 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/31,14.939237501710007 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/31,14.776462502215011 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/26,3.422565645464404 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/11/09,2.398778737499999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/24,16.45227499999999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/12/02,3.152325713380835 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/12/02,3.3700500000475 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/11/24,3.143481849999999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/11/24,3.3086930115384607 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/12/27,11.925699999332515 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/03/09,21.66638333333335 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/04/10,11.965983333285823 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/04/02,22.49843333333334 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/09,9.72663958760086 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/09,9.923564586403351 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/31,6.912895450312501 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/31,7.2073954503125 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/26,7.988437876859169 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/06/05,12.30675833333332 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/28,22.36435833340585 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/06/22,3.196800000144999 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/07,11.693249999832483 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/06,4.489175000144994 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/06,4.237649999999994 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/06/21,2.763252250000006 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/05,12.97848936403084 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/30,7.150975002372501 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/30,6.430250000072506 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/23,3.654331864999991 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/22,4.572775000047503 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/22,3.8824250000724976 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/01,7.63008636036 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/08,2.730375000000005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/01,5.094697730047493 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/31,3.3942181599999945 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/31,3.431777259999994 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/23,2.703688550000001 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/23,2.7551249250000005 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/28,7.070699998275013 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/10/03,3.473648649999995 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/10/02,3.7855240499999936 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/10/02,4.052967274999993 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/25,7.429108990000003 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/11/11,2.9269750000000045 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/11/03,3.8287786049999952 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/11/03,4.081646879999993 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/10/27,3.281250000000004 +Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/11/28,3.030625000000005 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/02/06,21.867666666666683 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/02/06,21.867666666666683 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/03/10,21.88613333333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/02/22,21.848400000000016 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/03/10,21.88613333333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/02/22,21.848400000000016 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/04/04,21.78088333333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/04/04,21.78088333333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/04/28,8.855150002872508 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/06,3.5951628866666634 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/04/28,8.855150002872508 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/06,3.5951628866666634 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/06/06,6.570902494892496 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/30,8.062162493437514 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/06/07,12.71398333333332 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/29,2.88003573076923 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/22,5.352854966846663 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/06/06,6.570902494892496 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/30,8.062162493437514 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/06/07,12.71398333333332 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/29,2.88003573076923 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/22,5.352854966846663 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/08,5.975526142381671 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/08,5.975526142381671 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/09,3.627065954999993 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/02,5.000700004504995 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/24,19.454074999125 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/10,4.8503020987179415 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/01,6.873111365362502 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/25,14.297483333118318 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/09,3.627065954999993 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/02,5.000700004504995 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/24,19.454074999125 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/10,4.8503020987179415 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/01,6.873111365362502 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/25,14.297483333118318 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/03,3.105249621031668 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/25,3.097581849999998 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/11,2.977625000000001 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/02,3.525577250000002 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/03,3.105249621031668 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/25,3.097581849999998 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/11,2.977625000000001 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/02,3.525577250000002 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/10/05,20.79124999923502 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/26,11.41022500011999 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/10/04,2.712186325000003 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/27,5.005375000819997 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/10/05,20.79124999923502 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/26,11.41022500011999 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/10/04,2.712186325000003 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/27,5.005375000819997 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/05,3.4838934307692244 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/05,3.4838934307692244 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/29,7.098099994735006 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/22,3.647388892196071 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/30,14.37880833378582 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/29,7.098099994735006 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/22,3.647388892196071 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/30,14.37880833378582 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/02/02,12.116474999984996 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/02/02,12.116474999984996 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/02/26,22.47810000000001 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/02/26,22.47810000000001 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/05,11.083120004749992 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/05,11.083120004749992 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/21,10.599462511237506 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/08,14.50943333353333 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/29,2.861040350000001 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/21,10.599462511237506 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/08,14.50943333353333 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/29,2.861040350000001 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/23,2.8543020829383376 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/31,7.405370832020835 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/23,2.8543020829383376 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/31,7.405370832020835 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/03,10.02215002089 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/06/24,14.68605833333331 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/11,3.5440943307692243 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/02,3.2477000000000067 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/06/25,3.3208272500475 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/03,10.02215002089 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/06/24,14.68605833333331 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/11,3.5440943307692243 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/02,3.2477000000000067 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/06/25,3.3208272500475 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/11,6.201600002565005 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/04,3.230890157246662 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/03,2.6860998750000022 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/27,3.1747207030769222 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/11,6.201600002565005 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/04,3.230890157246662 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/03,2.6860998750000022 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/27,3.1747207030769222 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/05,3.5375868499999945 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/27,2.857965921714998 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/04,3.933143199999996 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/28,3.9959602308417215 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/05,3.5375868499999945 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/27,2.857965921714998 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/04,3.933143199999996 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/28,3.9959602308417215 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/07,3.227103038333333 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/21,2.4827387 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/06,2.507678205769229 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/29,13.175175000079994 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/07,3.227103038333333 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/21,2.4827387 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/06,2.507678205769229 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/29,13.175175000079994 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/08,3.910159863333328 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/23,3.721087891666664 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/07,3.085720168269229 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/08,3.910159863333328 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/23,3.721087891666664 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/07,3.085720168269229 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/10,4.623213826964167 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/09,4.680402693269221 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/23,3.47951923076923 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/10,4.623213826964167 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/09,4.680402693269221 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/23,3.47951923076923 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/26,24.070899999999988 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/25,21.67155833333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/26,24.070899999999988 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/25,21.67155833333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/02/19,20.67193333323836 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/03/08,16.09756477715249 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/02/27,21.77565833333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/02/19,20.67193333323836 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/03/08,16.09756477715249 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/02/27,21.77565833333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/03/23,21.07416666671419 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/03/23,21.07416666671419 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/05/03,6.06414999427501 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/04/24,11.01055833333332 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/05/03,6.06414999427501 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/04/24,11.01055833333332 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/11,8.463458331085839 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/03,5.996527249999998 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/11,8.463458331085839 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/03,5.996527249999998 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/05,2.1831657250000025 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/28,3.407508853846154 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/05,2.1831657250000025 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/28,3.407508853846154 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/29,19.68669166623665 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/06,2.405300000000002 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/30,2.848458336538462 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/29,19.68669166623665 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/06,2.405300000000002 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/30,2.848458336538462 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/08,3.1207121433333294 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/30,2.632373508478333 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/23,7.162249994675006 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/07,3.807610563076923 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/31,2.6329772500000024 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/22,11.831575000457494 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/08,3.1207121433333294 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/30,2.632373508478333 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/23,7.162249994675006 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/07,3.807610563076923 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/31,2.6329772500000024 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/22,11.831575000457494 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/01,4.883073770769224 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/24,2.920968938623331 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/02,2.7044767918956034 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/23,2.4173876750000023 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/01,4.883073770769224 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/24,2.920968938623331 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/02,2.7044767918956034 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/23,2.4173876750000023 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/11/11,4.359587000714278 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/25,2.549101300000003 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/11/11,4.359587000714278 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/25,2.549101300000003 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/12/04,7.758012501327496 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/01/05,22.26459166666668 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/12/29,22.26459166666668 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/05/05,6.375225004599994 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/04/28,12.964908335538334 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/05/29,6.5546458265533385 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/07/09,3.7403969766666574 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/07/08,11.380991674576649 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/07/01,4.765174999999989 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/08/09,3.3691522500474984 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/09/03,3.0369272500475004 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/10/05,8.628275000454998 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/12/07,22.76205 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/11/22,3.0827017630769227 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/02/09,9.768408333095849 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/02/10,21.48859166666669 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/02/01,21.675758333333352 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/03/06,11.524014999715016 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/03/05,21.88613333333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/04/23,11.579482531222489 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/05/08,6.407858343198322 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/04/22,11.950685430661665 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/06/09,5.916100000094991 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/07/03,12.974549999972494 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/06/26,6.427509094907504 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/08/04,11.52940833445084 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/07/28,8.934647917684183 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/08/05,2.3263484807692314 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/07/27,14.897433349505851 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/05,2.9576331779999974 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/08/29,6.381856242732511 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/06,2.795449500000002 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/30,5.8304096704025055 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/21,7.8579712133333315 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/10/08,3.3011499999999985 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/29,9.126050000337482 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/22,11.264483333953322 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/11/08,6.038999995595008 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/11/09,3.0840295 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/10/24,12.974383333918343 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/12/03,12.484272928084163 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/02/05,22.77201666661917 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/03/08,22.451158333333343 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/02/21,22.309808333333343 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/04/01,11.040725002204995 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/02,17.211333395433353 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/04/25,6.366459094999997 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/10,4.495131819999999 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/03,2.668725000047502 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/27,9.234475000547492 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/06/11,6.044550000362497 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/06/04,3.765007724999993 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/26,5.411942999999999 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/07/05,14.324650009200004 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/06/28,6.762187489372511 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/07/06,4.061120198717943 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/08/06,7.252700000527504 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/07/30,2.320833337921666 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/08/31,8.251170839740828 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/08/23,3.0781546249999963 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/10/09,3.331181834999995 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/10/10,14.145966666666668 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/11/10,4.10596304033333 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/11/03,13.713235672518328 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/10/25,7.055941671266671 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/03/11,11.096708333118336 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/03/02,22.34590833333334 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/04/03,22.44243333333334 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/04/04,20.79058333788586 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/05/06,3.6638151199999927 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/06/06,8.04393542099416 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/06/07,9.3725250144425 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/06/23,2.4205022500474995 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/07/24,17.893545834388316 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/07/25,4.3592576923076924 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/09/03,3.1418368925366305 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/08/25,17.636800000912494 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/09/11,4.039593615384615 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/09/02,4.263359853405833 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/08/26,3.075452250000001 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/11/06,4.281723631999997 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/10/28,7.210148483333322 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/10/29,2.3192506125 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/11/24,5.233755780769232 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/11/21,2.669802250000006 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/01/08,21.791766666666685 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/12/23,11.939193750557497 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/02/01,22.012833333333347 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/01/25,10.913916667051671 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/01/24,21.867666666666683 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/02/26,24.02516666666665 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/04/06,8.339708334980829 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/03/29,22.01263333333335 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/03/22,11.208083333238326 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/09,2.3928796250000004 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/08,10.54406668046666 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/01,3.9877041683991625 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/04/30,5.790175002727489 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/04/22,3.07326346153846 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/31,16.87197499976251 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/26,9.428699982757486 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/06/10,4.185645023196925 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/25,5.686275000119992 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/24,11.0667000004575 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/07/11,7.792275004817482 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/07/04,3.3153017691025624 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/07/03,8.33999500040501 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/06/26,3.331941130769224 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/06/25,4.046412123405823 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/07,6.9391749966250105 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/05,3.2319522500950053 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/04,12.39688333311832 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/07/28,2.8683250000000053 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/09/10,10.296112513680002 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/24,7.594449986195002 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/28,2.9654228299999983 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/09/22,15.472485416476674 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/10/08,2.9438545000000045 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/09/29,3.09221359 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/09/21,2.4003566000000025 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/10/31,19.90305833407334 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/11/09,2.50310189 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/11/08,2.1073248499999973 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/10/24,15.155016666666675 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/12/10,2.351308950000001 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/11/24,3.25431125 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/02/04,22.14189166666668 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/03/09,21.675758333333352 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/02/20,22.192374999690013 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/10,11.891183333238326 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/09,14.677399999952495 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/02,13.316274999737496 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/01,13.604324999857504 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/03/24,12.92065833351833 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/09,9.316000000785005 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/11,5.114900000000003 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/25,3.266225000000007 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/31,11.017718180820005 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/26,3.133246818144997 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/28,16.64651668525919 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/27,22.396000002467517 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/06/22,3.129925619739166 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/07/06,3.291499999999997 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/06/21,3.275859 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/08/05,3.510250000507497 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/07/30,5.230257584149164 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/07/23,4.393108385769227 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/07/22,4.884154169909163 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/06,3.8155053151449945 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/01,4.638082475714278 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/01,4.690350000072494 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/08/31,3.396178023333328 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/08/23,12.049708333523323 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/10/03,15.974420840423337 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/28,9.31142084843584 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/10/03,2.935379450000002 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/10/02,3.5535195000000037 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/25,3.237058249999995 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/11/11,3.5641000000000003 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/11/03,2.809201902499999 +Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/11/27,2.484167750000003 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/06,21.84966666666668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/06,21.84966666666668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/23,22.26459166666668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/22,14.190183333238345 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/23,22.26459166666668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/22,14.190183333238345 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/04/04,11.612450000095004 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/04/04,11.612450000095004 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/04/28,5.039450000119999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/06,7.806892431266667 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/04/28,5.039450000119999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/06,7.806892431266667 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/06,8.514914999427505 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/30,8.068764999477498 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/07,14.660824999784984 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/29,8.817742422995833 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/22,4.069975000554996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/06,8.514914999427505 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/30,8.068764999477498 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/07,14.660824999784984 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/29,8.817742422995833 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/22,4.069975000554996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/07/08,15.35288343354833 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/22,4.985837125641669 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/23,4.200359091759996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/07/08,15.35288343354833 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/22,4.985837125641669 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/23,4.200359091759996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/09,7.153025002727494 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/02,3.2423795605799985 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/07/24,7.703077495632494 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/10,4.3847340999999895 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/01,6.802292064219159 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/09,7.153025002727494 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/02,3.2423795605799985 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/07/24,7.703077495632494 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/10,4.3847340999999895 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/01,6.802292064219159 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/03,13.410055834945842 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/25,10.781212502847506 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/11,3.1598370507692293 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/02,7.102775000697514 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/26,4.319284263461531 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/03,13.410055834945842 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/25,10.781212502847506 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/11,3.1598370507692293 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/02,7.102775000697514 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/26,4.319284263461531 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/26,12.051414590415828 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/27,15.367858333405826 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/26,12.051414590415828 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/27,15.367858333405826 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/05,5.822120569999997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/05,5.822120569999997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/29,4.032546371999998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/22,16.323008334473332 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/12/07,2.2798406250000003 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/30,3.736431919999995 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/21,5.470652664090836 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/29,4.032546371999998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/22,16.323008334473332 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/12/07,2.2798406250000003 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/30,3.736431919999995 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/21,5.470652664090836 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/05,14.879900832475826 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/05,14.879900832475826 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/30,5.855116668441668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/21,13.951712505370006 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/08,4.745952290351665 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/29,5.090508336215831 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/22,2.8404750000000045 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/30,5.855116668441668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/21,13.951712505370006 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/08,4.745952290351665 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/29,5.090508336215831 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/22,2.8404750000000045 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/23,6.927079164181675 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/31,25.830933333618333 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/24,4.872975000819992 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/23,6.927079164181675 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/31,25.830933333618333 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/24,4.872975000819992 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/03,9.234937500167495 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/06/24,20.984325002395007 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/11,4.133431820239997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/06/25,4.102925898076922 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/03,9.234937500167495 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/06/24,20.984325002395007 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/11,4.133431820239997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/06/25,4.102925898076922 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/11,13.164350023912489 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/04,2.8516627279999973 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/03,7.911933348710819 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/27,3.916176130769226 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/11,13.164350023912489 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/04,2.8516627279999973 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/03,7.911933348710819 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/27,3.916176130769226 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/05,4.054213629999994 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/27,3.083549678161792 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/04,4.519693179999994 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/05,4.054213629999994 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/27,3.083549678161792 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/04,4.519693179999994 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/07,4.827437179380945 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/21,3.114100604666662 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/06,2.519777174999998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/29,16.996191666636665 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/07,4.827437179380945 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/21,3.114100604666662 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/06,2.519777174999998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/29,16.996191666636665 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/08,4.292591063666664 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/23,6.839020455 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/07,2.2121584499999987 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/31,3.194977250000006 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/08,4.292591063666664 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/23,6.839020455 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/07,2.2121584499999987 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/31,3.194977250000006 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/12/10,13.054991113178607 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/23,3.582924999999999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/12/10,13.054991113178607 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/23,3.582924999999999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/12/26,24.44116666666665 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/12/26,24.44116666666665 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/02/04,10.49676666635668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/02/04,10.49676666635668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/03/08,9.944541666476676 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/02/20,16.297241666619165 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/03/08,9.944541666476676 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/02/20,16.297241666619165 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/03/23,21.34328583328585 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/03/23,21.34328583328585 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/05/03,7.783558342990835 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/04/24,13.590650032200015 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/05/03,7.783558342990835 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/04/24,13.590650032200015 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/11,26.75938333361835 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/03,7.646208334620836 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/11,26.75938333361835 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/03,7.646208334620836 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/27,3.6414124983875023 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/07/05,22.003625000189984 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/28,4.821801208333334 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/27,3.6414124983875023 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/07/05,22.003625000189984 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/28,4.821801208333334 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/07,7.77783958280335 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/07/30,2.053876950000001 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/07,7.77783958280335 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/07/30,2.053876950000001 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/08,2.96164166639417 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/30,9.018077270482504 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/23,4.272843192319164 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/07,2.7973522500000065 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/31,10.3002250002175 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/08,2.96164166639417 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/30,9.018077270482504 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/23,4.272843192319164 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/07,2.7973522500000065 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/31,10.3002250002175 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/01,4.190802269999997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/24,8.204204540145007 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/02,2.5470236932692303 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/23,3.695891949999995 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/01,4.190802269999997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/24,8.204204540145007 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/02,2.5470236932692303 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/23,3.695891949999995 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/11/11,10.904388529047608 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/11/10,23.0487000001075 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/25,7.611410606666658 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/12/04,11.325125006927507 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/12/29,22.337341666666678 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/05/05,7.857835006947494 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/05/30,6.96238826234333 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/07/09,9.896100004792478 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/06/30,19.62716666666669 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/07/08,3.378963640192503 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/07/01,15.756375000477506 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/08/09,4.5212545 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/09/03,3.335450000000007 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/08/25,14.327800000072491 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/09/27,19.99770833333332 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/10/05,3.049543150000001 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/11/22,3.98372084615384 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/02/10,21.791766666666685 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/01/25,11.190358333718336 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/03/06,22.26459166666668 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/03/05,12.845258332855826 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/04/23,6.703392428333332 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/05/08,6.833725004599995 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/04/22,4.892134100119998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/06/09,21.15300833372334 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/03,11.277495835015836 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/06/26,3.326150039999995 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/11,18.655699999985004 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/04,12.610750000309997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/08/04,10.556306965630707 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/28,12.601158337790825 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/08/05,2.3527988133333344 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/27,21.71355835185336 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/05,3.126521966666662 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/08/29,4.128418180742501 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/06,3.361568689999996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/21,10.093631709047624 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/10/08,3.938927281631664 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/29,2.8809278249999988 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/22,14.14075416673916 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/11/01,6.088199995810008 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/10/23,9.210702971902974 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/11/09,4.636433389999994 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/10/24,3.1299077500000005 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/12/03,11.634372926156663 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/12/11,2.936327855769231 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/03/08,11.90934166657166 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/04/01,3.673019230769228 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/02,11.50257084679083 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/04/25,7.077662143333328 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/10,2.7243250000000034 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/03,12.264816715039167 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/27,6.888017423500839 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/06/11,6.178328414247497 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/06/04,4.217775000334993 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/26,13.05272500805001 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/07/06,3.89276591 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/07/29,18.578158333318317 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/08/31,3.87518409999999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/08/30,2.3374544999999998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/08/23,20.13295000004748 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/09/23,10.397700000602493 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/10/01,3.121531819999999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/11/03,3.427349999952505 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/12/29,21.66638333333335 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/05/06,4.805275002299996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/06/07,8.795500000000008 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/06/23,5.704276555509167 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/08/02,11.915258361290848 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/08/01,5.404950000072493 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/07/25,13.396614582785842 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/09/03,3.229766534999996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/09/11,2.9463999999999984 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/08/26,8.276443180240001 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/11/06,5.223489294047612 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/11/05,3.37279423076923 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/10/29,3.0125062233058606 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/11/24,2.2700634999999965 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/11/21,5.51413490333333 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/12/23,3.801536677884615 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/02/26,23.25183333333333 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/03/29,7.822758333333339 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/03/22,16.89742500023752 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/09,3.1675409349999963 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/09,2.6884286499999983 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/08,11.346466689786665 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/01,9.363841687511655 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/04/30,3.944843174999997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/04/22,4.327266603846146 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/31,12.2360499996475 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/25,11.5601999996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/24,6.402534858644169 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/07/04,12.956649996442506 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/07/11,6.331010995439998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/07/04,3.296620459999997 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/07/03,8.123182954497507 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/06/26,2.2975272500000035 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/06/25,3.117563499999999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/08/04,3.299100763333335 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/08/29,2.93980675 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/08/28,4.2517696199999895 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/10/09,3.650441693333329 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/10/08,2.630338769999999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/09/29,4.8812121719999935 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/09/22,9.655425001464994 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/09/21,3.0535921999999998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/10/31,6.772149992585013 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/11/09,3.167881789999999 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/11/08,2.6193237500000004 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/10/31,4.021286365072497 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/12/10,3.8944120899999968 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/12/02,11.6604499993 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/11/24,2.83898192 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/12/27,12.010958333190851 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/12/26,12.694833333670829 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/04/10,23.69627575882417 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/04/09,19.500058338070843 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/04/01,12.291875001292492 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/03/24,14.040041666571664 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/11,4.525825398043335 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/31,19.769441666884187 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/26,2.905781820072499 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/05,12.833233333453329 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/04,4.180143200119995 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/28,3.512012166739161 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/27,15.933200009962508 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/22,7.527343180217501 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/07,4.17509549007249 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/06,6.006462902274163 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/29,10.681374999999989 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/21,3.113881750000004 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/08/05,3.2582848479716624 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/31,4.547433336933335 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/31,8.976775000699995 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/30,5.464096972174164 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/23,3.9508818200724978 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/22,4.002400767199166 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/01,4.281203684047614 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/09,2.774675000000004 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/08,3.569506820072498 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/01,6.06332044 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/08/31,2.3758027500000023 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/08/23,17.909299999754996 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/28,8.076424996475009 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/10/03,3.6193387 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/10/02,5.4069895619999935 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/25,8.676100001157492 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/10/25,9.365221431151673 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/11/11,2.7089974500000005 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/11/03,4.774304639999998 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/10/27,3.168141532307689 +Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/11/27,4.886881749999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/02/06,21.75304166666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/02/06,21.75304166666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/02/06,21.75304166666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/02/06,21.75304166666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/03/11,14.343808333285825 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/03/02,11.918274999324996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/03/11,14.343808333285825 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/03/02,11.918274999324996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/04/28,5.805093755457507 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/06,8.71699167363916 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/04/28,5.805093755457507 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/06,8.71699167363916 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/06,8.615939999617504 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/06,8.042298332950839 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/29,14.152570834118332 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/29,14.008720834118332 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/22,4.597066377999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/06,8.615939999617504 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/06,8.042298332950839 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/29,14.152570834118332 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/29,14.008720834118332 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/22,4.597066377999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/07/08,16.34355416551917 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/07/08,15.99420416551917 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/22,8.05443166504167 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/22,7.603639998472499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/07/08,16.34355416551917 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/07/08,15.99420416551917 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/22,8.05443166504167 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/22,7.603639998472499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/09,2.547425001189998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/09,2.925475001357499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/02,17.732783333333327 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/10,4.860984090627499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/09,2.547425001189998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/09,2.925475001357499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/02,17.732783333333327 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/10,4.860984090627499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/03,11.051106250712522 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/25,3.683003637999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/25,3.87087864466666 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/11,5.599555461999991 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/02,15.488675000072506 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/02,19.754808333070823 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/26,3.0618250000000025 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/03,11.051106250712522 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/25,3.683003637999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/25,3.87087864466666 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/11,5.599555461999991 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/02,15.488675000072506 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/02,19.754808333070823 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/26,3.0618250000000025 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/05,5.20690459104761 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/26,7.54738560707667 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/26,7.420321215898335 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/04,2.7173088500000016 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/04,2.6171156000000027 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/27,3.4679648230769184 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/05,5.20690459104761 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/26,7.54738560707667 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/26,7.420321215898335 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/04,2.7173088500000016 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/04,2.6171156000000027 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/27,3.4679648230769184 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/05,2.5643799999999994 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/05,2.708159818269229 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/05,2.5643799999999994 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/05,2.708159818269229 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/08,5.382676382692301 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/29,7.630974266666659 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/29,5.942734843333326 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/07,2.961755715705124 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/07,3.5454341089743537 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/08,5.382676382692301 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/29,7.630974266666659 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/29,5.942734843333326 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/07,2.961755715705124 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/07,3.5454341089743537 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/01/08,16.143725000000003 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/01/08,16.143725000000003 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/02/10,23.67154166666665 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/02/10,23.67154166666665 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/05,13.570441680899169 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/05,9.32193333591833 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/05,13.570441680899169 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/05,9.32193333591833 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/30,3.143716698333331 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/21,12.77972502997251 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/21,12.44909170128668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/08,3.614680334999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/29,3.80169999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/29,3.33118412 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/30,3.143716698333331 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/21,12.77972502997251 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/21,12.44909170128668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/08,3.614680334999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/29,3.80169999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/29,3.33118412 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/31,6.085273108763337 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/31,6.1287231089983365 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/31,6.085273108763337 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/31,6.1287231089983365 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/03,18.398749999402497 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/24,5.521875001714998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/24,5.523200001714998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/11,12.98960833374333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/25,4.4206090899999975 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/03,18.398749999402497 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/24,5.521875001714998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/24,5.523200001714998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/11,12.98960833374333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/25,4.4206090899999975 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/11,12.51971481380998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/11,9.547996604781677 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/04,2.9938377279999964 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/03,3.3416394233333246 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/03,3.2238166783333257 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/27,3.2072884999999984 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/11,12.51971481380998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/11,9.547996604781677 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/04,2.9938377279999964 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/03,3.3416394233333246 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/03,3.2238166783333257 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/27,3.2072884999999984 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/05,3.216740909999995 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/27,2.6848295499999977 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/27,8.847183326666679 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/04,3.3954613899999977 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/04,3.5611931999999955 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/05,3.216740909999995 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/27,2.6848295499999977 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/27,8.847183326666679 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/04,3.3954613899999977 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/04,3.5611931999999955 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/07,8.408064393333326 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/21,3.258157588333329 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/06,2.170702187499997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/06,2.455681749999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/29,12.729008334698326 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/07,8.408064393333326 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/21,3.258157588333329 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/06,2.170702187499997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/06,2.455681749999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/29,12.729008334698326 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/08,8.048096228333325 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/23,2.9781084803333333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/07,2.800399561538461 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/07,2.386483661538458 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/08,8.048096228333325 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/23,2.9781084803333333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/07,2.800399561538461 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/07,2.386483661538458 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/10,6.803199997330011 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/09,3.719100000000006 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/09,3.801050000000006 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/23,4.127684000000001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/23,2.0807847375 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/10,6.803199997330011 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/09,3.719100000000006 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/09,3.801050000000006 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/23,4.127684000000001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/23,2.0807847375 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/02/03,9.409041666666678 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/02/03,9.34754166666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/02/03,9.409041666666678 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/02/03,9.34754166666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/03/08,14.398066666571674 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/03/08,14.398066666571674 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/08,12.087749999784997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/08,12.209999999569996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/09,14.18549166661916 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/08,12.087749999784997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/08,12.209999999569996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/09,14.18549166661916 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/24,9.956825002347475 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/24,10.134966666714144 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/05/11,14.45411666723666 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/24,9.956825002347475 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/24,10.134966666714144 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/05/11,14.45411666723666 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/11,8.478144999712503 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/11,8.347091666189169 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/03,22.68361060821333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/03,22.448443941546657 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/11,8.478144999712503 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/11,8.347091666189169 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/03,22.68361060821333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/03,22.448443941546657 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/05,2.8233784983333305 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/05,3.4526787399999925 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/05,2.8233784983333305 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/05,3.4526787399999925 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/29,13.875899999615006 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/06,4.720131820409997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/06,6.957616671459169 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/30,2.141192850000001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/29,13.875899999615006 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/06,4.720131820409997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/06,6.957616671459169 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/30,2.141192850000001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/30,6.792955305214998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/30,6.990855305214999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/23,21.284994168929188 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/07,4.390768179999992 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/07,2.534609120000001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/31,3.243075000000005 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/22,9.706200000217498 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/30,6.792955305214998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/30,6.990855305214999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/23,21.284994168929188 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/07,4.390768179999992 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/07,2.534609120000001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/31,3.243075000000005 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/22,9.706200000217498 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/10,9.070905925649994 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/01,3.336265156666661 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/01,3.2598742466666617 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/24,6.496777270000007 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/02,5.160594561538459 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/23,12.473033339320818 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/23,11.732500008287484 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/10,9.070905925649994 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/01,3.336265156666661 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/01,3.2598742466666617 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/24,6.496777270000007 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/02,5.160594561538459 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/23,12.473033339320818 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/23,11.732500008287484 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/11/11,10.515791562380938 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/25,4.10749019 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/25,11.234027269999988 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/12/04,13.480291813574182 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/12/04,15.37251669656667 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/01/29,15.21441496803916 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/01/29,15.468421218229157 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/05,2.8754967499999986 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/05,2.9496967499999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/29,4.911612492044282 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/29,4.936087491661781 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/30,5.6245000025400005 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/07/09,4.3373749999999855 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/06/30,19.95300000003998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/06/30,19.08555833316081 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/07/08,18.81543333333334 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/07/08,17.50195833333333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/07/01,17.933470833405828 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/06/22,3.145143124999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/06/22,3.1117181249999977 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/10,3.81945606166666 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/09,6.069075000047499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/09,5.620550000047504 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/09/03,2.712975000000006 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/25,6.539971999019997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/25,5.078951522435831 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/09/27,7.903049995752504 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/10/05,4.225266270769227 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/12/07,24.072216666666648 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/11/22,2.790340749999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/01/01,7.697349998330014 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/03/06,22.351800000000008 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/02/26,21.67155833333335 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/05/09,4.415095830593335 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/04/23,13.754024149722492 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/05/08,10.365750023047491 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/05/08,10.132833358680829 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/04/22,13.709133350255843 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/04/22,12.147741712504176 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/10,3.970100020144992 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/01,9.353874999392527 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/01,8.751999999487522 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/09,5.911699271447494 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/09,4.388279947815828 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/07/03,7.365887275000009 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/07/03,18.7319375 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/26,3.678862727999991 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/07/04,9.692375000237488 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/08/05,3.080091980769228 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/05,3.512559694666661 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/05,2.987228647999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/08/29,4.8119825804325 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/06,2.2705202000000035 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/21,7.994865910072499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/21,8.1091659100725 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/10/08,6.433099999999995 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/22,14.230400000799987 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/11/08,6.633858333533339 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/11/08,6.741558333533338 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/10/23,8.557024169306654 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/10/23,6.822177118683332 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/10/24,2.608855000000002 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/02/29,12.756166666804166 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/02/20,14.454649999737509 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/02/20,14.170999999737507 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/04/01,11.900547916794162 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/02,4.793673359666662 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/02,7.224304421333328 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/04/25,5.925117446666665 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/10,12.155649999154996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/10,7.281074995439997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/03,6.910278033333324 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/27,3.030961389999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/06/04,9.656300009677487 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/26,4.395586369999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/26,6.241726516666665 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/07/06,2.2180063150000024 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/08/06,14.944691666739168 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/08/06,14.851308333550842 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/07/30,3.5239727201449966 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/08/07,18.871508333398346 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/08/31,8.956820450000007 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/09/08,23.535833333333347 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/10/09,4.18876304033333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/10/09,3.926498646999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/09/23,8.96384999696 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/09/23,9.095424995542498 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/10/10,10.566019230841723 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/09/24,15.119900000072482 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/11/10,8.53957046166666 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/11/10,9.99852185904761 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/11/03,5.394274998665005 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/12/29,3.242750000000003 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/02/06,21.84966666666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/02/06,21.75304166666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/03/02,22.309808333333343 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/03/02,22.30574166666668 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/05/06,2.713191100000003 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/06/06,22.43260833338084 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/06/06,22.37269242561751 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/06/07,4.963408333570836 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/05/29,16.18473333361833 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/05/29,15.839883333428329 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/06/23,12.071883333533323 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/09,15.058320833238328 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/09,15.506429166666663 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/07/24,14.095025011834984 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/07/24,14.093891678549152 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/10,5.097375000529993 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/07/25,2.8015250000000047 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/25,9.020527270192504 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/25,9.296027270192502 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/26,3.4035545000000007 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/09/26,4.058431549766546 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/09/26,4.972915912792501 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/06,8.048209739047616 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/10/28,6.81467499733001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/10/28,6.193249995150009 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/09,4.100679166954161 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/10/29,4.366942978205127 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/12/07,12.627175000405009 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/12/07,10.46704999817999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/24,2.163488499999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/24,2.4053657499999974 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/21,6.0717909499999925 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/21,4.905918089999995 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/02/01,22.34590833333334 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/02/26,11.212624999785003 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/03/30,21.57322500000001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/06,12.34299166775166 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/06,12.950116667156664 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/03/29,21.791766666666685 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/09,3.575423384666661 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/09,6.287955499999989 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/08,5.7670530460699965 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/08,5.702494716903329 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/01,5.422156824999991 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/30,4.506474999999999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/30,4.590100000000001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/22,4.012425000000007 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/22,3.7285250000000074 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/25,4.283075000047499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/24,4.980661368779165 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/24,7.255237882037485 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/06/29,5.674875001980001 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/11,10.511104163271671 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/11,9.869670832305836 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/03,12.990158333405832 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/03,13.05951666704666 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/06/26,5.287975004695007 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/06/25,2.966578799999997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/06/25,3.3629864499999966 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/28,2.935302250000002 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/10,8.099935604223338 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/10,8.116368180745004 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/24,3.030084278113553 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/24,3.140657166575092 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/29,5.03682500101249 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/28,2.784680114999999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/28,2.3675460625000007 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/10/09,9.393149999239991 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/10/08,10.15102500092998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/30,17.838391666619145 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/29,3.937442939999997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/29,4.5046146019999975 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/22,4.467233301923071 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/21,3.910597739999994 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/21,4.3857613649999925 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/10/31,10.85124999793 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/09,5.249911369999994 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/08,2.163356699999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/08,2.2121816249999977 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/10/24,24.27742499999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/10,2.914022650000003 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/10,6.087902349999991 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/02,3.20395 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/02,7.2926522 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/24,3.520338249999999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/24,4.295637749999998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/26,10.45333333333334 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/02/27,22.539900000000006 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/02/21,10.759575000537511 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/02/20,10.758803320869228 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/03/26,24.44116666666665 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/04/10,11.967941668871658 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/04/09,14.08581666661916 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/04/01,12.992308333238334 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/04/01,12.758283333238335 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/09,10.181189585610836 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/11,22.19157499946251 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/11,16.561866666596664 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/31,7.434486360312501 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/26,3.9800930514058273 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/05,14.300608334455829 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/04,3.306400000000007 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/04,3.1328750000000043 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/28,21.18860417171918 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/27,13.31551917456417 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/27,12.84419395263416 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/22,6.586486360772501 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/07,7.017450758768331 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/06,5.971650000262499 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/06,5.305575000094998 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/21,5.083573102564097 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/05,4.349235347265111 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/31,5.013301809102558 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/30,6.471599249503333 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/30,6.563610616767502 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/23,9.392580313333342 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/22,9.418883351878325 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/22,13.138566696639176 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/01,15.61092500000002 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/08,19.318699999784968 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/01,10.58310909019 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/31,9.078858337933326 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/31,10.553975009199991 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/23,3.850746939999997 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/23,4.239520539999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/28,6.674774998127511 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/10/03,5.8239787916666685 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/10/02,5.043490969999995 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/10/02,4.328846966666662 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/25,4.074402279999995 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/11/11,2.6684758000000017 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/11/03,4.988915969999996 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/11/03,5.012209174999999 +Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/11/28,2.540600000000003 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/02/06,23.96396666666665 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/04/26,16.07055237105584 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/05/04,3.2031545000000063 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/04/27,7.023736369195834 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/06,5.567216669314173 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/05,3.0998250000000063 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/05/29,3.5136340999999978 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/08,10.318708342505822 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/29,6.0783999938300095 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/22,2.7867287330725 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/07,23.21439166716168 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/21,6.007759615457105 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/08/09,17.30653195168194 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/31,4.731656952191665 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/24,3.088560621666664 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/08/01,3.212929499999999 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/23,5.538487516124166 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/08/25,18.186306113606094 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/09/09,9.788824999999996 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/09/02,7.370390882355195 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/09/26,5.691728148554404 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/10/11,2.9568672799999987 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/10/04,5.859759965481545 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/09/25,7.255024999999996 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/11/04,7.120736354999992 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/11/05,11.590800000000009 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/11/29,4.195266904415003 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/11/21,2.8216665049999987 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/01/07,11.567294861158596 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/04/05,10.952752387994986 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/03/27,4.573006540739401 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/04/21,6.463047735142494 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/05/23,11.301866665926669 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/05/31,2.1206988350000024 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/06/24,3.846509089999999 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/07/09,7.8330598581349955 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/07/02,2.8661567500000014 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/06/23,4.428325000262499 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/11,11.458902087363334 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/02,6.08539999961751 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/07/26,12.643400018895012 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/10,7.051177270217501 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/03,2.6100942507692326 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/03,4.829309099999999 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/27,7.17276137 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/11,6.887991670774154 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/04,13.039332307022296 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/26,11.463883337253336 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/10/05,8.606964373405823 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/28,9.082553793333323 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/10/06,4.292776479670327 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/27,3.4066277894358943 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/11/07,5.814785782692306 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/12/09,8.001700000000001 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/01/02,6.027099999355007 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/12/25,7.555199996714997 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/02/03,5.834099998185014 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/02/27,2.962660195 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/04/08,14.608333373310822 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/04/24,6.779757588333326 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/04/23,6.191139984871788 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/02,5.543449999760007 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/10,4.461063499999998 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/03,4.381814787084159 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/07/04,6.956350000732496 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/27,12.810548196554448 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/07/05,3.422016540072497 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/26,2.8211750000000038 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/07/29,14.980825000189991 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/08/06,4.1613295000725 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/08/30,11.926387499785 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/08/22,14.125908352175824 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/10/01,9.04456060340584 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/09/22,19.848106822299997 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/09/30,4.395194230769233 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/09/23,15.566011120501098 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/10/24,4.191061009462498 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/10/25,3.2152060448717954 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/12/04,10.30874583314834 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/12/03,2.61605225 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/04/11,9.335590890940834 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/04/10,2.750550000000004 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/05/05,3.911796661538455 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/05/29,3.6545257633333312 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/05/28,6.94060833339334 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/07/07,6.419063640753336 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/06/30,12.61676463846834 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/06/21,5.615249999712509 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/07/08,6.600228009166663 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/06/29,10.27110000011751 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/06/22,16.55802916666665 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/08/09,20.23790002300001 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/09/02,7.290866664861685 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/08/24,16.779989861063605 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/09/01,9.110975000119996 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/08/25,9.684949998022494 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/12/07,12.46777715285084 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/02/09,11.25039166725167 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/02/08,4.2082919855769205 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/03/28,12.08833333351833 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/04/30,9.494868750590015 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/05/08,4.531945445 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/06/08,3.4792810616666623 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/06/01,15.893516666714198 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/06/09,2.8392000000475046 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/07/10,13.925829171369172 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/07/03,4.144174982499998 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/06/25,4.76357739911936 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/08/11,7.431305299726667 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/08/04,5.779881249555002 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/07/26,12.380593750020005 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/08/03,15.36803958717332 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/07/27,12.286038638605003 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/05,25.48297000000001 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/04,15.949508361080834 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/28,16.607077569393347 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/21,13.292882469047598 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/29,11.039186359999997 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/10/23,11.706272085253318 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/11/23,12.092698471666647 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/02/20,21.75304166666668 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/05/02,9.535256056666666 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/05/10,12.380391665026668 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/05/26,6.32769408199999 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/07/05,4.732969698813332 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/07/04,2.993131750000003 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/08/06,9.770457580000004 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/08/05,13.765075000119998 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/08/22,14.686361949381949 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/09/06,5.475312888152497 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/08/30,9.035420455 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/10/09,12.892657363458609 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/10/08,10.10582502153499 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/09/22,8.112354103107487 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/11/10,6.544452915714277 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/10/25,11.227029184881667 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/11/09,5.1849253987179456 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/04/03,14.24057499502751 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/04/02,18.07569168555168 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/06/06,12.380724999905016 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/05/29,4.410100000144994 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/07/07,8.809077289999996 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/06/21,8.541049997867502 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/07/24,21.007333333333328 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/08/08,13.625546176081668 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/07/23,3.386030361666664 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/10,17.769708372433353 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/08/25,13.228583352500824 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/09,4.645495569492383 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/02,2.674544230769235 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/08/24,4.7281818199999925 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/26,5.578001516714169 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/10/11,6.465488509999997 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/25,26.563983354223343 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/10/28,12.157132781512775 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/11/05,7.260812096666658 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/11/24,6.11433173717948 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/11/21,5.227606820167498 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/02/24,13.932960417001686 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/04/05,11.967791717314167 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/03/29,15.295519230769225 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/03/28,7.660599995165003 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/05/08,4.235099999999996 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/04/30,3.749740919999994 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/04/29,3.7490882675283306 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/04/22,3.5741750000000074 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/06/05,2.8887619746666644 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/05/31,3.03433712898583 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/06/08,8.667325000167498 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/05/31,5.238081066234168 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/05/24,13.482400036947492 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/09,10.967800008333333 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/04,8.005033331568342 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/11,14.005108390880844 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/10,6.396775000714983 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/03,5.648416671314161 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/02,8.173092053138332 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/06/25,3.029723936538461 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/06/24,4.076614314743587 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/07,12.278402499985004 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/11,17.67430000015501 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/03,7.985024253333323 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/09/10,10.172182570000004 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/28,26.348291675914155 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/27,3.73112614307692 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/10/02,6.545920827863344 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/10/06,5.583467442104162 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/09/21,23.361927796367805 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/11/05,5.083748220203335 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/11/08,6.702270744102562 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/11/07,3.165017339999997 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/10/30,4.08994167628205 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/10/22,10.337493929999994 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/12/10,7.145271071025633 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/11/24,4.4948250024424965 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/01/11,7.901524998695001 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/12/26,16.966150000237516 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/12/25,12.35719166666666 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/02/04,10.24547499978501 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/02/20,12.657641666666668 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/04/09,6.708709644871788 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/04/08,4.944584099999997 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/04/01,5.000261449999994 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/09,11.15584583435586 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/11,10.195354529999989 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/10,14.863035057897491 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/06/05,6.718077082985846 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/31,5.329638256951675 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/06/04,6.282962504476664 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/06/03,7.837808332185842 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/27,11.798494588458318 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/26,3.716150000000003 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/06/22,9.72333333289835 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/07/06,11.071041674324162 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/07/05,11.169832789067769 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/07,6.555025000072497 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/06,3.421279659999996 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/07/30,3.4179204499999964 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/07/22,3.723175000000002 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/09/06,8.286159447604433 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/09/01,8.100959090047507 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/09/08,7.841000000264999 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/31,3.0341263149999964 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/23,4.06143854230769 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/22,7.586900004999998 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/10/08,10.29550547628296 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/10/03,8.218970875723334 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/09/28,20.362291667191663 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/10/02,4.03350196538461 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/11/03,3.54460101923077 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/11/02,3.1772217730769223 +Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/11/26,3.517725000047497 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/01/22,23.479458333333323 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/06,21.791766666666685 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/01/22,23.479458333333323 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/06,21.791766666666685 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/23,22.407050000000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/23,22.373925000000007 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/22,23.1518 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/23,22.407050000000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/23,22.373925000000007 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/22,23.1518 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/03,12.049524999785 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/11,9.582274999380008 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/03,12.049524999785 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/11,9.582274999380008 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/28,6.703049992725012 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/28,6.47547499212501 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/06,7.741358335705819 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/06,6.545125002444996 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/28,6.703049992725012 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/28,6.47547499212501 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/06,7.741358335705819 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/06,6.545125002444996 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/06,8.164901131842493 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/30,6.941978841389165 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/30,7.053053841251661 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/07,13.53265833333332 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/07,14.267433333333315 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/29,4.322613264007498 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/22,3.143950919999998 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/22,3.461431820000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/06,8.164901131842493 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/30,6.941978841389165 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/30,7.053053841251661 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/07,13.53265833333332 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/07,14.267433333333315 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/29,4.322613264007498 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/22,3.143950919999998 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/22,3.461431820000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/07/08,9.35559166329667 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/22,10.476264583623331 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/30,15.390424999540002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/07/08,9.35559166329667 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/22,10.476264583623331 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/30,15.390424999540002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/09,2.929958361666664 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/02,6.914728032803335 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/02,6.750703032755837 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/07/24,15.6963 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/10,20.002924999569988 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/10,4.226284091424998 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/01,3.4664045400000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/09,2.929958361666664 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/02,6.914728032803335 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/02,6.750703032755837 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/07/24,15.6963 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/10,20.002924999569988 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/10,4.226284091424998 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/01,3.4664045400000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/03,11.415703526919996 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/03,11.316935608655832 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/25,2.9732256296666644 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/11,3.9703953163461567 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/11,3.3376998115384606 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/02,3.157327250000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/26,2.839152250000006 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/26,2.8346250000000053 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/03,11.415703526919996 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/03,11.316935608655832 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/25,2.9732256296666644 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/11,3.9703953163461567 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/11,3.3376998115384606 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/02,3.157327250000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/26,2.839152250000006 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/26,2.8346250000000053 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/05,9.645829167616686 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/05,9.86586250038002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/26,4.412400387878333 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/04,10.5983886250725 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/27,3.0230610240384608 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/27,3.105100855769229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/05,9.645829167616686 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/05,9.86586250038002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/26,4.412400387878333 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/04,10.5983886250725 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/27,3.0230610240384608 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/27,3.105100855769229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/05,2.590399930769229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/05,2.590399930769229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/22,3.690891756923075 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/22,3.587756430384612 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/12/07,2.637975000000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/30,3.80320000012 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/30,3.696050000119997 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/21,3.5791545499999984 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/22,3.690891756923075 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/22,3.587756430384612 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/12/07,2.637975000000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/30,3.80320000012 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/30,3.696050000119997 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/21,3.5791545499999984 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/02/26,22.337341666666678 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/02/26,22.26459166666668 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/03/05,10.498574999427513 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/03/05,10.856474999690017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/02/26,22.337341666666678 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/02/26,22.26459166666668 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/03/05,10.498574999427513 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/03/05,10.856474999690017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/05,6.367959099999992 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/05,6.367959099999992 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/30,3.225702433666665 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/30,3.2364842536666654 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/21,4.033982280999994 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/29,5.154397724999998 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/22,3.158200000000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/22,2.755300000000004 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/30,3.225702433666665 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/30,3.2364842536666654 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/21,4.033982280999994 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/29,5.154397724999998 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/22,3.158200000000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/22,2.755300000000004 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/23,7.433967310293562 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/31,3.877879171461664 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/24,3.833818179999992 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/24,6.503617423405846 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/23,7.433967310293562 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/31,3.877879171461664 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/24,3.833818179999992 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/24,6.503617423405846 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/03,8.032808354128333 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/03,6.481016673851672 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/24,7.525370827223328 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/11,6.429500000409989 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/11,5.008975000457493 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/25,3.0948323807692306 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/25,3.22757654326923 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/03,8.032808354128333 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/03,6.481016673851672 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/24,7.525370827223328 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/11,6.429500000409989 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/11,5.008975000457493 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/25,3.0948323807692306 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/25,3.22757654326923 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/11,10.755829175461662 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/04,2.5137091000000007 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/04,2.476085600000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/03,2.6750540548076924 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/27,3.320127269999999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/27,2.8560026250000017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/11,10.755829175461662 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/04,2.5137091000000007 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/04,2.476085600000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/03,2.6750540548076924 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/27,3.320127269999999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/27,2.8560026250000017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/05,3.114038461538461 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/05,3.539331061666661 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/27,2.696175758333332 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/04,2.4456522250000017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/28,13.9981125000725 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/28,14.627687500310005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/05,3.114038461538461 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/05,3.539331061666661 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/27,2.696175758333332 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/04,2.4456522250000017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/28,13.9981125000725 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/28,14.627687500310005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/07,6.472026564380943 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/07,2.616699861405833 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/28,19.738685833903357 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/21,4.319172622380946 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/21,3.2568371183333285 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/06,2.771646268269229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/29,2.795079805769229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/29,2.8843286365384597 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/07,6.472026564380943 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/07,2.616699861405833 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/28,19.738685833903357 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/21,4.319172622380946 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/21,3.2568371183333285 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/06,2.771646268269229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/29,2.795079805769229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/29,2.8843286365384597 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/08,3.202705952999996 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/08,3.2372636649999977 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/23,4.8930409050474974 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/23,4.327522725095 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/07,3.3232933557692315 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/08,3.202705952999996 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/08,3.2372636649999977 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/23,4.8930409050474974 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/23,4.327522725095 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/07,3.3232933557692315 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/12/10,5.794450000400007 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/12/10,5.544124999540006 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/12/10,5.794450000400007 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/12/10,5.544124999540006 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/28,13.412433333190831 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/20,20.247183333238368 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/20,20.207908333238368 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/28,13.412433333190831 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/20,20.247183333238368 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/20,20.207908333238368 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/08,22.27547500000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/03/23,22.451158333333343 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/09,14.274683336973323 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/08,22.27547500000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/03/23,22.451158333333343 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/09,14.274683336973323 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/03,6.08832499518001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/03,6.210099995610011 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/24,7.758597729999999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/11,2.731187175000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/11,2.5854935750000023 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/03,6.08832499518001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/03,6.210099995610011 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/24,7.758597729999999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/11,2.731187175000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/11,2.5854935750000023 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/11,9.260049997970006 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/11,9.260049997970006 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/05,2.585088450000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/28,3.556550000000008 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/28,3.213350000000009 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/05,2.585088450000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/28,3.556550000000008 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/28,3.213350000000009 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/07,14.01127083445833 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/07,13.742262501172496 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/29,20.80034166622165 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/06,2.6053750000000004 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/30,2.2441339499999997 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/30,2.6722140432692303 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/07,14.01127083445833 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/07,13.742262501172496 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/29,20.80034166622165 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/06,2.6053750000000004 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/30,2.2441339499999997 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/30,2.6722140432692303 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/30,3.9769088314344048 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/30,3.9769088314344048 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/10,8.298666660446676 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/01,3.149094649999995 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/24,6.471116663333334 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/24,6.260927270000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/02,3.0490274611263737 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/02,3.038751829395604 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/23,2.6016953500000035 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/10,8.298666660446676 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/01,3.149094649999995 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/24,6.471116663333334 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/24,6.260927270000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/02,3.0490274611263737 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/02,3.038751829395604 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/23,2.6016953500000035 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/11/11,5.5110992977142805 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/11/11,5.143112176047614 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/11/10,2.057197650000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/12/04,3.2221874999725038 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/01/29,9.997641666851674 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/05/05,10.584475002300003 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/05/29,4.54878841299178 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/05/30,4.661750000000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/05/30,3.528796399999996 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/07/09,3.789905318405828 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/07/09,3.807600768405828 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/07/01,6.766375000000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/07/01,3.092300000047502 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/06/22,3.1489132807692304 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/08/10,3.544116561666659 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/08/10,3.5154506716666587 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/08/09,4.901925000000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/10/05,4.167055703205127 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/10/05,4.936874428846152 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/11/22,10.913916666851671 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/11/22,11.109291666651671 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/12/23,11.22756666666668 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/02/09,12.998741665991664 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/02/01,21.908183333285848 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/01/25,13.003799999522496 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/01/25,21.791766666666685 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/03/06,22.26459166666668 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/03/06,22.26459166666668 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/02/26,21.867666666666683 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/02/26,21.867666666666683 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/04/23,7.487689393333333 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/04/23,7.481689393333332 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/05/08,5.171833336108327 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/04/22,2.072097599999997 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/10,11.821175000219997 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/10,9.21177499395249 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/01,8.45882499957001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/09,2.2619976999999984 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/26,3.660110606666657 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/26,3.821749999999988 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/07/04,15.05594999999998 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/04,8.8920041847675 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/05,2.263716667307693 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/05,2.526654114102563 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/07/27,6.253249245965838 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/05,3.0442113999999982 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/29,3.964752270167503 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/29,4.534427270192498 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/06,2.8390626865384605 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/06,3.0276470480769246 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/21,6.962524236666667 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/10/08,2.40993831153846 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/10/08,3.4050864044871743 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/29,15.862858333023333 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/11/08,7.470475000112512 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/10/23,6.5855795652175 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/12/11,13.605091666786665 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/12/11,3.060402249999999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/11/25,22.243191666904185 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/11/25,18.563281252712525 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/03/08,12.74819166661917 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/02/28,22.30574166666668 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/02/21,22.476608333333346 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/02/29,21.838800000000013 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/02/20,21.78088333333335 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/04/01,16.503325000190006 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/04/01,13.890875000237507 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/02,3.823984570999996 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/04/25,7.191103033478335 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/04/25,7.137378033478333 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/03,2.746229500000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/03,4.543205353333326 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/27,3.427559095072497 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/27,3.372965151739164 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/06/04,2.435375000047498 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/06/04,2.389227249999999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/26,2.792618150000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/05,14.045633356428349 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/06,2.6742083557692298 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/06,3.102024293269229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/06,13.41620833333334 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/30,6.26564242915917 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/30,6.148767429231669 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/07,3.350879500095004 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/07,12.520041666866645 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/31,14.435404166856667 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/31,12.053470833428348 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/22,2.7073954503374984 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/08,6.2954250012224975 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/08,7.958250000794992 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/23,4.304968179999993 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/23,2.9505812500000017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/10/09,5.256091565714279 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/23,9.101155303769168 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/10/10,3.000900000000003 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/10/01,3.0074473730769227 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/24,11.66925000234751 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/24,5.907675000309999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/11/10,10.335994592380942 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/10/25,10.21900832976334 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/01/29,22.67296666666667 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/01/30,21.867666666666683 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/03/02,22.26459166666668 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/04/03,13.014841665991666 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/03/26,18.486975000047483 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/05/06,2.456081750000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/05/06,2.4740067500000005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/06/07,3.1406590000000016 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/06/07,3.5856907115384637 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/05/29,18.542916668066663 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/06/23,2.576465820000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/06/23,3.2192397949999982 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/02,9.905595837793337 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/02,7.14975585837583 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/10,5.130356819999995 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/10,6.615877270072499 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/07/25,3.2932 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/07/25,5.416748200000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/25,14.404499999784994 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/09/11,3.5434500000000075 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/09/11,3.507250000000008 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/26,3.756571996153845 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/26,4.353378823076922 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/09/26,4.309900002347503 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/06,7.963977919047612 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/06,10.01550594238094 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/10/28,8.387050021122498 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/09,2.9123339999999995 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/09,2.7068610000000013 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/05,3.576255480769232 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/10/29,2.8100394182692305 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/10/29,2.670187855769231 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/12/07,12.603966666451662 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/24,2.938103118269229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/21,2.325840855357141 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/12/24,23.455858333333325 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/01/25,23.466524999999997 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/02/26,22.22352500000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/04/06,13.05790754406499 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/03/29,21.791766666666685 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/03/22,14.337033334483358 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/03/22,15.097412501150012 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/09,4.8816036823809466 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/09,4.648836259047612 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/09,2.7613553750000013 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/09,2.6368253500000027 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/08,3.0147134500000017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/01,2.6275549400000004 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/01,3.0184525049999973 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/04/30,5.140824999999999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/26,22.684712499042515 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/26,22.70163749904252 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/25,4.123607578645835 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/25,4.3681942309142245 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/24,4.124849999999992 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/07/04,3.450811369999995 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/29,4.001025000362495 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/29,3.868025000144991 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/07/03,6.4095341036175 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/26,3.2912 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/26,3.0464044999999995 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/25,2.3077067 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/07,3.4809931908699965 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/05,2.5704249999999984 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/05,2.6501750000000026 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/07/28,3.213975 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/07/28,2.601524999999999 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/10,6.743168180000002 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/24,3.90674205345 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/29,3.295929500000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/29,4.656229500000001 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/28,2.6287035543956048 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/22,7.118986909146903 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/22,11.720500016184994 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/30,5.923089026186664 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/30,4.589264025896664 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/22,3.2321940711538435 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/22,3.237902671153845 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/21,4.95895947832833 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/10/31,6.636530738181778 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/10/26,6.391024997760008 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/10/26,16.361212503742525 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/11/09,2.843009205769229 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/11/09,3.1570541730769217 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/11/08,2.2759179115384587 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/10/24,16.832454171741652 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/12/10,2.4494088500000006 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/12/02,3.0800862133333333 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/11/24,3.2112249999999998 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/12/27,10.864583333518338 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/12/27,11.27131666685167 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/02/04,22.274983333333346 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/02/21,11.370400000585004 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/02/21,11.048083333870846 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/10,11.841474999904994 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/10,11.833341666571664 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/02,12.412675005654991 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/02,12.730825004504991 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/01,13.872174999952495 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/09,8.679283332450858 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/31,7.040352646739166 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/26,2.409159714666666 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/26,4.24977561466666 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/28,7.331175000405 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/28,3.699061825072495 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/27,21.37655 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/06/22,3.004215156666665 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/07/06,3.751997724999992 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/06/21,3.745150000000004 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/06/21,3.70463175 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/07/30,5.081349999999995 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/07/22,4.678653033975829 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/06,7.244715910072496 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/01,7.602312876786666 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/01,4.582707583333328 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/01,2.8680589499999973 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/08/31,3.429012556333328 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/08/23,2.472739680769231 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/28,3.5650541654716683 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/23,8.245895827733344 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/23,9.65156249646501 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/10/03,4.967198364666659 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/10/03,2.6083686000000017 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/10/02,3.5811081424999958 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/25,14.222641666786672 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/25,7.680575000675005 +Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/11/03,3.2463209174999936 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/07,10.120108333333354 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/01/22,24.44116666666665 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/06,12.498874999999996 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/07,10.120108333333354 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/01/22,24.44116666666665 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/06,12.498874999999996 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/23,22.348225000000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/03/10,21.675758333333352 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/22,21.838800000000013 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/23,22.348225000000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/03/10,21.675758333333352 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/22,21.838800000000013 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/04/03,9.856441666476677 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/04/03,9.856441666476677 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/04/28,5.939974999570007 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/06,4.8812250000000015 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/06,3.950165910000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/04/28,5.939974999570007 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/06,4.8812250000000015 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/06,3.950165910000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/06,4.600332613769399 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/30,3.857535832703332 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/30,3.109292381289878 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/07,11.823675000047492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/07,12.118150000237492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/29,3.581499999999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/22,6.934891673614154 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/22,4.469475000192494 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/06,4.600332613769399 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/30,3.857535832703332 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/30,3.109292381289878 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/07,11.823675000047492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/07,12.118150000237492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/29,3.581499999999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/22,6.934891673614154 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/22,4.469475000192494 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/07/08,3.805883447839044 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/22,5.168545121081898 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/07/08,3.805883447839044 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/22,5.168545121081898 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/08/09,4.427687885793333 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/08/09,4.427687885793333 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/03,7.922674997472509 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/11,2.556168000000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/11,2.632994750000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/03,7.922674997472509 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/11,2.556168000000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/11,2.632994750000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/05,7.188741660311673 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/05,8.357199994645008 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/26,3.6989060717391617 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/04,10.816510002419978 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/27,3.0585075048076917 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/27,3.0060735432692285 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/05,7.188741660311673 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/05,8.357199994645008 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/26,3.6989060717391617 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/04,10.816510002419978 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/27,3.0585075048076917 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/27,3.0060735432692285 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/05,2.371797311538459 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/05,2.371797311538459 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/29,2.7450545500949968 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/22,3.429243953913331 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/22,3.271466606884163 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/12/07,2.5954250000000023 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/30,2.65910760576923 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/30,3.452160177884609 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/29,2.7450545500949968 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/22,3.429243953913331 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/22,3.271466606884163 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/12/07,2.5954250000000023 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/30,2.65910760576923 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/30,3.452160177884609 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/01/24,21.791766666666685 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/01/24,21.791766666666685 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/02/26,22.34590833333334 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/02/26,22.34590833333334 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/05,12.350546973333335 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/03/29,8.468483332258343 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/03/29,12.492183333285835 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/05,12.350546973333335 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/03/29,8.468483332258343 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/03/29,12.492183333285835 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/07,6.477473332953333 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/30,4.418394091999993 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/30,3.987221361999995 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/21,12.522150034500008 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/29,4.492249999999998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/07,6.477473332953333 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/30,4.418394091999993 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/30,3.987221361999995 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/21,12.522150034500008 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/29,4.492249999999998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/23,4.272173332663336 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/31,4.11804053686333 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/24,14.06548333373332 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/24,14.094783333533323 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/23,4.272173332663336 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/31,4.11804053686333 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/24,14.06548333373332 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/24,14.094783333533323 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/03,9.015662506922496 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/03,8.937550005219991 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/24,11.88171667818916 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/11,12.63802499999998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/02,6.01880001369249 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/25,2.717025454395606 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/25,3.183891690934065 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/03,9.015662506922496 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/03,8.937550005219991 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/24,11.88171667818916 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/11,12.63802499999998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/02,6.01880001369249 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/25,2.717025454395606 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/25,3.183891690934065 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/11,16.092600111547494 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/04,3.4200669974358946 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/04,3.409416997435895 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/26,4.338492427932499 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/03,2.4369370875000005 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/27,5.008154500000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/27,3.0678953199999994 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/11,16.092600111547494 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/04,3.4200669974358946 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/04,3.409416997435895 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/26,4.338492427932499 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/03,2.4369370875000005 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/27,5.008154500000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/27,3.0678953199999994 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/05,3.181257780769229 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/05,2.99786378076923 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/27,2.2931106000000003 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/04,3.8307431999999952 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/28,5.007400000072492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/28,2.751052250000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/05,3.181257780769229 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/05,2.99786378076923 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/27,2.2931106000000003 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/04,3.8307431999999952 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/28,5.007400000072492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/28,2.751052250000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/07,5.221348385714278 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/07,5.505967319047612 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/28,8.52575985833333 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/21,2.5827932 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/21,2.2367954500000007 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/06,2.845780418269231 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/29,3.3221986557692293 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/29,2.606881700000003 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/07,5.221348385714278 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/07,5.505967319047612 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/28,8.52575985833333 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/21,2.5827932 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/21,2.2367954500000007 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/06,2.845780418269231 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/29,3.3221986557692293 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/29,2.606881700000003 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/08,8.578393199999988 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/08,3.726334996999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/23,9.664424129047609 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/23,9.06297791571427 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/07,3.2697478557692325 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/08,8.578393199999988 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/08,3.726334996999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/23,9.664424129047609 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/23,9.06297791571427 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/07,3.2697478557692325 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/12/10,12.157345839313344 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/12/10,10.952414585615848 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/23,22.672708333240838 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/12/10,12.157345839313344 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/12/10,10.952414585615848 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/23,22.672708333240838 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/28,13.20061666652417 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/03/08,10.42411667117166 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/03/08,11.976224999952493 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/20,15.298412499905004 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/20,15.426224999905005 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/28,13.20061666652417 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/03/08,10.42411667117166 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/03/08,11.976224999952493 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/20,15.298412499905004 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/20,15.426224999905005 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/04/09,19.839649999952528 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/04/09,19.839649999952528 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/04/24,7.453407578333331 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/05/11,8.342411747120831 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/05/11,5.938821974175829 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/04/24,7.453407578333331 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/05/11,8.342411747120831 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/05/11,5.938821974175829 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/06/11,5.896413240359285 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/06/11,5.896413240359285 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/05,4.827250000000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/05,4.827250000000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/29,7.302558338580837 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/30,3.122146224999998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/30,2.8159564500000016 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/29,7.302558338580837 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/30,3.122146224999998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/30,2.8159564500000016 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/30,6.0088483321658375 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/23,4.975094706884163 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/23,3.816246223550831 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/30,6.0088483321658375 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/23,4.975094706884163 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/23,3.816246223550831 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/01,5.141520755769227 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/24,2.431971218333332 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/24,2.5468143983333325 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/02,2.6224782182692308 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/02,3.143422043269229 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/23,2.8025727500000013 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/01,5.141520755769227 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/24,2.431971218333332 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/24,2.5468143983333325 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/02,2.6224782182692308 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/02,3.143422043269229 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/23,2.8025727500000013 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/11/11,5.380961411047611 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/11/11,4.770855351120113 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/11/10,2.9113750000000045 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/25,5.59686143999999 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/12/04,12.844483370133348 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/05/05,7.1057500023000095 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/05/29,4.433748846620116 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/05/30,2.8584370750000017 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/05/30,3.0151087250000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/09,4.728354599999986 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/09,4.732454599999985 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/06/30,13.139733333285823 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/08,3.980332725217495 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/01,5.530925001222496 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/01,5.180833335615826 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/06/22,3.091451899038462 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/08/10,3.042803789102565 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/08/10,3.104473019871796 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/08/09,4.423640910000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/09/03,3.0470384207692307 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/09/03,2.6664115700000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/08/25,5.796652249999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/10/05,2.993202265000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/10/05,2.731845400000002 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/11/22,11.927575000000004 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/12/23,10.788141666666675 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/01/25,21.919450000000012 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/01/25,22.115583333333348 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/02/26,21.848400000000016 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/02/26,21.75304166666668 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/04/23,3.860945268734408 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/04/23,3.5728602684369064 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/05/08,5.127024640640826 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/04/22,2.163588349999998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/06/10,10.113824999714993 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/06/10,10.319575000619992 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/06/01,9.869577083270835 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/06/09,3.7247909099999994 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/07/03,4.802671575695119 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/08/04,13.983800020747491 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/08/05,2.3153611500000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/08/05,2.6049559073717945 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/05,3.5599970066666606 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/06,2.8084019682692314 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/06,3.225527259615384 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/30,7.269499996685011 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/30,7.123699993030008 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/21,3.0720037816666634 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/10/08,2.7398630736263736 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/10/08,2.5002281432692297 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/29,11.087237499999995 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/10/23,17.614920833425845 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/11/09,13.24715000043 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/11/09,5.648150000192492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/12/11,3.587857043269232 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/11/25,3.0620308173076927 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/11/25,3.2144791923076896 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/02/05,22.480808333333343 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/03/07,22.173549999785013 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/02/20,21.791766666666685 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/04/01,15.178358334760858 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/04/01,12.268625001247514 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/02,7.166603801666663 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/04/25,4.409826529770835 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/04/25,4.211857968302502 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/10,2.8415817500000027 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/03,5.846025000145 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/03,4.166477250000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/27,3.097898334666662 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/27,3.0645983346666634 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/26,2.6748317500000023 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/05,17.521695832855823 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/06/28,3.5847249996400024 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/06/28,9.192040772644518 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/06,3.0269459423076928 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/06,3.197133028846153 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/06,3.331590915072496 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/30,12.128450007479987 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/30,15.264958365678336 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/07,3.931640925072492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/07,3.832459074999993 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/31,2.9233105833333326 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/31,2.3240288 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/22,3.02304093529 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/30,2.9159545000475 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/23,6.322225000144999 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/23,3.752327250000002 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/10/09,5.722807293919409 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/09/24,5.267600000795 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/09/24,4.3329750016674975 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/11/10,4.938857624380943 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/10/25,9.020954165854189 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/12/29,21.791766666666685 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/12/29,21.791766666666685 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/01/30,21.867666666666683 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/04/03,15.423719225449169 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/04/04,10.949374999810011 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/04/04,11.149324999810016 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/05/06,4.667450000000002 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/05/06,4.123806820000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/05/29,4.219375000360004 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/06/23,3.0156750000000003 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/06/23,2.757708999999999 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/10,3.865249999999993 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/10,3.634575624999992 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/07/25,4.396275000047497 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/07/25,11.354935140961729 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/09/10,6.948481242050007 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/25,9.728446501686731 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/09/11,12.918275000047492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/09/11,2.786825000000002 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/26,3.889999112307692 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/26,2.9312885700000004 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/09/26,15.821531167568324 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/11/06,7.400318180144994 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/11/06,5.558692426881666 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/10/28,6.844107590072492 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/10/29,2.85512116826923 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/10/29,3.169601623626373 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/12/07,3.083669230769229 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/11/24,2.6289902932692297 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/11/21,2.0891271999999965 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/12/24,24.44116666666665 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/12/23,3.8665000000000056 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/01/25,21.970933333333345 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/02/26,23.624491666666653 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/02/26,22.529033333333334 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/02/26,22.994266666666668 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/02/26,22.304175000000008 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/03/30,22.34590833333334 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/04/06,12.830835453844156 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/03/29,21.67155833333335 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/03/22,13.323033333285837 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/09,2.2959439875000003 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/09,2.4692844182692304 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/08,2.5588612400000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/01,3.3426613500724973 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/01,3.7111557134058337 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/04/30,7.048266676959149 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/31,17.030099999904994 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/25,3.797218200072498 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/25,4.051100000627499 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/24,3.290275000000007 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/04,3.628518190072495 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/04,3.323050000000005 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/04,3.4014750000000067 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/03,5.253014417326669 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/06/26,4.378471214468329 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/06/26,4.560904167584163 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/06/25,2.6852541000000008 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/05,3.324077250047503 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/05,5.205577300119992 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/28,11.477450000072482 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/28,17.11230000007247 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/10,3.6855060571741616 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/24,8.067341669349164 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/29,10.80103333357082 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/29,10.084325000524988 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/28,2.684129490000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/10/09,8.09168333110334 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/10/09,6.876356249687506 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/22,13.376466666666673 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/30,20.654329166651657 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/29,3.0267250000000034 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/22,2.356060960000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/22,2.6885766000000006 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/21,5.137584100144994 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/10/26,11.34435833333334 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/09,3.02565441826923 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/09,3.190051923076922 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/08,2.130356699999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/01,3.079375000000009 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/01,2.760004500000004 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/10/24,20.093841667181664 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/12/10,2.2499749499999986 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/12/02,22.502266665826674 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/24,2.998000000047502 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/12/27,22.274983333333346 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/12/27,22.274983333333346 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/04/02,12.212483333238332 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/03/24,8.969541666894179 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/09,9.82257083741334 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/31,3.362339998362496 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/26,3.049964997999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/26,3.1287832179999966 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/05,10.21672916695166 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/05,8.878550000627497 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/04,4.958369708314165 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/28,4.002321213598325 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/28,9.011475002997509 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/27,22.67465000230001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/22,2.679736221405834 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/06,3.350384099999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/21,3.4340750000000027 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/21,4.1031045 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/10,15.223683333488315 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/05,3.703934734739161 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/05,3.3036036436024947 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/31,3.426400000000001 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/31,6.321587430769227 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/30,3.241075713380836 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/23,3.6044044999999993 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/23,3.2403044999999997 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/22,4.272250000119998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/06,4.526300006666656 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/01,4.638524885714279 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/01,4.719338164102558 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/01,3.830250000289994 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/01,3.8056954999999952 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/31,2.9585452133333323 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/23,2.2306687875000004 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/10/03,6.958568945 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/28,8.290224991745003 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/23,7.190377250072504 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/23,4.882897625072501 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/10/03,2.85590225 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/10/03,3.466734025 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/10/02,2.6931398425 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/25,2.7398022499999994 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/25,3.095449099999998 +Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/11/03,3.009488159999999 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/03/11,13.46664166642917 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/02/23,22.348225000000006 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/03/11,13.46664166642917 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/02/23,22.348225000000006 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/04/28,9.602595846763329 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/06,9.056371669984172 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/06,8.592327923811675 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/04/28,9.602595846763329 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/06,9.056371669984172 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/06,8.592327923811675 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/07,15.320908333333348 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/07,16.969458333333346 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/22,18.255025020747524 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/22,7.057304178325835 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/07,15.320908333333348 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/07,16.969458333333346 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/22,18.255025020747524 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/22,7.057304178325835 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/01,10.97116666643919 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/23,17.020825000000006 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/01,10.97116666643919 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/23,17.020825000000006 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/02,4.382758333665836 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/10,3.179275688846153 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/25,4.854100039999995 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/25,3.625215909999997 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/02,4.382758333665836 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/10,3.179275688846153 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/25,4.854100039999995 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/25,3.625215909999997 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/11,3.113625000000001 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/26,5.593455308974357 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/11,3.113625000000001 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/26,5.593455308974357 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/10/05,22.89203333348833 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/27,8.322083335728331 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/27,19.7624916667142 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/10/05,22.89203333348833 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/27,8.322083335728331 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/27,19.7624916667142 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/12/08,7.191821820095004 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/11/30,16.564025000475002 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/11/30,16.484750002442507 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/12/08,7.191821820095004 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/11/30,16.564025000475002 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/11/30,16.484750002442507 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/01/25,17.601550003887503 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/01/25,17.601550003887503 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/02/26,9.05210833344836 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/02/26,9.05210833344836 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/03/29,9.657356250012512 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/03/29,9.657356250012512 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/30,11.734941677124176 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/22,8.965675000217498 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/22,3.816125 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/30,11.734941677124176 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/22,8.965675000217498 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/22,3.816125 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/06/09,13.027085799912513 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/05/24,6.1164394025525 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/05/24,5.156933496680832 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/06/09,13.027085799912513 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/05/24,6.1164394025525 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/05/24,5.156933496680832 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/07/03,8.299160003110003 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/06/25,11.791897729999992 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/07/03,8.299160003110003 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/06/25,11.791897729999992 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/04,8.812887777920272 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/07/27,4.921573942307687 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/04,8.812887777920272 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/07/27,4.921573942307687 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/09/05,23.604150002015007 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/28,7.723836271097497 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/28,8.764070868475837 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/09/05,23.604150002015007 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/28,7.723836271097497 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/28,8.764070868475837 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/07,8.722592948584168 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/09/21,14.430925000942509 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/07,8.722592948584168 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/09/21,14.430925000942509 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/11/08,24.065725002925 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/23,21.921895838998363 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/31,19.68272500688504 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/31,16.06852501195003 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/11/08,24.065725002925 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/23,21.921895838998363 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/31,19.68272500688504 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/31,16.06852501195003 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/12/10,15.206104168321696 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/12/10,15.206104168321696 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/01/11,13.039983333095837 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/01/11,13.039983333095837 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/02/28,9.471634595510828 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/03/08,12.66390000000001 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/03/08,12.66390000000001 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/02/28,9.471634595510828 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/03/08,12.66390000000001 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/03/08,12.66390000000001 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/04/09,11.963774999427509 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/04/09,12.273025000000008 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/04/09,11.963774999427509 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/04/09,12.273025000000008 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/03,9.83812500001251 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/03,9.83812500001251 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/27,8.761800000264993 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/27,7.357141667569148 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/27,8.761800000264993 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/27,7.357141667569148 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/06,6.016574993230007 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/06,6.016574993230007 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/30,5.43231227199999 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/30,5.038843179999992 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/30,5.43231227199999 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/30,5.038843179999992 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/09/08,9.326400002842506 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/08/23,18.402924999937493 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/09/08,9.326400002842506 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/08/23,18.402924999937493 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/09/24,10.706813750237494 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/10/02,18.30634242577581 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/10/02,19.54156742577581 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/09/24,10.706813750237494 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/10/02,18.30634242577581 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/10/02,19.54156742577581 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/11/11,10.12100417828416 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/11/11,10.12100417828416 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/01/06,21.75304166666668 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/05/30,21.136074998660025 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/05/30,15.124366666354204 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/07/09,10.0047022700725 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/07/01,7.59287992529 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/08/02,14.708041671171673 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/10/05,11.068620439999997 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/10/05,21.18234167370918 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/11/22,6.648813861282044 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/11/22,7.001179771282045 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/02/26,3.1731000000000007 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/02/26,3.8234500000000016 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/05/09,9.486483333283346 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/04/23,8.898504167981661 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/05/25,7.14552499207501 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/06/26,10.153768180095009 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/07/04,4.3304651971153865 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/07/04,5.340999999999993 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/08/05,13.05520075671415 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/08/29,18.70032499978499 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/09/06,22.925700000232517 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/10/08,23.548624999370013 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/09/22,16.70373333323832 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/09/22,16.041024999999998 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/11/01,4.0645545450460725 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/11/09,21.60434999926003 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/10/24,19.183791667626668 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/10/24,16.983208336260837 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/12/03,11.197516666689165 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/12/11,4.709859061153838 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/12/11,5.613150276923069 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/04/01,14.175108335870815 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/04/01,14.647043180047476 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/04/25,4.898575000270011 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/05/03,10.112456254479994 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/05/03,10.292831256205 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/05/27,8.909350007510003 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/06/04,6.298266666786671 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/07/06,11.940142423333327 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/07/06,10.932200000119996 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/07/22,2.6669022500000072 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/08/23,4.138834099999995 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/10/10,9.993025004599993 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/10/10,8.658950003639996 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/11/03,5.917095829878348 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/12/29,19.995941667169173 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/01/22,13.09812333323834 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/03/11,14.606256254457495 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/05/06,6.5597624973224935 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/05/06,5.962956436304163 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/06/07,15.081758333428311 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/06/07,10.665346532995269 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/06/23,3.321400000000007 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/06/23,2.906352250000004 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/08/02,9.947972916739172 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/08/10,13.155775004430009 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/08/10,13.615218347300832 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/09/11,4.289620966346156 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/09/11,13.923600000190008 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/08/26,13.0538562522525 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/11/06,15.54582083453083 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/11/09,12.471227085073354 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/10/29,19.98770075968917 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/10/29,20.893259093022507 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/02/10,10.104541666191688 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/02/02,21.967658333333347 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/02/26,13.280266666851665 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/03/22,10.594131249475012 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/03/22,10.650306249190017 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/09,12.34673333393586 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/09,17.620134090237517 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/09,17.577225002585017 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/01,13.264475000000006 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/01,13.264475000000006 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/31,14.235950004157475 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/31,14.474648335258312 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/26,6.816570816183338 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/10,9.199552084553334 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/10,10.556542500519996 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/29,9.652130840688322 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/07/04,12.758189275348336 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/07/04,13.450835651485836 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/26,11.985980004642494 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/26,7.515343966061673 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/07/28,9.2328500001925 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/07/28,8.815000000217498 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/08/29,15.734525000237475 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/08/29,16.622558333188305 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/10/09,13.37337208552832 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/09/22,4.940521936666664 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/09/22,5.113738534999997 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/10/26,10.75080000129 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/11/09,10.497106267435893 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/11/09,10.3900381074359 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/12/27,21.84584999999002 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/02/10,9.173293334413318 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/01/28,21.883075000474992 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/01/28,12.707213633380814 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/02/27,7.682020005535 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/02/21,8.518225000479996 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/03/26,9.86049791870668 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/03/26,8.755910003000004 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/04/10,12.4484500003325 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/04/10,16.469600000332505 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/04/02,8.505245836038346 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/04/02,7.715295836063349 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/05/26,8.310802270502505 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/05/28,10.802860986809169 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/05/28,3.694974999999996 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/06/29,11.650524999999991 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/06/29,14.829724999999996 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/06/21,3.820525000095005 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/08/05,8.933930418344165 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/31,7.813172629047614 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/31,5.234050000072492 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/31,11.860800000047494 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/23,10.92547121007251 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/23,21.92327000009501 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/01,18.88455909000001 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/01,19.11343409000002 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/01,6.6828826969999895 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/01,5.489612331999996 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/28,7.455475000047502 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/28,15.20864166554417 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/11,5.387359857656665 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/11,4.875221219306664 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/03,8.032807431333326 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/03,6.78039470333333 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/25,11.560616687581671 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/25,11.940814596908336 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/27,25.72787500258503 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/27,25.231375002490022 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/11/28,3.32374423076923 +Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/11/28,3.405775 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/03/11,10.722600000000016 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/03/11,10.722600000000016 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/04/04,12.290158333285824 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/04/04,12.290158333285824 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/04/28,12.669606283824994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/04/28,12.669606283824994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/05/30,7.59697043215417 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/06/07,13.3726875000725 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/05/22,4.117350000072497 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/05/30,7.59697043215417 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/06/07,13.3726875000725 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/05/22,4.117350000072497 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/08/02,4.7844210614058245 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/07/25,15.018945833453332 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/08/02,4.7844210614058245 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/07/25,15.018945833453332 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/03,7.049412485947499 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/11,4.109889920769227 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/08/26,4.803316831999994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/03,7.049412485947499 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/11,4.109889920769227 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/08/26,4.803316831999994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/27,2.619460475000001 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/27,2.619460475000001 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/11/30,3.969361959615378 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/11/30,3.969361959615378 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/10,22.451158333333343 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/01/25,10.000733333118344 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/02,12.898075001340006 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/10,22.451158333333343 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/01/25,10.000733333118344 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/02,12.898075001340006 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/26,8.906662507529994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/26,8.906662507529994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/03/29,13.656100007747495 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/03/29,13.656100007747495 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/06/09,9.05887158189 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/06/09,9.05887158189 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/07/03,5.822563102980838 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/06/25,8.722696590000007 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/07/03,5.822563102980838 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/06/25,8.722696590000007 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/08/04,3.5360915148116643 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/07/27,4.869625039999997 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/08/04,3.5360915148116643 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/07/27,4.869625039999997 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/09/05,25.50430166676169 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/08/28,12.059524999952492 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/09/05,25.50430166676169 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/08/28,12.059524999952492 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/07,6.589956816666668 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/09/21,26.880610004600037 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/07,6.589956816666668 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/09/21,26.880610004600037 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/11/08,22.442006824600007 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/23,14.70945833511833 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/31,8.695922759999998 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/11/08,22.442006824600007 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/23,14.70945833511833 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/31,8.695922759999998 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/01/11,12.788716667124175 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/01/11,12.788716667124175 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/04,21.67155833333335 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/04,21.67155833333335 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/28,6.579627092455833 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/03/08,9.91946819 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/20,17.337404166619155 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/28,6.579627092455833 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/03/08,9.91946819 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/20,17.337404166619155 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/04/09,20.83161742807586 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/04/09,20.83161742807586 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/05/03,10.14852083696333 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/05/03,10.14852083696333 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/06/28,9.063650002419994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/06/28,9.063650002419994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/07/30,12.520739690769217 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/07/30,12.520739690769217 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/09/24,8.103113633333336 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/10/02,4.632723800769231 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/09/24,8.103113633333336 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/10/02,4.632723800769231 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/11/11,23.99230076126669 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/10/26,12.375375001260004 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/11/11,23.99230076126669 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/10/26,12.375375001260004 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/11/27,8.995416679704174 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/12/29,6.554349994827512 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/03/11,21.675758333333352 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/04/28,3.48061923076923 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/05/30,7.923214019716664 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/07/09,9.036241666666678 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/08/02,9.954016667816663 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/08/26,23.97581666659417 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/09/03,26.982183337933325 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/09/27,23.100600160233345 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/10/05,15.479441666651653 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/11/22,3.3188442307692285 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/02/10,5.506027665343331 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/02/26,4.530210803269228 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/04/07,7.82878333915584 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/04/23,13.319879167506665 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/06/26,6.832850000145008 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/07/04,7.075133333690814 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/07/28,9.879008332855824 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/08/05,13.116324999999993 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/08/29,7.270725006737495 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/10/08,12.037283340233335 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/09/22,13.124324999999995 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/11/09,7.644166665804168 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/10/24,12.164147729999998 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/11/25,19.109341666851652 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/03/08,20.527408360933364 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/02/21,13.468783333295844 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/05/03,17.913591715014185 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/05/27,16.379774999354996 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/06/04,5.179700000332505 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/07/06,19.778480833428336 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/08/07,11.972358333333329 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/07/22,21.11522500267997 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/09/08,11.419600000189998 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/08/23,15.22310833268832 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/10/10,22.385666673566675 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/01/06,5.782224998220006 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/12/29,2.9614522500000064 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/01/22,22.337341666666678 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/03/11,10.959091666451668 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/03/03,16.297241666619165 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/05/06,19.32564999970751 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/06/07,24.093325000095007 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/06/23,11.86274457399834 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/09/11,15.342825004647516 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/08/26,17.135266666404174 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/09/27,22.17713333393333 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/11/06,15.913579555633351 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/11/09,12.279201524999998 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/10/29,3.013700000000006 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/11/22,5.930799997300008 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/11/24,4.992342476666662 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/02/26,20.95086666676169 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/02/26,13.212766666524168 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/03/22,7.940578365218338 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/05/09,8.232339393333337 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/05/09,5.10619621568083 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/05/31,13.297450002542504 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/06/10,13.256499999999994 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/06/29,9.42904318000001 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/07/04,16.29465000129752 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/06/26,4.334268943333327 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/08/02,8.858799990122497 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/08/05,16.134983333333324 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/08/29,2.4505250000000016 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/10/09,11.549616666666672 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/09/22,22.070833333333347 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/11/09,4.800149999999998 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/01/28,5.143548961538459 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/03/09,4.119303749999999 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/03/26,13.944169703966685 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/04/10,2.738662975000004 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/04/02,8.81900757833332 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/05/31,25.64165625000003 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/05/26,3.314282424739162 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/06/05,5.147902963333333 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/05/28,2.611203699999998 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/06/29,19.34980833333333 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/06/21,4.793550000579993 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/08/05,22.735224585728343 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/07/31,23.229825000000016 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/07/31,13.61018333333334 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/07/23,13.070829925697502 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/09/01,21.606024999785003 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/08/27,14.558925014037502 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/09/01,19.24778333563333 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/09/28,14.939929166379166 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/10/03,26.396775002300014 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/10/25,9.625220833568338 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/10/27,19.23059166666666 +Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/11/28,3.227209099999996 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/03/11,11.208516665591668 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/03/11,11.208516665591668 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/04/04,12.456825000332508 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/04/04,12.456825000332508 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/04/28,6.825055315778335 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/04/28,6.825055315778335 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/05/30,3.6052772748725017 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/06/07,6.0536250003824845 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/05/22,7.66462121347833 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/05/30,3.6052772748725017 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/06/07,6.0536250003824845 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/05/22,7.66462121347833 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/07/01,13.170648336588345 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/07/01,13.170648336588345 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/08/02,3.66194470666666 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/07/25,3.1058255999999966 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/08/02,3.66194470666666 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/07/25,3.1058255999999966 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/09/11,2.608734040000002 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/08/26,3.4244823499999977 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/09/11,2.608734040000002 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/08/26,3.4244823499999977 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/09/27,2.720976999999999 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/09/27,2.720976999999999 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/11/29,6.135296105714279 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/11/30,3.453121326923076 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/11/29,6.135296105714279 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/11/30,3.453121326923076 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/02/02,12.344500000380004 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/02/02,12.344500000380004 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/02/26,10.935575025157515 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/02/26,10.935575025157515 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/03/29,18.133791747166686 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/03/29,18.133791747166686 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/06/09,3.310229500000001 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/06/09,3.310229500000001 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/07/03,4.676727278532503 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/06/25,3.111078066666663 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/07/03,4.676727278532503 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/06/25,3.111078066666663 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/08/04,3.7707272999999937 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/07/27,2.548638100000002 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/08/04,3.7707272999999937 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/07/27,2.548638100000002 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/09/05,4.079650000144991 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/08/28,4.216975000652493 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/09/05,4.079650000144991 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/08/28,4.216975000652493 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/07,3.3182681699999965 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/09/21,2.625975604666666 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/07,3.3182681699999965 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/09/21,2.625975604666666 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/11/08,5.510848544380943 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/23,11.949670839588329 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/31,3.1002579724358936 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/11/08,5.510848544380943 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/23,11.949670839588329 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/31,3.1002579724358936 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/01/11,11.114874999809995 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/01/11,11.114874999809995 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/04,3.774916985576924 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/04,3.774916985576924 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/28,3.1512051796666647 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/03/08,2.2905917361263715 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/20,13.426291669711672 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/28,3.1512051796666647 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/03/08,2.2905917361263715 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/20,13.426291669711672 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/04/09,2.1233360500000003 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/04/09,2.1233360500000003 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/06,5.341299626896668 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/06/28,3.595659615384614 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/06,5.341299626896668 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/06/28,3.595659615384614 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/22,12.713420833380823 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/30,3.205582294999998 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/22,12.713420833380823 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/30,3.205582294999998 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/10/10,5.875862123405833 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/09/24,3.1964006046666644 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/10/02,2.6320401182692303 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/10/10,5.875862123405833 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/09/24,3.1964006046666644 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/10/02,2.6320401182692303 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/11/11,5.231539464380944 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/11/11,5.231539464380944 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/11/27,6.677149991265009 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/03/11,3.2576652346153843 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/05/30,5.541775385269995 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/07/09,3.8283591399999937 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/08/02,2.547775000000005 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/08/26,7.624458317425835 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/09/03,3.047995730769226 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/09/27,11.69077500057 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/12/08,19.80287839855085 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/11/22,7.463363500000006 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/01/01,3.510571928984403 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/02/10,10.633264583703337 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/04/07,7.781799999712501 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/04/23,6.145269698405832 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/06/26,4.351238699999991 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/07/04,3.344177250047502 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/07/28,9.748512504814991 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/08/05,12.79320833333332 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/08/29,5.873125000192508 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/10/08,2.531256940000002 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/09/22,2.783973199999998 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/11/01,8.675355313804156 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/11/09,18.768000000784998 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/10/24,2.737880090000002 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/12/11,21.750616666666684 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/11/25,2.788442025000003 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/03/08,6.500967426666668 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/02/21,11.174735428636671 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/03/24,5.693660832130831 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/05/03,2.921381820000004 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/05/27,20.711150000212506 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/06/04,4.105800000409995 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/07/06,3.2437795999999968 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/08/07,4.56510076020833 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/09/08,4.823450001005001 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/08/23,2.5298978000000023 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/10/02,5.508174997975005 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/10/10,2.869055499999999 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/12/29,3.3787500000000086 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/01/22,13.4450749998575 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/03/03,13.9916999999525 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/04/04,3.222352250095006 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/05/06,3.5681356130058286 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/06/07,3.855063624999992 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/06/23,3.361097625047498 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/09/03,7.079524986687502 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/09/11,4.488684100144991 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/08/26,3.4450272499999994 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/09/27,2.83479545 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/11/06,9.887863525714277 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/11/09,2.6412571900000024 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/10/29,12.990549999999992 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/11/22,10.57692500236001 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/11/24,2.44357358076923 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/02/10,14.185091666404157 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/02/26,11.732666666021666 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/03/22,2.644908445000003 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/05/09,3.1074204599999966 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/05/09,3.002655763333331 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/05/01,6.646892811659985 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/05/31,15.749483337933333 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/06/29,3.523784099999992 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/07/04,3.4620742466666674 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/06/26,3.6481347999999953 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/08/02,7.812104780914992 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/08/05,4.24409091019249 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/08/29,3.5796045000000016 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/10/09,3.542551526666661 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/11/09,2.9637402740384617 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/01/28,3.4484282307692307 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/02/27,6.535249993875011 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/03/09,13.137725000264986 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/03/26,7.486356826666662 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/04/10,2.2354610650000004 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/04/02,6.825714398333335 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/05/09,11.7280750017575 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/04/26,2.6189772499999986 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/05/31,8.578584090795006 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/05/26,3.370364403405828 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/06/05,3.942375000000004 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/05/28,3.861236413333328 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/06/29,9.0978799252175 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/06/21,13.087783333333318 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/08/05,3.481506061739162 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/07/31,3.9926613500724897 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/07/23,2.9642250000000017 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/09/01,4.261556819999987 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/08/27,5.900000006409999 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/09/01,2.970995405 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/09/28,18.823641666331664 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/10/03,2.551595300000001 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/10/25,15.288391685214172 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/10/27,2.414993565000002 +Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/11/28,3.265899916153844 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/03/11,9.821031251529996 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/02/23,22.47810000000001 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/03/11,9.821031251529996 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/02/23,22.47810000000001 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/04/04,22.55868333333334 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/04/04,22.55868333333334 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/05/06,4.430000000337502 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/05/06,4.430000000337502 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/05/22,9.8219750003375 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/05/22,9.8219750003375 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/08/02,6.35215000356 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/08/02,6.35215000356 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/09/11,2.712025000000004 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/08/26,12.951283333318315 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/09/11,2.712025000000004 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/08/26,12.951283333318315 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/10/05,11.88510833353335 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/09/27,3.532851759935898 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/10/05,11.88510833353335 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/09/27,3.532851759935898 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/11/22,8.620933669908569 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/11/30,3.002864611538464 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/11/22,8.620933669908569 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/11/30,3.002864611538464 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/03/05,10.58414166639168 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/03/05,10.58414166639168 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/03/29,9.38151365922001 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/03/29,9.38151365922001 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/04/30,3.913558338475832 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/04/30,3.913558338475832 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/05/24,2.8906022500000077 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/05/24,2.8906022500000077 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/03,14.802583354033343 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/11,3.2807887899999986 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/06/25,6.059568190000001 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/03,14.802583354033343 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/11,3.2807887899999986 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/06/25,6.059568190000001 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/08/04,3.418953786884164 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/27,3.071275539999998 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/08/04,3.418953786884164 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/27,3.071275539999998 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/05,4.315936360217494 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/08/28,15.355550000185003 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/05,4.315936360217494 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/08/28,15.355550000185003 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/10/07,4.9765151977142805 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/21,3.664396966811661 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/29,3.06531784 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/10/07,4.9765151977142805 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/21,3.664396966811661 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/29,3.06531784 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/11/08,3.9782501306233313 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/10/23,7.079095841788337 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/11/08,3.9782501306233313 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/10/23,7.079095841788337 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/12/10,12.37523333353334 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/12/10,12.37523333353334 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/01/11,14.028933333095836 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/01/11,14.028933333095836 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/02/04,10.878250000185004 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/02/04,10.878250000185004 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/02/28,14.257027084303354 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/03/08,11.5154750001425 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/02/28,14.257027084303354 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/03/08,11.5154750001425 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/04/09,4.27381121634615 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/04/09,4.27381121634615 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/05/27,3.073104500047501 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/05/27,3.073104500047501 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/06/28,19.366149999554988 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/06/28,19.366149999554988 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/07/30,2.8922401250000003 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/07/30,2.8922401250000003 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/08/23,8.951904166551667 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/08/23,8.951904166551667 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/09/24,5.763742423380842 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/10/02,3.3395531673076886 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/09/24,5.763742423380842 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/10/02,3.3395531673076886 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/11/11,5.628706826881667 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/11/11,5.628706826881667 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/04/28,2.7805250000000026 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/05/30,4.414150000000006 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/07/09,10.207925002419998 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/07/01,7.165600001194992 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/08/10,4.402705304999991 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/09/03,4.194810717728211 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/09/27,4.806502279077503 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/10/05,4.781166923076919 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/11/22,21.856800000000018 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/01/25,13.832574999952495 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/04/23,10.049180711613213 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/06/26,4.850362878623324 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/07/28,6.73257499430501 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/08/05,2.7915541249999984 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/09/06,3.067418699999998 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/10/08,4.662358792769227 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/11/01,6.873175026004995 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/11/25,15.813233333333343 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/02/21,23.439241666666657 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/04/01,3.990425000145004 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/04/25,5.058414396739167 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/05/03,3.769075002299999 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/05/27,5.238175002632504 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/06/28,17.93537916695168 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/07/06,3.1701655730769205 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/08/07,2.7340041000000017 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/08/31,12.7994750028625 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/10/10,13.229000001150006 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/09/24,12.965045833405831 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/12/29,15.516350038789987 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/03/27,7.273824999775012 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/05/06,3.742502275000009 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/06/23,4.2428884897435815 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/08/02,4.90633863931 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/08/10,9.46066742610834 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/09/11,2.8516272500000053 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/08/26,3.4204195 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/11/06,11.3143999995325 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/11/09,3.391441385384616 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/10/29,3.617673928205126 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/11/22,6.485149999955008 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/11/24,3.093172808974359 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/12/24,10.491900000000022 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/02/02,22.17288333328585 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/02/26,22.529033333333334 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/03/30,21.203495834188352 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/03/30,5.425475000189998 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/03/22,11.725026787149286 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/09,2.9404560667391677 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/09,3.389551199999998 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/01,3.866567799999995 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/04/23,7.07443788462833 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/31,9.118441678881666 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/26,9.339299987872492 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/25,3.448224999999994 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/06/29,4.081168180434993 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/06/26,3.070000001087499 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/08/29,7.46440000098 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/10/08,12.44540000229998 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/09/30,3.2581333682692315 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/09/22,5.637992788076925 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/11/09,3.01619305576923 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/02/27,22.76205 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/02/21,11.240208333870848 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/04/10,3.211919230769229 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/04/26,6.738225000284996 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/05/31,8.578768180215 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/05/26,7.338750000407503 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/05/28,3.468000000507497 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/06/22,6.4910295401925 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/06/21,3.288081854999997 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/08/05,7.066604169736671 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/07/31,4.700724999970003 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/07/23,3.3757750000000017 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/01,6.130361360382502 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/09,3.6923139433333296 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/01,10.691468180262502 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/08/24,3.585179554999994 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/28,7.672014581935848 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/23,13.198033205944435 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/10/03,3.769958346666662 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/25,3.0382000000475013 +Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/11/28,2.8889202500000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/03/10,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/03/10,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/04/03,12.339924999785 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/04/03,12.339924999785 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/05,7.362787497857503 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/04/28,9.318306262945 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/06,9.408425004672484 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/06,6.132250000047497 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/05,7.362787497857503 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/04/28,9.318306262945 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/06,9.408425004672484 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/06,6.132250000047497 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/06,26.56243750028501 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/07,13.01696250031 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/29,2.701806915000002 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/29,2.799670560000001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/22,7.640208356808319 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/06,26.56243750028501 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/07,13.01696250031 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/29,2.701806915000002 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/29,2.799670560000001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/22,7.640208356808319 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/07/08,4.066953416060001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/22,5.327813361921907 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/07/08,4.066953416060001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/22,5.327813361921907 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/09,3.374843239999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/07/24,11.554274999792495 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/01,3.0016692307692314 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/01,3.191125000000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/09,3.374843239999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/07/24,11.554274999792495 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/01,3.0016692307692314 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/01,3.191125000000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/03,7.525207107963332 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/25,3.73057881673916 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/11,2.595974125000001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/02,9.639836364999994 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/02,2.9870067500000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/03,7.525207107963332 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/25,3.73057881673916 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/11,2.595974125000001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/02,9.639836364999994 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/02,2.9870067500000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/10/05,16.80829166666666 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/26,4.05584698173916 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/27,2.819203918269229 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/10/05,16.80829166666666 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/26,4.05584698173916 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/27,2.819203918269229 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/05,2.0705043499999967 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/05,2.4207300423076905 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/05,2.0705043499999967 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/05,2.4207300423076905 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/29,5.582149999995003 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/22,3.927641129615383 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/30,3.94875767307692 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/29,5.582149999995003 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/22,3.927641129615383 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/30,3.94875767307692 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/01/08,17.36162500000001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/01/08,17.36162500000001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/01/24,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/01/24,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/05,7.268233336860829 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/03/29,23.970570833638348 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/05,7.268233336860829 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/03/29,23.970570833638348 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/07,4.00305166195857 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/30,3.799297759999996 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/21,3.2198265467391662 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/29,3.8623273 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/29,4.532499999999999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/07,4.00305166195857 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/30,3.799297759999996 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/21,3.2198265467391662 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/29,3.8623273 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/29,4.532499999999999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/23,10.837058340400825 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/31,5.87740796819582 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/31,4.89271023938333 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/24,5.12389015666666 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/23,10.837058340400825 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/31,5.87740796819582 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/31,4.89271023938333 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/24,5.12389015666666 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/03,8.517954173351669 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/06/24,3.187874876525829 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/11,11.847096600151662 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/06/25,3.297634674999999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/03,8.517954173351669 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/06/24,3.187874876525829 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/11,11.847096600151662 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/06/25,3.297634674999999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/11,8.609312513322498 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/04,3.0399150279999976 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/03,3.0363545000000016 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/03,2.8305272500000007 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/27,3.404491142948716 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/11,8.609312513322498 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/04,3.0399150279999976 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/03,3.0363545000000016 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/03,2.8305272500000007 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/27,3.404491142948716 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/05,4.105520814102558 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/27,2.353807578333333 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/04,2.7737083249999976 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/04,5.335154579999994 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/28,9.234750000144992 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/05,4.105520814102558 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/27,2.353807578333333 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/04,2.7737083249999976 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/04,5.335154579999994 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/28,9.234750000144992 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/07,2.7492272800724997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/28,2.810065751333332 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/21,3.4214468679999994 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/06,2.4508065615384598 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/06,2.4009724365384595 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/07,2.7492272800724997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/28,2.810065751333332 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/21,3.4214468679999994 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/06,2.4508065615384598 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/06,2.4009724365384595 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/08,4.343034084999998 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/23,5.008679579380948 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/07,3.2886392548076917 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/07,3.129887004807692 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/08,4.343034084999998 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/23,5.008679579380948 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/07,3.2886392548076917 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/07,3.129887004807692 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/12/10,11.6148387562625 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/23,2.8918545000000058 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/23,13.27870833371832 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/12/10,11.6148387562625 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/23,2.8918545000000058 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/23,13.27870833371832 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/01/02,22.348225000000006 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/12/25,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/01/02,22.348225000000006 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/12/25,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/01/27,10.425308333118345 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/01/27,10.425308333118345 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/03/08,12.537025000095 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/02/27,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/02/27,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/03/08,12.537025000095 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/02/27,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/02/27,21.88613333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/03/23,22.309808333333343 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/04/09,13.064491666666664 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/03/23,22.309808333333343 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/04/09,13.064491666666664 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/04/24,5.536850000167501 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/05/11,12.39712499999999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/04/24,5.536850000167501 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/05/11,12.39712499999999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/06/11,5.145077913989399 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/06/11,5.145077913989399 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/05,3.1440429799999983 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/05,3.257692999999998 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/05,3.1440429799999983 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/05,3.257692999999998 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/29,13.43315833333332 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/06,3.1094000000000017 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/06,3.2224000000000017 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/30,2.688771723626373 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/29,13.43315833333332 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/06,3.1094000000000017 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/06,3.2224000000000017 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/30,2.688771723626373 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/30,3.413228332465833 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/30,3.413228332465833 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/10,6.795816658516677 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/01,2.874794649999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/24,3.2186136302174977 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/02,2.67894323076923 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/23,3.087564099999998 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/23,3.3049345499999947 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/10,6.795816658516677 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/01,2.874794649999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/24,3.2186136302174977 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/02,2.67894323076923 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/23,3.087564099999998 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/23,3.3049345499999947 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/11,4.1297781820724975 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/10,3.1803192307692347 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/10,3.4440464807692344 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/25,4.7936500002624935 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/25,4.374660000407493 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/11,4.1297781820724975 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/10,3.1803192307692347 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/10,3.4440464807692344 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/25,4.7936500002624935 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/25,4.374660000407493 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/12/04,10.243629188784178 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/01/29,11.78839999976251 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/05,4.277852264999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/05,4.111829544999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/29,4.4263416171807135 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/30,3.718714099999992 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/30,4.133845460072499 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/07/09,10.767025009679983 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/06/30,13.033275000522504 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/07/08,4.670250000524999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/07/08,4.871375000524997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/07/01,3.4205250000000054 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/06/22,2.6105959423076914 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/06/22,2.8272664423076925 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/08/10,3.909093454102559 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/08/09,5.405175000215001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/08/09,6.438350002562502 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/09/03,4.434231750000002 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/10/05,3.155717875 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/12/08,11.773033333270831 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/11/22,3.1754000000000087 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/02/09,9.0827562512925 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/02/01,21.856800000000018 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/05/09,7.395495836943334 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/04/23,11.242418754547511 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/05/08,4.203732590062495 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/05/08,4.479643950433329 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/04/22,2.430675542307692 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/04/22,2.4565789298076925 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/10,10.951449998965002 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/01,8.60534583086085 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/09,3.432174999999998 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/09,3.4249249999999978 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/07/03,5.233475826781904 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/26,21.095810609070824 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/08/04,8.159633352318338 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/08/05,2.7422858750000016 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/07/27,22.771024999955003 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/07/27,18.01377499995501 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/05,2.9524609179999963 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/06,2.708422899038462 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/21,3.3519689333333305 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/10/08,3.795143661538457 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/29,14.07368333333332 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/29,14.176783333333317 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/10/23,8.081439997802498 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/11/09,5.7036822018374895 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/12/03,9.296240002079989 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/11/25,4.587239947115377 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/03/07,21.67155833333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/04/01,26.626070756809156 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/02,3.517186364999996 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/04/25,7.400266673204173 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/10,5.095627250047499 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/10,5.597577250047496 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/03,2.743000000000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/03,2.6188272499999994 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/27,3.4478627429999933 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/06/04,3.1293022500000047 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/26,3.113677250047502 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/26,3.183400000000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/07/05,9.412745838715834 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/06/28,3.3824441664166653 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/07/06,3.1403200659340644 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/06,7.379329550217506 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/31,14.138162500285002 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/22,7.229360018080008 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/09/08,8.169450000434999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/30,3.0528000000000084 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/30,3.542850000000008 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/23,2.755025000000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/10/09,4.7920227599999885 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/10/10,4.415055087163461 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/09/24,4.177100000264992 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/11/10,4.705536416047613 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/10/25,4.268933333620832 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/12/29,3.369950000000003 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/01/29,22.348225000000006 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/02/06,11.11258333331834 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/02/06,11.098949999985006 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/01/30,21.794191666666684 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/03/11,7.859825001985005 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/03/02,22.451158333333343 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/04/03,11.584991666571664 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/04/04,12.290591666429174 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/04/04,18.207472918141686 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/05/06,5.39290225 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/06/07,4.8213180115384535 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/05/29,4.646267812897499 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/05/29,5.204146979389167 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/06/30,21.75304166666668 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/06/23,3.8091915307692266 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/08/10,2.9095750000000056 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/07/25,7.045346213380831 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/09/10,4.77788182333 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/09/03,6.574499994490012 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/08/25,2.738964393044997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/08/26,2.669725000047497 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/09/26,7.780705414064156 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/06,5.068716716047613 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/10/28,4.206782712362498 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/05,3.2483942307692297 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/05,3.2239 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/10/29,3.102955147664834 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/12/07,2.6397250000000043 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/12/07,2.7931022500000062 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/24,2.2020225999999976 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/24,2.4244836173076907 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/21,3.127605061538457 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/21,2.479949373626374 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/01/08,21.75304166666668 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/12/23,1.9611248499999965 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/01/25,21.961558333333347 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/02/26,22.25651666666668 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/03/30,22.26459166666668 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/06,9.588158333543351 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/06,9.565158333543351 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/03/29,21.75304166666668 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/03/22,15.066137500190004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/03/22,15.585022916951653 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/09,2.449661624999999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/08,3.775932603333331 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/08,3.7020091 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/01,11.48012501149999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/01,5.68820000019249 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/30,7.621896224236657 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/30,9.02980000950999 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/22,3.624625000000007 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/25,3.6551295000475017 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/07/11,17.65202499978751 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/07/11,17.63170000000251 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/07/03,5.605112500842497 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/07/03,5.564812501439997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/06/26,4.442879500000002 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/06/25,2.418806450000001 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/06/25,2.4188314500000008 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/10,8.180774246666667 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/08/29,11.184475000237487 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/08/28,5.670500000265004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/08/28,5.780775000217505 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/10/09,6.217424999770006 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/22,19.373883333855822 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/30,14.085091666619157 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/30,13.235308333333323 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/29,2.556554500000003 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/29,2.819823463333336 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/22,3.1743847133333314 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/21,3.588643199999995 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/21,4.064709099999991 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/11/09,2.71900471826923 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/11/09,3.243525331730767 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/11/08,2.0992725999999977 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/11/08,2.052174849999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/10/24,17.130108333303333 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/12/10,2.402970349999998 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/12/10,2.3012248749999973 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/12/02,22.42019166624168 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/12/02,22.479366665826674 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/01/11,21.66638333333335 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/04/10,14.34742499985751 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/04/09,12.85180833323833 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/04/01,9.428974999857507 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/04/01,9.292341666429184 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/09,9.80672083745084 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/09,9.361654169256676 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/31,3.9913136303624936 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/31,3.895361360507495 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/26,3.82071969666666 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/05,11.425233333548327 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/04,6.218307586524166 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/04,6.351139781789995 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/28,11.694000001932489 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/27,22.61794166676168 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/27,22.971225000142507 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/22,3.876301358217495 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/22,4.033976358217493 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/06,5.970475000664985 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/06,8.628258338788317 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/21,3.5762817500000006 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/05,5.002550001124997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/30,2.443552250000005 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/30,2.557525000000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/22,6.2773200886241645 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/22,4.916477283687498 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/06,4.890731058333323 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/01,2.4359333284791678 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/01,2.434426508406668 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/01,10.019834090095005 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/31,4.210851516666662 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/31,4.027829544999994 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/23,2.915161680769229 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/23,3.106543480769228 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/10/03,7.614718185000003 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/28,6.6550749947500085 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/10/03,4.795667446666661 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/10/02,3.5915907500000004 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/10/02,3.4546158500000006 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/25,3.137865949999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/11/03,2.852410664999997 +Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/11/03,2.2399543249999976 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/03/10,21.66638333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/02/22,21.791766666666685 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/02/22,21.791766666666685 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/03/10,21.66638333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/02/22,21.791766666666685 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/02/22,21.791766666666685 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/04/03,7.613908332258339 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/04/03,7.613908332258339 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/04/28,5.094839402171663 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/06,12.7928250207725 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/06,8.852450004672479 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/04/28,5.094839402171663 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/06,12.7928250207725 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/06,8.852450004672479 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/06,4.949170855413335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/07,13.786733333453316 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/07,14.118258333453316 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/29,3.8227250001449953 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/29,3.749800000144995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/22,3.893345459999997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/22,3.588321218333326 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/06,4.949170855413335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/07,13.786733333453316 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/07,14.118258333453316 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/29,3.8227250001449953 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/29,3.749800000144995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/22,3.893345459999997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/22,3.588321218333326 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/07/08,14.512025000652509 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/22,15.425591685139173 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/07/08,14.512025000652509 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/22,15.425591685139173 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/09,4.5288796000724885 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/10,12.284449999784986 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/10,2.9750750000000004 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/09,4.5288796000724885 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/10,12.284449999784986 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/10,2.9750750000000004 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/03,8.510477082115855 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/25,3.843158043598327 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/11,3.727894149999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/11,4.813898346666657 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/02,8.0659250009425 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/02,7.781775001015002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/03,8.510477082115855 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/25,3.843158043598327 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/11,3.727894149999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/11,4.813898346666657 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/02,8.0659250009425 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/02,7.781775001015002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/05,8.945916669304165 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/26,10.63910416992916 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/04,3.842704170974163 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/04,3.778054171236663 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/27,2.957855075 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/27,2.488847062500001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/05,8.945916669304165 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/26,10.63910416992916 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/04,3.842704170974163 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/04,3.778054171236663 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/27,2.957855075 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/27,2.488847062500001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/05,2.956660325000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/05,3.262958962499998 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/05,2.956660325000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/05,3.262958962499998 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/29,6.081349996670008 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/12/07,3.265131750000009 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/30,2.70393 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/30,3.5787057038461536 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/29,6.081349996670008 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/12/07,3.265131750000009 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/30,2.70393 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/30,3.5787057038461536 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/08,22.013858333333346 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/08,22.013858333333346 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/24,21.66638333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/24,21.66638333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/24,21.66638333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/24,21.66638333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/02/26,9.73916666666668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/02/26,9.73916666666668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/05,11.038545230730236 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/05,11.038545230730236 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/07,6.242460417371673 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/30,6.698820464999996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/21,8.404441290368325 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/29,3.819162505479997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/07,6.242460417371673 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/30,6.698820464999996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/21,8.404441290368325 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/29,3.819162505479997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/23,8.3853522982025 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/31,4.888851915394167 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/31,4.804228050724165 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/24,9.583900764268316 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/24,12.597075766198325 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/23,8.3853522982025 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/31,4.888851915394167 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/31,4.804228050724165 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/24,9.583900764268316 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/24,12.597075766198325 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/03,6.795959095220002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/24,14.890925004912512 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/11,12.818725000309987 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/11,12.941600000309988 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/02,4.70803846165846 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/02,3.427150000000004 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/25,2.720299999999996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/25,4.487278530769222 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/03,6.795959095220002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/24,14.890925004912512 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/11,12.818725000309987 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/11,12.941600000309988 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/02,4.70803846165846 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/02,3.427150000000004 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/25,2.720299999999996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/25,4.487278530769222 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/04,3.543487728072493 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/26,8.785041427882746 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/03,3.7815453683333287 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/03,3.2544339683333283 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/27,5.244908336666656 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/27,2.813845080000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/04,3.543487728072493 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/26,8.785041427882746 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/03,3.7815453683333287 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/03,3.2544339683333283 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/27,5.244908336666656 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/27,2.813845080000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/05,3.681309100072493 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/27,14.474549998842503 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/04,4.587470459999994 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/04,3.918543943333328 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/05,3.681309100072493 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/27,14.474549998842503 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/04,4.587470459999994 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/04,3.918543943333328 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/07,7.974359843333331 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/28,8.547091663333338 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/21,3.559370449999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/06,2.409606700000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/06,2.370781700000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/29,3.6296249999999937 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/29,4.8385749999999925 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/07,7.974359843333331 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/28,8.547091663333338 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/21,3.559370449999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/06,2.409606700000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/06,2.370781700000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/29,3.6296249999999937 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/29,4.8385749999999925 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/08,5.231712143333323 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/23,2.9726689435508304 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/07,2.543955425 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/07,2.053747599999997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/08,5.231712143333323 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/23,2.9726689435508304 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/07,2.543955425 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/07,2.053747599999997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/12/10,22.47567500000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/23,20.21911666565668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/23,22.076199999677517 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/12/10,22.47567500000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/23,20.21911666565668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/23,22.076199999677517 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/01/02,22.337341666666678 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/12/25,21.75304166666668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/01/02,22.337341666666678 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/12/25,21.75304166666668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/28,20.599866666476697 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/08,12.906383333238328 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/08,12.955833333238326 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/27,14.619641666619168 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/27,14.541441666404166 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/20,20.32860833328586 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/28,20.599866666476697 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/08,12.906383333238328 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/08,12.955833333238326 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/27,14.619641666619168 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/27,14.541441666404166 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/20,20.32860833328586 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/23,22.451158333333343 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/09,20.254333333285864 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/09,20.228183333285862 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/23,22.451158333333343 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/09,20.254333333285864 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/09,20.228183333285862 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/24,10.291833333405837 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/05/11,3.8419791711016624 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/05/11,4.90385416938416 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/24,10.291833333405837 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/05/11,3.8419791711016624 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/05/11,4.90385416938416 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/06/11,7.786198325065828 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/06/11,7.786198325065828 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/05,3.434168749999996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/05,3.5088869499999946 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/05,3.434168749999996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/05,3.5088869499999946 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/29,22.761399999999977 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/06,3.4442794999999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/06,7.896275000289998 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/30,3.171811962500001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/30,2.8762380000000007 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/29,22.761399999999977 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/06,3.4442794999999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/06,7.896275000289998 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/30,3.171811962500001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/30,2.8762380000000007 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/23,13.854999999847502 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/23,13.854999999847502 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/10,6.602849998847513 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/01,4.316316889999989 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/24,3.126786360289997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/02,3.2382884249999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/02,2.637310500000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/23,4.7018999999999895 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/23,4.795374999999989 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/10,6.602849998847513 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/01,4.316316889999989 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/24,3.126786360289997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/02,3.2382884249999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/02,2.637310500000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/23,4.7018999999999895 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/23,4.795374999999989 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/11/11,7.751479539999999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/11/10,3.6853000000000047 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/11/11,7.751479539999999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/11/10,3.6853000000000047 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/12/04,8.837197106438333 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/01/29,9.32054999954751 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/05/05,8.966425011499997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/05/29,6.01342143507417 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/05/30,3.570145499999993 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/05/30,4.404200000144994 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/07/01,13.71845833340582 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/07/01,14.278233333333317 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/06/22,4.905097725409995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/06/22,5.020422725264994 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/08/10,4.35688639999999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/08/09,15.725800018400014 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/08/09,14.57493334950584 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/09/03,2.8288225000000007 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/09/03,4.197242496153843 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/10/05,3.2067308749999976 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/10/05,3.7133388307692257 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/12/08,21.856800000000018 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/12/08,21.867666666666683 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/11/22,21.88613333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/11/22,21.66638333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/01/25,21.919450000000012 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/02/26,21.867666666666683 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/02/26,21.867666666666683 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/04/23,12.759075001172494 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/05/08,2.95647309 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/05/08,2.6953490000000007 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/04/22,2.749913625000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/04/22,2.749913625000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/10,17.756941666451656 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/01,9.369374998692528 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/09,3.3129390999999955 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/09,3.374726349999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/07/03,3.619119702100832 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/26,7.248368181280005 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/08/04,16.47167083285583 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/08/05,4.242734094999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/08/05,3.906844230769224 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/07/27,5.189325000409995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/07/27,6.951775000262508 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/05,3.3365454499999943 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/06,3.825102485769225 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/06,3.4562000115384564 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/21,7.455691663405832 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/10/08,4.247548010769226 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/10/08,5.756603689999992 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/29,15.713591666666648 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/11/08,12.228247917466692 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/11/01,12.917625054967507 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/12/11,20.932816667569185 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/12/11,8.495549999477518 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/11/25,16.19234167241668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/11/25,6.294388264963329 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/02/05,22.663366666666672 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/02/21,22.308699999355007 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/04/01,9.536108333143323 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/04/01,18.73095625402501 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/02,6.995395460072499 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/04/25,4.256900380665831 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/10,3.326225000000006 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/10,2.9118772500475 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/03,13.090875043700008 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/03,11.062958356478326 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/27,8.477109090579999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/06/11,10.419800000199984 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/06/11,5.594175000239995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/06/04,8.756637496044991 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/06/04,13.374449999999984 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/26,3.421300005000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/26,4.059825000072497 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/07/05,14.248316671339152 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/07/06,3.0942909374999976 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/07/06,2.9880820750000003 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/06,3.5506591051449963 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/07/30,3.935775000144992 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/07,8.891575006852506 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/07,8.566770837383332 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/31,3.334859099999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/30,5.545174999999996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/30,2.798102250000006 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/23,8.39196000145998 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/23,7.114150003302488 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/10/09,3.8809310616666575 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/10/10,2.649202250000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/09/24,3.7282181807250017 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/09/24,8.259475000987507 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/11/10,5.7660553133333385 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/10/25,16.89644166759167 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/12/29,21.88613333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/12/29,21.791766666666685 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/01/29,23.67154166666665 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/02/06,21.67155833333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/02/06,21.67155833333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/05/06,4.663041919999991 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/05/06,3.811823593333326 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/04/27,4.749804169649163 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/06,14.556749999545 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/07,3.513089174999999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/07,5.680712525641018 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/05/29,19.497920833023336 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/05/29,19.40499166635667 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/23,3.2843272500475007 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/23,3.558729500047504 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/07/24,10.443350000017496 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/10,6.021225000144995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/10,3.663427250072499 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/07/25,7.155650000289996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/07/25,7.745500000434999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/09/10,2.9235314012002367 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/25,15.216091667029172 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/26,5.885808336703335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/26,5.429233335043339 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/06,3.8094115487391655 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/10/28,11.115525004889976 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/10/29,2.6227337500000005 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/10/29,2.8065415 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/12/07,8.467924593874743 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/12/07,7.915061499404363 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/24,2.5940908 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/24,2.6514544 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/21,3.120522462499998 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/21,3.166480037499998 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/01/08,21.867666666666683 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/01/25,22.274983333333346 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/03/30,22.00959166666668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/04/06,12.118141667124188 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/03/29,21.88613333333335 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/09,3.429213024999997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/09,5.092078799999992 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/08,4.487581809999994 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/01,4.940238491333324 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/01,5.587596218333324 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/04/30,3.210550009999997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/04/30,3.273250009999996 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/26,19.991699999125 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/06/10,6.992425000337494 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/06/10,5.220969231034222 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/25,6.468150005177503 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/25,3.07829975 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/11,23.344925000599986 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/11,23.760500000599983 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/03,6.536621989110836 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/03,5.971153429329998 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/06/25,4.127862389999991 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/05,16.97016666631666 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/05,18.05669999955499 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/28,7.264483347018326 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/28,7.664637507120001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/10,6.975229169519165 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/24,6.474133523767502 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/29,8.596325000192486 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/29,4.444550000072491 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/28,2.738878650000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/28,2.743419575 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/22,9.322749993884994 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/29,2.729052250000006 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/29,2.6791500000000013 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/22,2.540486250000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/22,2.7732115 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/11/09,3.010063525000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/11/09,3.102301137499999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/11/08,2.3071248499999992 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/11/08,2.0972498499999968 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/12/10,3.053088600000003 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/12/10,2.988960325000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/12/02,3.3739429999999984 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/12/02,3.366144230769229 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/02/04,22.25651666666668 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/02/21,9.610674999427513 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/04/10,11.199324999904997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/04/10,11.199324999904997 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/04/09,14.08581666661916 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/09,10.665329169394186 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/09,10.179304169334182 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/31,3.300150001377497 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/31,3.2603181813049984 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/26,3.4332196968116637 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/04,3.990629500000003 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/04,4.714579500000002 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/28,21.03988333781585 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/28,17.206741675174186 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/27,20.55087500920001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/22,2.429593181885 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/22,2.345977271957501 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/06,4.245625000144995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/06,3.905486379999994 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/21,3.913344230769232 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/21,2.9199317499999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/10,10.37843124757 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/05,8.018218752134999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/05,12.849891721311932 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/31,19.426208332855847 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/31,4.940538184102557 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/30,13.958283333333322 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/30,14.51358333333332 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/23,5.487899999999992 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/23,4.107829500047497 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/06,14.258600002347512 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/01,3.0610992468841665 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/01,3.2262984837683333 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/08,11.901729166451672 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/01,7.633875000332507 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/01,6.627902270477506 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/31,2.9653885500000023 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/31,2.907963550000003 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/03,15.24730833342836 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/23,8.883943747827516 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/03,6.446999999999999 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/03,2.7037022000000017 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/02,4.799104594999992 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/02,4.632306849999993 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/25,3.191949189999995 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/25,4.378593179999992 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/11/03,2.772854915000001 +Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/11/03,3.1677420424999974 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/02/22,21.77565833333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/02/22,21.675758333333352 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/02/22,21.77565833333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/02/22,21.675758333333352 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/04/28,6.241278361599406 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/06,3.191198699999997 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/04/28,6.241278361599406 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/06,3.191198699999997 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/06,4.649380327948335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/30,2.869864999022499 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/07,13.38898333345333 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/29,2.365313700000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/29,2.9263524857692267 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/22,3.452325000142498 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/06,4.649380327948335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/30,2.869864999022499 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/07,13.38898333345333 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/29,2.365313700000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/29,2.9263524857692267 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/22,3.452325000142498 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/07/08,3.881241671079169 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/22,5.214859799726071 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/07/08,3.881241671079169 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/22,5.214859799726071 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/08/09,3.4405303083333307 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/07/24,4.690172368148335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/08/10,3.2685000000000053 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/08/09,3.4405303083333307 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/07/24,4.690172368148335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/08/10,3.2685000000000053 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/11,3.04129892 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/02,8.148350000217501 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/02,13.951675000265013 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/11,3.04129892 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/02,8.148350000217501 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/02,13.951675000265013 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/10/05,6.595495828860846 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/26,8.736604176536671 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/27,3.226413793269229 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/10/05,6.595495828860846 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/26,8.736604176536671 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/27,3.226413793269229 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/05,2.2722314749999977 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/05,2.373996248626372 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/05,2.2722314749999977 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/05,2.373996248626372 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/29,4.957259095190002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/22,3.8034651688461536 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/12/07,3.475552250000005 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/12/07,3.655050000000009 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/30,6.505008548076916 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/29,4.957259095190002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/22,3.8034651688461536 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/12/07,3.475552250000005 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/12/07,3.655050000000009 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/30,6.505008548076916 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/01/08,21.95325833333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/01/08,21.95325833333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/01/24,21.791766666666685 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/01/24,21.791766666666685 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/02/26,22.404625000000006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/02/26,22.404625000000006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/05,8.584215279887761 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/05,8.584215279887761 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/07,4.6453728398094 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/30,7.456973488333318 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/21,4.829866296604998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/29,2.808313100000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/29,2.8625381000000014 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/07,4.6453728398094 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/30,7.456973488333318 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/21,4.829866296604998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/29,2.808313100000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/29,2.8625381000000014 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/23,12.429763692540009 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/31,4.280839783009999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/31,10.718000000262498 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/23,12.429763692540009 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/31,4.280839783009999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/31,10.718000000262498 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/03,3.887847731907495 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/06/24,9.290299997772498 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/11,3.8010681749999935 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/06/25,3.442474999999999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/03,3.887847731907495 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/06/24,9.290299997772498 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/11,3.8010681749999935 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/06/25,3.442474999999999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/11,4.318208334383332 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/04,3.455221827999996 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/26,4.7499966481152365 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/03,2.558674550000004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/03,2.5625970500000026 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/27,2.9188750000000026 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/11,4.318208334383332 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/04,3.455221827999996 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/26,4.7499966481152365 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/03,2.558674550000004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/03,2.5625970500000026 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/27,2.9188750000000026 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/05,3.937474283333326 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/27,2.50387879 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/04,4.921684089999996 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/04,2.5208659000000013 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/28,19.38827500043998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/05,3.937474283333326 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/27,2.50387879 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/04,4.921684089999996 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/04,2.5208659000000013 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/28,19.38827500043998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/07,2.816164413333332 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/28,6.090531819999999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/21,3.239106671333328 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/06,2.49923795576923 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/06,2.4523097307692288 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/29,4.38914826538461 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/07,2.816164413333332 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/28,6.090531819999999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/21,3.239106671333328 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/06,2.49923795576923 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/06,2.4523097307692288 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/29,4.38914826538461 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/08,3.228441821999997 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/23,5.488944747714282 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/07,3.001709668269229 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/07,2.7373650432692296 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/08,3.228441821999997 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/23,5.488944747714282 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/07,3.001709668269229 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/07,2.7373650432692296 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/10,5.815970830260848 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/09,2.6310022500000003 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/09,2.672775000000005 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/23,2.745027249999998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/23,2.55441582 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/10,5.815970830260848 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/09,2.6310022500000003 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/09,2.672775000000005 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/23,2.745027249999998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/23,2.55441582 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/01/11,21.080333333190858 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/25,21.791766666666685 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/01/11,21.080333333190858 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/25,21.791766666666685 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/04,21.919450000000012 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/04,21.919450000000012 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/03/08,12.010525000427505 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/27,21.88838333328585 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/27,21.95438333328585 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/20,14.617199999905004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/03/08,12.010525000427505 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/27,21.88838333328585 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/27,21.95438333328585 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/20,14.617199999905004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/03/23,22.294199999785004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/03/23,22.294199999785004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/05/03,7.79946667446167 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/04/24,12.997491721866677 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/05/03,7.79946667446167 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/04/24,12.997491721866677 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/06/11,19.634162500047506 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/06/11,19.634162500047506 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/06/27,7.942450000332503 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/05,7.970683344905828 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/05,12.410416698939173 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/06/27,7.942450000332503 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/05,7.970683344905828 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/05,12.410416698939173 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/07,9.581262514229996 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/29,6.017156447181671 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/30,2.5834159615384613 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/07,9.581262514229996 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/29,6.017156447181671 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/30,2.5834159615384613 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/08,6.752029165366678 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/30,8.300593180000007 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/23,4.590125000027504 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/07,8.330692961538471 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/07,6.529545638461549 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/22,7.440425000144995 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/22,4.601050000072492 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/08,6.752029165366678 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/30,8.300593180000007 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/23,4.590125000027504 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/07,8.330692961538471 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/07,6.529545638461549 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/22,7.440425000144995 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/22,4.601050000072492 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/10,8.569647379652494 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/01,3.622553171999992 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/24,7.835543180145004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/02,3.009136653846152 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/23,3.375699999999995 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/23,3.3230863499999943 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/10,8.569647379652494 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/01,3.622553171999992 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/24,7.835543180145004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/02,3.009136653846152 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/23,3.375699999999995 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/23,3.3230863499999943 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/11,8.64126427904761 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/10,2.8012862500000004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/10,2.430086000000001 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/25,2.564259140000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/25,6.031335011999992 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/11,8.64126427904761 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/10,2.8012862500000004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/10,2.430086000000001 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/25,2.564259140000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/25,6.031335011999992 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/12/04,4.818829812426067 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/01/05,22.404625000000006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/01/06,21.88613333333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/03/26,21.191483333285856 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/05/05,11.994925000000007 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/05/05,10.977125000000004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/04/28,7.384244230769224 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/05/29,14.382825025300004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/05/30,5.244916666931657 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/07/09,4.074660606666654 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/06/30,18.89132499999998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/07/08,3.8827719722191674 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/07/08,7.524750000527499 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/07/01,3.2087250000000056 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/06/22,4.946100000650003 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/06/22,5.149550000650004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/08/10,4.2963204999999896 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/08/09,4.247825000072496 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/08/09,8.716900000072508 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/09/03,3.305791666666672 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/10/05,2.8073453950000005 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/12/08,21.88613333333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/11/22,3.872450000000007 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/09,22.404625000000006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/02,22.539900000000006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/01,21.794191666666684 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/01,21.794191666666684 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/01/25,11.984250000427505 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/03/05,21.919450000000012 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/26,21.75304166666668 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/05/09,5.327930734333568 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/04/23,9.520208351185849 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/05/08,5.483200002300006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/05/08,4.598075002300002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/04/22,2.279306449999998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/04/22,2.2955564499999976 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/06/01,6.8129499973300085 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/06/09,3.1779999999999977 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/06/09,3.1941499999999974 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/08/05,4.164258294871787 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/07/27,3.7842758846153854 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/07/27,4.07935066826923 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/09/05,3.312535606666661 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/09/06,2.8026539615384616 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/09/21,3.2356492366666645 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/10/08,3.1135277615384576 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/09/29,21.403666666636667 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/11/09,2.753904499999998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/11/25,3.486877250000006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/02/05,22.373925000000007 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/03/08,22.308199999355008 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/02/21,22.476608333333346 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/03/07,21.675758333333352 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/04/01,10.042590996190958 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/02,7.523738641666662 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/04/25,14.399766721866678 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/10,3.004425000000006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/10,2.462477250000004 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/03,4.133344230769232 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/27,7.908108333880829 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/06/04,4.154700000820001 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/26,13.746250000284984 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/26,2.693827250000005 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/07/05,6.539775003115006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/06/28,3.10738939840583 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/07/06,3.269843627472527 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/08/06,7.490250000432503 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/07/30,6.659893567333337 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/08/07,3.584379500192499 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/08/31,3.702599999999993 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/08/23,4.100161751923072 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/10/09,3.9848698703333274 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/10/10,11.62204423091423 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/11/10,4.948423524380946 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/11/03,5.491774998910002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/10/25,13.036245844880844 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/12/29,21.67155833333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/01/29,22.373925000000007 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/02/06,21.981250000000014 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/01/30,21.856800000000018 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/03/02,22.404625000000006 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/04/03,10.32346666829666 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/04/04,13.522633333590848 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/05/06,2.648727250000007 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/06/06,11.012212502550002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/06/07,2.470552185000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/05/29,6.726879568872502 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/05/29,5.978578046639993 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/06/23,4.32623182 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/08/10,4.785896530841722 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/07/25,5.9417220133333215 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/09/10,3.69743107681166 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/09/03,4.561282860769228 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/08/25,11.11146666956666 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/09/11,8.042408334793313 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/08/26,2.967877249999999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/06,5.178159911047614 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/10/28,3.7039244153333306 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/05,10.737150000184988 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/05,12.963208333533323 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/10/29,2.9193938173076925 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/24,2.5685759307692275 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/24,2.6375530807692296 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/21,2.2780907499999983 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/21,2.143295349999997 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/12/23,21.791766666666685 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/01/25,22.13946666666668 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/01/24,21.867666666666683 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/02/26,22.76205 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/02/26,22.424041666666675 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/03/30,22.30574166666668 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/04/06,9.160074999667518 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/04/06,9.593525000210022 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/03/29,21.88613333333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/03/29,21.88613333333335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/03/22,16.549375000190008 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/09,2.530193665000001 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/08,5.249575002299999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/08,7.126025002300008 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/01,4.485335606859164 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/04/30,4.639625000072497 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/04/30,4.899400000072498 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/24,4.2447651566666575 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/24,4.218015156666658 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/04,20.035124999925003 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/11,4.578664885814878 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/11,6.693437505700002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/03,8.182402273865003 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/03,8.573290534574172 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/06/25,2.517374200000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/06/25,2.334577150000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/02,5.661774996945005 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/05,11.294750000047484 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/28,3.922909091594995 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/10,7.36641287681167 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/29,3.1743567500000007 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/28,2.763777330000001 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/28,2.88398643 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/10/08,22.425941667374182 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/30,18.30434166725165 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/29,4.308452269999998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/29,2.593806520000001 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/21,3.274575599999999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/21,2.306831700000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/10/31,5.595391666664174 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/09,2.7882354842032964 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/08,2.5359019057692302 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/08,2.412473580769228 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/12/10,2.653052199999999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/12/10,2.2109147250000003 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/12/02,3.5177772500000053 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/12/02,19.900341666451656 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/24,2.8510795000000013 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/24,3.092050000000002 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/02/04,22.14189166666668 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/04/10,12.689241666571668 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/04/09,11.932783333238326 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/04/09,10.272183333238324 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/04/02,13.345399999857504 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/09,11.174474195811658 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/11,4.0412651642674975 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/11,4.867989408255831 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/31,2.459352270435 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/26,3.069002270144998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/05,8.267950000289995 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/04,5.751989031293335 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/04,6.63332311929833 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/28,20.53618333357336 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/27,16.967225000267494 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/27,11.5805000054875 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/22,3.248327270217496 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/06,4.587868099999998 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/06,3.7620703499999975 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/21,4.084583868717941 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/05,8.007387499932518 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/31,6.089999999999993 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/30,3.77744999999999 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/30,4.235637123333322 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/23,2.7055750000000027 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/22,5.129786863829049 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/22,4.826876254228216 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/06,3.0543651717391627 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/01,3.57510832717416 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/01,5.250125000337492 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/31,4.062309119999996 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/31,3.725670308333328 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/23,3.521456849999995 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/23,4.273986349999995 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/10/03,17.37690834713334 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/28,5.828570828278347 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/10/03,2.701483950000003 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/10/02,2.462770175000001 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/10/02,2.4588254500000017 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/25,2.6620117932692318 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/11/03,3.1535642799999954 +Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/11/03,2.2035518249999986 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/02/23,22.47810000000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/02/22,21.227400000000024 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/02/23,22.47810000000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/02/22,21.227400000000024 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/04/28,5.508731824935003 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/06,6.998050000000002 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/04/28,5.508731824935003 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/06,6.998050000000002 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/06/06,4.093772875488448 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/06/07,15.403533333405813 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/29,5.955460607026668 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/22,6.282640909999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/06/06,4.093772875488448 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/06/07,15.403533333405813 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/29,5.955460607026668 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/22,6.282640909999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/07/08,14.384916669351677 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/07/08,14.384916669351677 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/09,3.8851371334783273 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/02,17.13799999999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/07/24,12.35992500242 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/10,4.301713461538462 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/09,3.8851371334783273 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/02,17.13799999999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/07/24,12.35992500242 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/10,4.301713461538462 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/25,3.5124566764058285 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/11,4.3648000003599945 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/02,8.465125000624994 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/25,3.5124566764058285 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/11,4.3648000003599945 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/02,8.465125000624994 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/10/05,14.080250043269992 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/10/04,13.413274999554986 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/27,2.3453074875 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/10/05,14.080250043269992 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/10/04,13.413274999554986 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/27,2.3453074875 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/11/05,2.279867750000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/11/05,2.279867750000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/11/29,4.670097624047613 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/12/07,5.76801201487179 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/11/29,4.670097624047613 +North Lake,15510136,-74.92759527842983,43.5383416891066,2015/12/07,5.76801201487179 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/05,14.6010811319336 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/05,14.6010811319336 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/05/07,9.381770834188334 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/30,5.858847735010003 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/21,20.878375000590008 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/29,3.702450029999996 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/05/07,9.381770834188334 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/30,5.858847735010003 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/21,20.878375000590008 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/29,3.702450029999996 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/05/31,5.965268959462494 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/05/31,5.965268959462494 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/06/24,4.580075001132503 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/07/11,11.132300000047485 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/06/25,4.647022734999992 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/06/24,4.580075001132503 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/07/11,11.132300000047485 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/06/25,4.647022734999992 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/11,2.528284103117499 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/04,4.252643200072487 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/03,3.8212823399999927 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/07/27,4.283238599999999 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/11,2.528284103117499 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/04,4.252643200072487 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/03,3.8212823399999927 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/07/27,4.283238599999999 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/05,3.935880934871788 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/27,8.196412511379997 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/04,4.804416673333327 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/05,3.935880934871788 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/27,8.196412511379997 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/04,4.804416673333327 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/07,2.991959094999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/21,3.2926204899999942 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/06,2.3812227000000004 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/07,2.991959094999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/21,3.2926204899999942 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/06,2.3812227000000004 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/23,3.397028935333332 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/11/07,2.3043611000000004 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/23,3.397028935333332 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/11/07,2.3043611000000004 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/11/23,2.9015750000000025 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/11/23,2.9015750000000025 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/12/25,22.06340833333335 +North Lake,15510136,-74.92759527842983,43.5383416891066,2016/12/25,22.06340833333335 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/03/08,9.501491667451669 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/02/27,21.67155833333335 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/03/08,9.501491667451669 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/02/27,21.67155833333335 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/03/23,22.26459166666668 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/04/09,20.26455833323837 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/03/23,22.26459166666668 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/04/09,20.26455833323837 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/04/24,5.593825002757503 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/04/24,5.593825002757503 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/06/11,15.919283333333317 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/06/03,7.708533340280825 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/06/11,15.919283333333317 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/06/03,7.708533340280825 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/05,3.0466187249999974 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/05,3.0466187249999974 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/29,6.099849248454168 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/08/06,9.242309100000009 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/30,2.8321732125000008 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/29,6.099849248454168 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/08/06,9.242309100000009 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/30,2.8321732125000008 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/08/23,7.9342331668194 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/08/23,7.9342331668194 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/01,17.144758333273334 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/09/24,2.763399257101665 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/02,2.7182495625000023 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/09/23,5.299012505314998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/01,17.144758333273334 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/09/24,2.763399257101665 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/02,2.7182495625000023 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/09/23,5.299012505314998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/11/11,9.709887012380944 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/11/10,3.2187157115384624 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/25,9.235037727999991 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/11/11,9.709887012380944 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/11/10,3.2187157115384624 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/25,9.235037727999991 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/12/04,8.13163749929502 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/01/05,23.486291666666656 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/12/29,22.539900000000006 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/01/06,21.848400000000016 +North Lake,15510136,-74.92759527842983,43.5383416891066,2017/12/28,21.848400000000016 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/05/05,4.619175002299999 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/04/28,17.110014584343332 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/05/30,12.06014999999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/07/09,3.5444728000724943 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/06/30,16.379491666786635 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/07/08,12.99238333311832 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/06/22,5.348575000842499 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/08/10,3.909682164102559 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/08/09,4.53955909999999 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/09/03,3.440602250047502 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/08/25,11.58782500019998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/10/05,3.668209100072496 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/12/07,22.663366666666672 +North Lake,15510136,-74.92759527842983,43.5383416891066,2018/11/22,21.75304166666668 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/02/09,22.351800000000008 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/03/06,22.752450000000003 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/02/26,21.856800000000018 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/05/09,8.25630833333335 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/04/23,4.346850002682501 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/05/08,3.224149794999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/04/22,4.415369774999995 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/06/01,9.373904165666683 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/06/09,5.145125000047499 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/07/03,4.001424256884159 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/08/05,3.5639142073717918 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/07/27,12.728710416816648 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/09/05,4.251597789999988 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/08/29,4.319092268205123 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/09/06,3.1429251682692274 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/09/21,7.521478786666663 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/10/08,6.537034099999992 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/09/29,3.124676284999997 +North Lake,15510136,-74.92759527842983,43.5383416891066,2019/11/09,2.634536080000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/02/21,22.490608333333338 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/05/02,15.468750004600018 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/04/25,12.381991694339176 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/05/10,13.228183333118318 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/05/03,3.8467854629999993 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/06/04,4.067355000072492 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/05/26,5.814550000047502 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/07/05,3.5446636404349947 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/06/28,5.021474999999999 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/07/06,3.620737794871789 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/06,4.820475000072488 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/07,14.590583333318312 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/31,3.85533560666666 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/09/08,7.396025000714993 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/30,4.383874999999998 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/23,6.896068180262506 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/10/09,3.422612896666662 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/09/23,7.249012488360005 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/09/24,12.565416666976668 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/11/03,4.181493750402507 +North Lake,15510136,-74.92759527842983,43.5383416891066,2020/10/25,11.974191687834177 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/01/30,21.75304166666668 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/04/03,14.227841666666666 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/04/04,12.99661666661917 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/05/06,13.35798333331832 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/06/07,7.239883336970827 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/05/29,14.384841696614176 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/08/02,4.928772639047612 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/07/25,2.933225000000003 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/08/25,6.563925001497499 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/09/11,3.444550000000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/08/26,4.380587430841722 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/11/06,4.37548562966666 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/10/28,3.84061289666666 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/10/29,2.8528725 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/12/07,11.77186666665166 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/11/24,3.5630211923076924 +North Lake,15510136,-74.92759527842983,43.5383416891066,2021/11/21,3.257706750000003 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/01/08,21.838800000000013 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/01/24,21.675758333333352 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/09,4.612043880769225 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/08,5.246806819999994 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/01,6.534732579004167 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/04/30,2.8438666250000013 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/31,16.734574999710002 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/06/10,2.5811295000000025 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/25,2.712625000000004 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/24,3.112844697656669 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/07/04,8.965950003719986 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/07/11,3.525842426666665 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/07/04,20.42844166681167 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/07/03,2.648516350000002 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/06/26,20.208974999707507 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/06/25,4.36759549999999 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/08/05,2.611199999999997 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/10,6.230000002632504 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/08/29,7.305775000072504 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/08/28,2.454490665000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/10/09,11.524198147560831 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/22,22.91974166580418 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/29,12.738333333333316 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/22,3.5095650961538483 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/21,5.277200000265003 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/11/09,2.609203125 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/11/08,2.3859405500000004 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/12/10,2.399899850000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/12/02,12.321733333733324 +North Lake,15510136,-74.92759527842983,43.5383416891066,2022/11/24,3.878036250000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/04/02,22.274983333333346 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/03/24,10.093858333793342 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/09,9.375206253687516 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/11,4.887899999999999 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/31,9.512684090917505 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/26,4.062275000072496 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/06/04,5.290674251483336 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/28,15.71840833419082 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/27,14.38643333340584 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/06/22,5.550840912777499 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/07/06,4.70182500048249 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/06/21,2.656802250000004 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/07/31,10.778812503224993 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/07/23,3.9446348438461496 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/07/22,12.397516671386663 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/06,6.812341673453334 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/01,4.709739285714277 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/01,4.989218184999992 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/08/31,2.887988550000001 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/08/23,4.961199999999994 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/10/03,14.744483340375831 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/28,17.492175104354985 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/10/03,2.868362659999999 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/10/02,3.8049922549999953 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/25,3.899177269999994 +North Lake,15510136,-74.92759527842983,43.5383416891066,2023/11/03,3.1628304649999985 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/03/11,21.57322500000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/02/23,22.351800000000008 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/03/11,21.57322500000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/02/23,22.351800000000008 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/04/04,8.298874998855009 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/04/04,8.298874998855009 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/04/28,3.416349266666661 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/06,3.4201409099999984 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/04/28,3.416349266666661 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/06,3.4201409099999984 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/06/06,26.38397500028502 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/30,20.901556668039184 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/29,5.7775356070491695 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/22,2.914916899999997 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/06/06,26.38397500028502 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/30,20.901556668039184 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/29,5.7775356070491695 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/22,2.914916899999997 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/07/08,18.4376125 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/06/22,5.147889656816069 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/07/08,18.4376125 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/06/22,5.147889656816069 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/09,3.230579203388276 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/02,13.847666666451646 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/09,3.230579203388276 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/02,13.847666666451646 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/03,8.755109670647501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/25,20.388324998279995 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/11,2.509911250000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/02,7.436850000265012 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/03,8.755109670647501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/25,20.388324998279995 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/11,2.509911250000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/02,7.436850000265012 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/10/05,5.42095909 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/26,5.247187505367501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/10/04,5.455799249925825 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/27,2.856914197664834 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/10/05,5.42095909 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/26,5.247187505367501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/10/04,5.455799249925825 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/27,2.856914197664834 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/05,2.52400655 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/05,2.52400655 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/29,5.368720352380946 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/22,4.545077470440236 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/12/07,2.8036856490384605 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/30,5.105492417380187 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/29,5.368720352380946 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/22,4.545077470440236 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/12/07,2.8036856490384605 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/30,5.105492417380187 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/01/08,21.66638333333335 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/01/08,21.66638333333335 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/02/02,12.54454999985751 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/02/02,12.54454999985751 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/02/26,15.118649999999995 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/02/26,15.118649999999995 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/05,10.208727782472758 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/03/29,10.564457519387492 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/05,10.208727782472758 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/03/29,10.564457519387492 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/30,5.868812148405828 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/21,4.9935481114808296 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/08,3.084249999999999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/29,2.7764654 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/30,5.868812148405828 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/21,4.9935481114808296 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/08,3.084249999999999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/29,2.7764654 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/23,3.090183332688337 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/31,6.221258718836666 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/23,3.090183332688337 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/31,6.221258718836666 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/03,3.250754570434998 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/02,3.792279500047501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/06/25,2.9047292500000026 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/03,3.250754570434998 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/02,3.792279500047501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/06/25,2.9047292500000026 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/04,3.343075099999996 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/03,10.394675000312493 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/27,2.5170245400000013 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/04,3.343075099999996 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/03,10.394675000312493 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/27,2.5170245400000013 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/05,3.473227749999994 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/27,9.561100021059998 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/04,4.567968199999994 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/28,4.600238630119994 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/05,3.473227749999994 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/27,9.561100021059998 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/04,4.567968199999994 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/28,4.600238630119994 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/07,4.778986999666662 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/21,3.202937409999995 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/06,2.6930054557692307 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/29,2.537482480769232 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/07,4.778986999666662 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/21,3.202937409999995 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/06,2.6930054557692307 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/29,2.537482480769232 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/08,3.7843354649999927 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/23,3.9096218199999937 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/07,2.781391293269229 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/08,3.7843354649999927 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/23,3.9096218199999937 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/07,2.781391293269229 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/10,9.856575021207505 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/09,3.115175000000008 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/23,3.381513461538459 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/10,9.856575021207505 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/09,3.115175000000008 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/23,3.381513461538459 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/26,24.44116666666665 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/25,14.471199999952503 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/26,24.44116666666665 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/25,14.471199999952503 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/02/03,22.674233333333337 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/02/03,22.674233333333337 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/03/08,12.310461763076912 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/03/08,12.310461763076912 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/08,9.975166666451678 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/03/23,21.348820833285853 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/09,14.463808334673326 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/08,9.975166666451678 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/03/23,21.348820833285853 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/09,14.463808334673326 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/24,13.187025039100014 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/05/11,12.88616666806666 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/24,13.187025039100014 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/05/11,12.88616666806666 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/11,7.916916663299169 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/03,5.001125000072495 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/11,7.916916663299169 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/03,5.001125000072495 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/07/05,2.5738545000475 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/28,4.04064486153846 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/07/05,2.5738545000475 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/28,4.04064486153846 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/07,9.3371272780225 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/06,4.39972725 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/07/30,2.747226524038462 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/07,9.3371272780225 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/06,4.39972725 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/07/30,2.747226524038462 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/30,7.493850020762501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/23,16.07449999999999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/07,3.06179965153846 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/30,7.493850020762501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/23,16.07449999999999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/07,3.06179965153846 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/10,4.280395833488341 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/01,3.1656128599999955 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/24,2.592159858333332 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/02,3.0230165550366284 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/23,2.725781600000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/10,4.280395833488341 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/01,3.1656128599999955 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/24,2.592159858333332 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/02,3.0230165550366284 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/23,2.725781600000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/11/11,4.810926429999996 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/11/10,4.693459942307694 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/25,15.83125833385832 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/11/11,4.810926429999996 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/11/10,4.693459942307694 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/25,15.83125833385832 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/12/04,8.895049185225249 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/01/06,21.88613333333335 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/04/11,22.34590833333334 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/03/26,20.64578333323836 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/05/05,5.123859102299999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/04/28,3.9526477548076935 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/05/29,4.514278794210834 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/05/30,7.008816670256671 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/07/09,4.631343199999986 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/06/30,19.32117499999999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/07/08,13.26605833333332 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/06/22,5.426958342624997 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/08/10,18.787110607615844 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/08/09,3.297646213333329 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/08/25,6.969525000990006 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/10/05,3.6486113500724975 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/11/22,21.18264999989252 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/03/05,13.9344499997375 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/02/26,21.794191666666684 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/05/09,9.891324992557504 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/04/23,12.039650025300007 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/05/08,2.8458040000000024 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/04/22,5.370800007637495 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/06/01,6.411145828970849 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/06/09,3.01831709 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/07/03,11.770756251340002 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/06/26,7.6192250036249956 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/08/04,11.918758750712517 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/07/28,3.378175001829999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/08/05,2.3354801057692307 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/07/27,12.946791676226676 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/05,3.830557889999992 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/08/29,4.434683906666656 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/06,4.34803613076922 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/30,7.38649999820501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/21,3.735496966666661 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/10/08,3.674924999999996 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/29,3.551086349999996 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/22,3.067525000000007 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/11/01,9.342704165381678 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/11/09,3.038514999999998 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/10/24,2.864534994999999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/12/11,14.34277499990501 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/11/25,4.04625484807692 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/02/29,21.750616666666684 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/04/01,14.33445833912584 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/02,7.763037894039167 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/04/25,7.551016292735836 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/10,3.1673340000000008 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/03,4.828634139999994 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/27,2.9669340908699966 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/06/04,6.099450005055004 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/26,3.5384750549999984 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/07/06,2.723527680000002 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/08/06,3.2093431800724948 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/07/30,3.533071966666662 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/08/07,10.585260715293204 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/08/31,4.017616673706668 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/08/22,7.898608343008326 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/10/09,5.097268249999988 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/09/23,12.451091673614169 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/10/10,11.375963461610953 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/09/24,13.980449999999983 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/11/10,4.616762281999993 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/11/03,4.360156815119999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/10/25,9.223675002442487 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/12/29,21.848400000000016 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/01/22,24.02516666666665 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/03/02,22.34590833333334 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/04/04,15.073337501150013 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/05/06,3.4456862499999987 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/06/06,15.933658372505828 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/06/07,3.841174999999999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/06/23,4.020775000000004 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/08/02,3.0307318799999967 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/07/24,7.86551212669916 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/08/10,8.488225000864992 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/07/25,3.294097481538462 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/09/10,3.946802875876786 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/09/03,4.19847738675988 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/08/25,7.846211366569999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/09/11,4.92817500057999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/08/26,7.671093180572509 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/09/26,6.675262143478335 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/06,8.518690049047622 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/10/28,7.481878028333325 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/09,5.626596972439167 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/05,3.1234192307692323 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/10/29,3.050501524038461 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/24,2.600628180769227 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/21,5.040987513812495 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/12/23,9.921456827787503 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/02/01,22.35679166666668 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/02/26,22.274983333333346 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/03/30,9.522083333118344 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/09,4.159495459999993 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/09,2.8407344500000016 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/08,4.999268567483329 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/01,4.6051568254574935 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/04/30,4.777156828712496 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/04/23,4.650075000144995 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/26,12.282100000000012 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/24,8.68707500009498 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/07/04,16.78700833350332 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/06/29,4.424950000264993 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/07/11,5.109756179365714 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/07/04,12.729983333118316 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/07/03,2.9583045 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/06/26,4.985534100072495 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/06/25,3.5778144283333284 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/07,2.868224580873336 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/05,3.146330250000004 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/04,4.500075000094997 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/09/10,8.223102545085958 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/29,3.131261200000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/28,4.482275000144994 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/10/09,6.907344067806658 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/10/08,2.7465405000000023 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/09/30,18.212975000369998 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/09/29,2.2625179500000003 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/09/21,4.295800000000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/10/31,7.111441659991675 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/11/09,2.9474509592032967 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/11/08,3.494268169999996 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/10/24,13.941308333333328 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/12/10,2.551283650000001 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/12/02,12.33248333311832 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/11/24,6.194904169111659 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/01/11,10.69658333333334 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/02/04,22.27605833328585 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/02/21,11.328266666571674 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/02/20,11.754979923210833 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/04/10,11.623258333238326 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/04/09,15.81944999995249 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/04/02,11.66484167232166 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/04/01,14.423058338123328 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/03/24,22.428574999737503 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/09,9.502345836628342 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/11,9.20070833563332 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/31,6.860000001107507 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/26,3.730319696811662 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/06/05,14.448908336063337 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/06/04,8.360277500072504 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/28,23.550758335683348 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/27,14.617533335203332 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/06/22,8.764958336739166 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/07,5.180275000072488 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/06,3.4403330307692244 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/06/21,4.947074256956663 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/08/05,2.796929541304999 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/31,3.122325010797498 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/31,7.649375000144997 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/30,9.7715750002875 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/23,4.107164142307688 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/22,5.987913655038326 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/09/01,2.1597295602650024 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/09/08,3.670143011538457 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/09/01,2.5613097307692323 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/08/31,4.407172724999993 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/08/23,3.759709099999995 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/10/03,4.421791884999992 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/10/02,3.3892385 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/09/25,2.7722961057692306 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/11/11,2.440443918269229 +Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/11/03,3.365302752499996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/02/23,22.326100000000007 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/02/23,22.326100000000007 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/04/28,5.854846327272735 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/06,5.071850002299996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/04/28,5.854846327272735 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/06,5.071850002299996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/06/06,8.154991660621668 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/30,9.311385664520843 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/29,3.806631223333323 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/22,4.782825000359995 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/06/06,8.154991660621668 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/30,9.311385664520843 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/29,3.806631223333323 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/22,4.782825000359995 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/07/08,14.982270842820828 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/06/22,10.24205000386999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/07/08,14.982270842820828 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/06/22,10.24205000386999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/09,3.773306061666657 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/02,21.738899998890005 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/10,3.743126095769227 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/01,2.453952250000005 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/09,3.773306061666657 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/02,21.738899998890005 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/10,3.743126095769227 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/01,2.453952250000005 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/03,3.813092426811661 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/25,11.08103336393083 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/11,2.7904065000000027 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/02,14.55590833340584 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/26,2.5449384999999998 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/03,3.813092426811661 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/25,11.08103336393083 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/11,2.7904065000000027 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/02,14.55590833340584 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/26,2.5449384999999998 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/10/05,6.392595836418334 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/26,21.607254168679187 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/10/04,6.429987504214989 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/27,2.556597216895604 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/10/05,6.392595836418334 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/26,21.607254168679187 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/10/04,6.429987504214989 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/27,2.556597216895604 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/05,2.4250201500000004 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/05,2.4250201500000004 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/29,4.417503181999995 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/22,3.832989151538458 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/12/07,2.2807483625 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/30,3.712217467307689 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/29,4.417503181999995 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/22,3.832989151538458 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/12/07,2.2807483625 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/30,3.712217467307689 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/02/02,13.545278320816708 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/02/02,13.545278320816708 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/02/26,14.227633333333328 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/02/26,14.227633333333328 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/05,13.6013000233125 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/03/29,6.820399992125009 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/05,13.6013000233125 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/03/29,6.820399992125009 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/30,4.172829935759166 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/21,4.736467148593567 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/29,3.763254549999998 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/30,4.172829935759166 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/21,4.736467148593567 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/29,3.763254549999998 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/05/23,4.447329581833339 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/05/31,7.6380439408266705 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/05/23,4.447329581833339 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/05/31,7.6380439408266705 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/03,3.8527977349999913 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/06/24,18.2365875023 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/02,4.193502250000002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/06/25,3.30134285 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/03,3.8527977349999913 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/06/24,18.2365875023 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/02,4.193502250000002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/06/25,3.30134285 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/11,6.109403789200838 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/04,3.316375099999996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/26,7.455366295623329 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/03,2.621502250000002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/27,2.646765250000001 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/11,6.109403789200838 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/04,3.316375099999996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/26,7.455366295623329 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/03,2.621502250000002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/27,2.646765250000001 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/05,4.28021364999999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/27,3.753413654999993 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/04,3.721702249999999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/28,4.364875000072491 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/05,4.28021364999999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/27,3.753413654999993 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/04,3.721702249999999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/28,4.364875000072491 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/07,4.069904554999996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/21,3.029059657999997 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/06,2.436277061538459 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/29,3.917875000144997 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/07,4.069904554999996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/21,3.029059657999997 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/06,2.436277061538459 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/29,3.917875000144997 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/08,4.638752136333327 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/23,4.471058490333325 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/07,2.8136154057692293 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/08,4.638752136333327 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/23,4.471058490333325 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/07,2.8136154057692293 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/10,11.916374999324994 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/23,3.0725260507692296 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/10,11.916374999324994 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/23,3.0725260507692296 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/26,24.44116666666665 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/25,21.30071666666669 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/26,24.44116666666665 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/25,21.30071666666669 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/02/27,14.4518750034025 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/02/20,20.50210833788586 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/02/27,14.4518750034025 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/02/20,20.50210833788586 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/08,22.29679999935501 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/03/23,23.677016666666656 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/09,14.241749999952493 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/08,22.29679999935501 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/03/23,23.677016666666656 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/09,14.241749999952493 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/05/03,10.968629164914187 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/24,15.503333354033357 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/05/03,10.968629164914187 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/24,15.503333354033357 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/11,26.143412500285013 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/03,21.498699999755004 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/11,26.143412500285013 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/03,21.498699999755004 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/07/05,2.4717295000000004 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/28,3.613399999999991 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/07/05,2.4717295000000004 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/28,3.613399999999991 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/08/06,4.262475000819992 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/07/30,3.2122864723076883 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/08/06,4.262475000819992 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/07/30,3.2122864723076883 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/08,7.631518969236668 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/08/30,9.840066667104166 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/07,5.288499999999995 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/08,7.631518969236668 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/08/30,9.840066667104166 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/07,5.288499999999995 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/10,2.4350280683333327 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/01,4.272740206666657 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/24,2.750310601739165 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/02,2.6254648418956053 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/23,2.736410350000002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/10,2.4350280683333327 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/01,4.272740206666657 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/24,2.750310601739165 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/02,2.6254648418956053 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/23,2.736410350000002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/11/11,4.263665853333325 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/11/10,3.54278185 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/25,17.01351666685165 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/11/11,4.263665853333325 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/11/10,3.54278185 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/25,17.01351666685165 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/12/04,24.298416667199163 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/01/06,21.66638333333335 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/03/26,20.789133333238357 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/05/05,10.503166692066658 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/04/28,5.787280907692299 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/05/29,14.14245834497833 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/05/30,6.922950000144999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/07/09,4.798588654999985 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/06/30,13.312679165136664 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/07/08,15.2994000000725 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/06/22,8.43910000112748 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/08/10,10.151087501102502 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/08/09,8.585675009247485 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/09/03,4.590850003454996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/08/25,11.665883338005823 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/09/27,6.468208320773344 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/10/05,2.9627499500000023 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/12/24,21.84966666666668 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/01/25,21.867666666666683 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/03/05,21.88613333333335 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/02/26,21.867666666666683 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/05/09,8.25923332760084 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/04/23,7.779416665401668 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/05/08,6.144000009199998 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/04/22,13.993430607619278 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/06/01,6.970787497012512 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/06/09,10.81485833266334 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/07/03,1.7842778751491692 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/06/26,3.8401681999999937 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/07/28,4.392994700090834 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/08/05,2.9049181749999984 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/07/27,5.863500000072494 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/05,3.366412876666661 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/08/29,4.993760706666654 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/06,2.6545904750000004 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/30,5.058710608645831 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/21,3.762346966666661 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/10/08,4.241460000072494 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/29,13.29088333340583 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/22,3.373802250000008 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/11/09,2.68649 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/10/24,4.603675000167493 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/12/11,12.963500000100003 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/11/25,11.781941666851669 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/02/05,22.308074999785003 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/02/29,21.981250000000014 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/04/01,12.884549705970956 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/05/02,7.853468187372499 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/04/25,7.650148488536669 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/05/03,8.035391675866656 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/05/27,7.560634090530001 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/06/04,3.828833199999992 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/05/26,3.578485499999993 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/06/28,2.6175219724641665 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/07/06,2.849658055769233 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/08/06,12.446725001015002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/07/30,7.176881241772502 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/08/07,3.3901356216666643 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/08/31,2.986878699999996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/09/08,11.852849999999982 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/08/23,2.9488045000000045 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/10/09,4.299685666666656 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/09/23,15.33999791901418 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/10/10,6.754734615384618 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/09/24,13.819124999999987 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/11/10,4.421963532380945 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/11/03,4.474422725119997 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/10/25,8.653041671266665 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/12/29,21.66638333333335 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/01/22,11.185191666451669 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/01/30,21.66638333333335 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/03/02,22.26459166666668 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/04/04,6.885124997190012 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/05/06,2.254113970000002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/06/06,12.556866685211672 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/06/07,5.244956066884162 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/06/23,3.0311324049999984 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/08/02,6.846125003212502 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/08/10,3.388025000095006 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/09/03,7.186762502724999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/08/25,7.57078636628 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/09/11,3.550744099999994 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/08/26,7.8431681805025075 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/11/06,6.473859863550829 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/10/28,6.27109291834857 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/11/09,2.629425 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/10/29,2.3506528625 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/11/24,2.511767911538459 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/11/21,4.410999999999999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/01/08,21.791766666666685 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/02/01,22.34590833333334 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/02/01,21.961558333333347 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/02/26,9.779150000000014 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/02/26,21.88446666666668 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/03/30,10.630341666666675 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/03/29,21.59175833311836 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/09,3.8225606067391618 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/09,2.5188294000000018 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/08,7.587083339438323 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/01,3.9563903433333287 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/04/30,7.33658333924832 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/04/23,12.548425001399997 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/06/10,7.210300000964995 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/25,5.748450000047496 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/24,5.2571000004575055 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/07/04,16.255408332688322 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/07/11,9.73655000237249 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/07/04,12.24327499983248 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/07/03,7.417062121044169 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/06/26,2.597634000000001 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/06/25,3.0169300899999985 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/08/05,4.872044230841722 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/09/10,4.39794698700416 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/08/29,2.811524870000003 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/08/28,2.405763590000003 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/10/09,6.496224994735012 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/10/08,2.462982249999999 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/09/29,3.0714158750000053 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/09/21,4.662384099999996 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/10/31,4.5036318269991655 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/11/09,2.493396230769232 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/11/08,3.3512550999999986 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/10/24,23.651808333333328 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/12/10,2.477154300000002 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/12/02,16.418316666421653 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/11/24,4.057981134615386 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/12/26,21.88613333333335 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/02/04,22.070833333333347 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/02/21,9.406366666666678 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/02/20,12.31205492361833 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/04/10,11.244116666619158 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/04/02,13.335799999857503 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/04/01,13.855408333285828 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/03/24,14.042591667931683 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/09,8.123699999677518 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/11,7.466100002772488 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/04/26,2.405375000000001 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/31,9.069668180965 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/26,3.277120460072497 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/06/05,13.65627992672249 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/06/04,4.963700000264993 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/28,9.657816669566678 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/27,15.247983336253338 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/06/22,8.110896967076663 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/06,6.143625000167499 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/06/21,3.9812522500475 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/08/05,2.8962522713049976 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/31,7.152562493185001 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/30,14.43772500031249 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/23,4.394528033333321 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/22,6.267299246238337 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/09/01,4.025284100289992 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/09/01,2.168652725000001 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/08/31,3.7125628966666615 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/08/23,3.710486369999994 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/09/28,6.472433331215841 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/10/03,3.816727309999992 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/10/02,4.951869373333333 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/09/25,3.7682877549999927 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/11/11,2.32786535 +Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/11/03,2.8089496024999976 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/02/23,22.674233333333337 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/02/23,22.674233333333337 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/04/04,10.866300000000004 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/04/04,10.866300000000004 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/06,4.298452269999997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/06,4.298452269999997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/06/06,9.020983326570835 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/30,2.863043749985004 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/29,4.912245093456663 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/22,3.2073981999999965 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/06/06,9.020983326570835 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/30,2.863043749985004 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/29,4.912245093456663 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/22,3.2073981999999965 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/07/08,17.44489583170585 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/06/22,12.938737502099997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/07/08,17.44489583170585 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/06/22,12.938737502099997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/09,2.9727943783882766 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/02,14.289058333333315 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/07/24,4.267104173626668 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/01,5.010765849999999 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/09,2.9727943783882766 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/02,14.289058333333315 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/07/24,4.267104173626668 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/01,5.010765849999999 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/03,8.107037498977515 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/25,15.652425013920013 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/11,2.5496355625 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/02,3.719675000000006 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/26,3.421364812499994 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/03,8.107037498977515 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/25,15.652425013920013 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/11,2.5496355625 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/02,3.719675000000006 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/26,3.421364812499994 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/10/05,13.587930039668574 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/26,5.610853415155003 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/27,3.580972939102565 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/10/05,13.587930039668574 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/26,5.610853415155003 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/27,3.580972939102565 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/05,2.953236250000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/05,2.953236250000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/29,4.800688686047612 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/22,4.180580082746906 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/12/07,3.0909952884615355 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/30,5.197750000144997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/29,4.800688686047612 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/22,4.180580082746906 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/12/07,3.0909952884615355 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/30,5.197750000144997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/02/10,22.64890000000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/02/02,8.725824998275014 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/02/10,22.64890000000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/02/02,8.725824998275014 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/05,12.84000334713583 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/03/29,10.135750000877527 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/05,12.84000334713583 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/03/29,10.135750000877527 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/30,11.038500017782498 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/21,14.10249583927334 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/05/08,3.0923692307692345 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/29,6.308183345042489 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/30,11.038500017782498 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/21,14.10249583927334 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/05/08,3.0923692307692345 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/29,6.308183345042489 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/05/31,6.910768196002496 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/05/31,6.910768196002496 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/03,18.365070832183356 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/06/24,11.815329166666675 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/11,13.83875833333332 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/02,3.308750000000007 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/06/25,3.062969032307691 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/03,18.365070832183356 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/06/24,11.815329166666675 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/11,13.83875833333332 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/02,3.308750000000007 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/06/25,3.062969032307691 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/11,8.555545836038329 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/04,2.174944700000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/26,10.33468542836667 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/03,3.3600891298076925 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/27,3.006922105448717 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/11,8.555545836038329 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/04,2.174944700000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/26,10.33468542836667 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/03,3.3600891298076925 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/27,3.006922105448717 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/05,4.098224236666658 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/27,2.975709861666662 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/04,2.730635894102565 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/28,3.645949999999994 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/05,4.098224236666658 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/27,2.975709861666662 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/04,2.730635894102565 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/28,3.645949999999994 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/07,5.551028827714276 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/21,3.3842560616666595 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/06,2.882350868269229 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/29,4.9373295000475 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/07,5.551028827714276 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/21,3.3842560616666595 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/06,2.882350868269229 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/29,4.9373295000475 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/08,8.587545456666668 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/23,4.876760662714278 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/07,3.5764251682692323 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/08,8.587545456666668 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/23,4.876760662714278 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/07,3.5764251682692323 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/10,9.44722437022026 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/09,3.146287075 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/23,2.2101795000000024 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/10,9.44722437022026 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/09,3.146287075 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/23,2.2101795000000024 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/26,24.44116666666665 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/25,21.675758333333352 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/26,24.44116666666665 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/25,21.675758333333352 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/02/03,22.76205 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/02/04,21.838800000000013 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/02/03,22.76205 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/02/04,21.838800000000013 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/03/08,10.157058333023343 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/03/08,10.157058333023343 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/04/08,13.3345274999525 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/04/08,13.3345274999525 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/04/24,13.573637539100014 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/04/24,13.573637539100014 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/11,21.90164166704668 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/03,4.190100005292497 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/11,21.90164166704668 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/03,4.190100005292497 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/28,3.667037242307691 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/28,3.667037242307691 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/06,5.193563227884611 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/07/30,3.0979462932692297 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/06,5.193563227884611 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/07/30,3.0979462932692297 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/08,7.942512499762512 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/30,3.4113454505799945 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/23,2.970920306333332 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/07,3.570529693846153 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/31,4.787744100119993 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/08,7.942512499762512 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/30,3.4113454505799945 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/23,2.970920306333332 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/07,3.570529693846153 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/31,4.787744100119993 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/10,8.435004161744157 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/01,4.535552329999992 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/24,2.7338998513333324 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/02,2.6989780432692303 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/23,2.2941863249999987 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/10,8.435004161744157 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/01,4.535552329999992 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/24,2.7338998513333324 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/02,2.6989780432692303 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/23,2.2941863249999987 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/11/11,5.352197027714278 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/11/10,3.31569981153846 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/25,3.1703500001450053 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/11/11,5.352197027714278 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/11/10,3.31569981153846 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/25,3.1703500001450053 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/12/04,13.418170735089168 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/12/29,22.47810000000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/01/06,21.77555833328585 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/02/06,11.86009166666667 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/05/05,7.23039167476416 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/05/29,6.377433333620838 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/05/30,3.4192750000000047 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/07/09,7.4205992467391715 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/06/30,21.42529583237584 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/07/08,7.0050000003124975 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/07/01,4.930325000072491 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/06/22,14.707525000189992 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/08/10,2.564046999999998 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/08/09,3.673375000072494 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/09/03,3.8259232167932113 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/08/25,12.046783333405822 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/10/05,2.4086340182692285 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/12/07,5.606509976038616 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/11/22,3.79971475384615 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/12/24,21.838800000000013 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/02/10,12.597524999999996 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/05/09,5.691338185358335 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/04/23,11.724000011382488 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/05/08,4.745209099999999 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/04/22,11.89842575731667 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/06/09,2.6698203900000017 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/07/03,5.5801742483808345 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/06/26,2.7208106 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/07/28,4.262486368256664 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/08/05,2.467480813333336 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/07/27,17.663258348403346 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/05,4.997342737435891 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/08/29,4.359659862124165 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/06,3.048104950000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/30,15.454083333043329 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/21,8.291781819999997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/10/08,7.70375 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/29,5.363327279052495 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/22,2.679102250000005 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/11/08,8.671526711901668 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/11/01,3.75948630242833 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/11/09,1.9895178999999987 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/10/24,3.405892724999995 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/12/03,14.809291265377494 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/12/11,3.81277194230769 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/02/05,12.75458333268833 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/02/29,21.981250000000014 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/04/01,12.24457575706916 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/02,4.277936704189996 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/04/25,13.125341705766685 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/10,12.653449999999989 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/03,2.9357731749999965 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/27,7.46185605681167 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/06/11,3.670775000385 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/06/04,3.498955024999993 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/26,2.5900045000000027 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/07/06,3.164484980769229 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/06,13.8670500069475 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/07/30,3.1777931750724964 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/07,2.9079863250000013 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/31,3.121481849999997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/22,9.815820844665838 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/30,4.8767981999999925 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/23,2.8559158200000017 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/10/09,5.584524142380945 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/09/23,15.25167500464751 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/10/10,9.449591792380184 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/10/01,2.746516210000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/11/10,10.903566559047611 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/11/03,5.938882578380836 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/10/25,9.191666673614163 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/12/29,3.6287105384615352 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/01/29,24.163949999999986 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/04/04,12.457883333638344 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/05/06,3.350769230769231 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/06/06,16.968912499617502 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/06/07,3.406619230769229 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/06/23,2.6807385000000004 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/08/02,4.203437956666658 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/07/24,17.104325000404984 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/08/10,8.551619230914222 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/07/25,4.681037201025634 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/10,3.5445841050724924 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/03,3.424725424679484 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/08/25,15.41229167390418 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/11,2.687788320000004 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/02,2.610236250000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/08/26,3.6877250000000017 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/26,7.660954165999166 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/11/06,8.473878672380946 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/10/28,8.040874986666658 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/11/09,6.765056750000008 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/10/29,2.83933323076923 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/11/24,2.755463705769229 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/11/21,3.27401575 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/12/23,3.259865711538461 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/02/01,22.34590833333334 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/02/02,22.144008333285846 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/01/25,23.25183333333333 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/03/30,22.451158333333343 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/04/06,8.478937496992499 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/03/29,16.329808333333336 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/09,2.522561999666665 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/09,2.193782 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/08,5.883558338918325 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/01,3.1890610383333318 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/04/30,10.7416750023 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/25,4.612763461705961 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/24,2.96788091 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/07/04,20.308933333888323 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/06/29,17.05879166609416 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/07/11,5.321199633429168 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/07/04,9.256550000942504 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/07/03,5.177785612575831 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/06/26,2.5089762500000026 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/06/25,2.4646293500000014 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/08/05,6.930609047236547 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/09/10,10.991679171529164 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/08/24,3.168617299999998 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/08/29,6.083005769230771 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/08/28,3.180450000000004 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/09,3.7267575835008313 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/08,3.479146713333329 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/09/29,5.070679250000001 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/09/22,4.158157365384612 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/09/21,2.77008545 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/31,4.687539997442507 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/11/09,3.2018506538461544 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/11/08,2.7611995500000006 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/31,18.22542499974 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/24,23.375025 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/12/10,2.4131762249999995 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/12/02,20.836116665291676 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/11/24,4.642284942307693 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/12/26,4.067770504807694 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/02/04,22.274983333333346 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/03/09,21.675758333333352 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/02/20,11.07114166705167 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/04/10,12.755733333238329 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/04/09,12.259249999904991 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/04/02,11.492791666476672 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/04/01,21.30071666666669 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/09,9.07821249964252 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/11,7.414859850091664 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/31,6.969411360265005 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/26,3.5819824248116623 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/06/05,4.48312500007249 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/06/04,9.36603420700524 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/28,15.261875000120002 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/27,2.982559091232496 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/06/22,3.470252270144994 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/07,4.183485607951666 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/06,3.1985863999999964 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/06/21,4.674827988461536 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/08/05,2.064225763405834 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/30,7.595875000144985 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/23,2.4916975900000016 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/22,2.6967022500000053 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/06,7.109348493333336 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/01,3.726163639999993 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/01,4.610086399999995 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/08/31,7.38236667126666 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/08/23,2.734568100000002 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/28,10.668129167864176 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/10/03,2.518281840000003 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/10/02,3.834615423076924 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/25,3.6712196499999936 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/11/11,4.195031820119997 +Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/11/03,2.428936175 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/03/11,22.32207499935501 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/03/11,22.32207499935501 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/04/28,9.122400011070006 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/06,5.954506819999999 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/04/28,9.122400011070006 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/06,5.954506819999999 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/30,6.9018749980825085 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/22,2.968620375000005 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/30,6.9018749980825085 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/22,2.968620375000005 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/02,4.058746218405826 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/10,4.229425000482497 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/07/25,11.10565833357082 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/02,4.058746218405826 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/10,4.229425000482497 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/07/25,11.10565833357082 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/03,13.415291672039178 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/11,13.37377499999999 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/26,4.871684858333328 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/03,13.415291672039178 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/11,13.37377499999999 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/26,4.871684858333328 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/27,2.3165362499999973 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/27,2.3165362499999973 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/11/22,4.182287607492737 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/11/30,2.4601073125 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/11/22,4.182287607492737 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/11/30,2.4601073125 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/02/02,27.581216666999147 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/02/02,27.581216666999147 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/02/26,14.93502708408584 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/02/26,14.93502708408584 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/03/29,22.46331666922668 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/03/29,22.46331666922668 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/04/30,12.669241717339183 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/05/08,2.9310470749999986 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/04/30,12.669241717339183 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/05/08,2.9310470749999986 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/03,7.3024704600725 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/11,13.105908333118323 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/06/25,4.348839403333326 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/03,7.3024704600725 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/11,13.105908333118323 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/06/25,4.348839403333326 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/08/04,3.669273498405829 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/27,3.419656930769228 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/08/04,3.669273498405829 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/27,3.419656930769228 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/05,3.268113639999996 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/08/28,3.808381820627496 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/05,3.268113639999996 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/08/28,3.808381820627496 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/10/07,3.005358346666664 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/21,4.21447957999999 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/29,4.672897729999993 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/10/07,3.005358346666664 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/21,4.21447957999999 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/29,4.672897729999993 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/11/08,4.556759991999994 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/10/23,8.068243189999999 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/11/08,4.556759991999994 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/10/23,8.068243189999999 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/12/10,12.97753333319083 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/12/10,12.97753333319083 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/02/04,21.75304166666668 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/02/04,21.75304166666668 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/02/28,13.098249999905 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/03/08,13.376858333238328 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/02/28,13.098249999905 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/03/08,13.376858333238328 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/03,10.22394583556334 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/11,13.495316667141664 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/03,10.22394583556334 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/11,13.495316667141664 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/27,8.707825001367485 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/27,8.707825001367485 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/07,10.575879173566664 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/07/30,4.403365099999993 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/07,10.575879173566664 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/07/30,4.403365099999993 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/23,5.356646222719167 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/31,19.17699166666668 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/23,5.356646222719167 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/31,19.17699166666668 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/09/24,7.891024236666673 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/10/02,2.742052611538459 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/09/24,7.891024236666673 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/10/02,2.742052611538459 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/11/11,3.658990186666663 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/11/11,3.658990186666663 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/04/28,15.041800016015 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/05/30,14.096912512892509 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/07/09,3.3202091001449987 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/07/01,13.62090833340582 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/09/03,5.097875000072495 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/10/05,2.502634005357141 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/11/22,4.613024999999998 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/02/10,11.083833333118337 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/05/09,4.663431880832731 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/04/23,6.205969706714164 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/06/26,4.534638699999988 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/07/28,6.715878790048334 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/08/05,3.527213930769228 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/08/29,17.202874999522496 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/09/06,15.008024999784984 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/09/22,12.85660833333332 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/11/09,3.2982885000000004 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/10/24,4.825300019999996 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/12/11,14.611199999857508 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/11/25,3.0333192307692296 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/04/01,19.659856251917503 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/04/25,7.147796228333331 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/05/03,3.3250227499999987 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/05/27,8.068484090647503 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/06/04,4.495210606834168 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/07/06,3.4018112200000004 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/07/30,3.531695480144995 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/08/31,4.156299999999991 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/09/08,11.402250000144994 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/08/23,7.929744696714169 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/10/10,18.2273750000475 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/11/03,9.828370830820852 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/03/03,21.750616666666684 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/05/06,4.1062091299999945 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/06/07,3.0651568250000008 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/06/23,3.879393184999992 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/08/02,3.543450000144995 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/08/10,3.017652250000005 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/07/25,2.640952250000006 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/09/03,6.681243183430006 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/09/11,3.00325675 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/08/26,6.668925000720006 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/11/06,8.13163095904762 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/11/09,6.882786395144994 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/10/29,2.4123612678571407 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/03/30,7.530350000155006 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/05/09,3.75333259333333 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/05/09,3.963306829999997 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/05/01,2.786171300000001 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/05/25,5.580125000119994 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/06/29,14.883766678454156 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/07/04,6.9388234933333335 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/06/26,4.705875000094997 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/08/02,17.16225416666666 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/07/28,2.6678610400000013 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/08/29,4.972550001424997 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/10/09,3.825029549999994 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/10/08,3.7541610674999952 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/09/22,2.7866000000000004 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/10/26,5.569233333533338 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/11/09,2.4927675749999985 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/04/10,18.529342423333347 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/05/26,7.745027270192497 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/05/28,7.811925001130005 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/06/22,2.9626500050724984 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/07/07,11.967058333333316 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/06/21,4.518145349999998 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/08/05,5.9725204564725 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/07/31,5.596725001205003 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/07/31,13.837858338100832 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/07/23,4.45742425173916 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/09/01,3.2725689584058286 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/08/22,3.134190018072498 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/09/09,2.9394022500000005 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/09/01,2.7339295000474992 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/09/28,19.723104187534176 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/10/03,3.4403704599999942 +Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/10/27,2.9903115 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/03/11,22.29259999935501 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/03/11,22.29259999935501 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/04/04,11.986425000000004 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/04/04,11.986425000000004 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/04/28,8.313383330363337 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/05/06,7.734885012649991 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/04/28,8.313383330363337 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/05/06,7.734885012649991 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/05/22,4.3049709789494 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/05/22,4.3049709789494 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/02,5.093672726884169 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/10,7.305871213333336 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/07/25,6.805150001325003 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/02,5.093672726884169 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/10,7.305871213333336 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/07/25,6.805150001325003 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/03,9.201075014357505 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/11,7.161101370769224 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/26,3.677129564999997 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/03,9.201075014357505 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/11,7.161101370769224 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/26,3.677129564999997 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/10/05,20.75927499918501 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/27,5.406799256413328 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/10/05,20.75927499918501 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/27,5.406799256413328 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/11/22,4.856991664921667 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/11/30,6.931910867435892 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/11/22,4.856991664921667 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/11/30,6.931910867435892 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/02/02,2.577654500000003 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/02/02,2.577654500000003 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/02/26,4.24478333265334 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/02/26,4.24478333265334 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/03/29,5.211554574685835 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/03/29,5.211554574685835 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/04/30,4.832608333475833 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/05/08,2.7921750002150043 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/04/30,4.832608333475833 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/05/08,2.7921750002150043 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/06/09,4.955650003564997 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/06/09,4.955650003564997 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/03,6.000414589083333 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/11,12.12206666690416 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/06/25,8.220113620000006 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/03,6.000414589083333 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/11,12.12206666690416 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/06/25,8.220113620000006 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/08/04,3.8738142448116624 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/27,4.93154774999999 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/08/04,3.8738142448116624 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/27,4.93154774999999 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/05,4.220638630144996 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/08/28,7.0754000006000055 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/05,4.220638630144996 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/08/28,7.0754000006000055 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/07,8.555399889047614 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/21,3.7917310616666633 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/29,3.092928330769229 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/07,8.555399889047614 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/21,3.7917310616666633 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/29,3.092928330769229 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/11/08,13.801461249047588 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/23,5.031906065800834 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/31,11.402016666851653 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/11/08,13.801461249047588 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/23,5.031906065800834 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/31,11.402016666851653 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/12/10,9.010192942031674 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/12/10,9.010192942031674 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/12/26,24.44116666666665 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/12/26,24.44116666666665 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/01/27,10.088891666451678 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/01/27,10.088891666451678 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/04/09,6.30090980666666 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/04/09,6.30090980666666 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/05/11,14.490508333333327 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/05/11,14.490508333333327 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/06/28,7.876535020769243 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/06/28,7.876535020769243 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/07,18.548308335633337 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/07/30,4.299718765888276 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/07,18.548308335633337 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/07/30,4.299718765888276 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/09/08,5.924641670000004 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/23,18.07056667586668 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/31,3.2938522500000023 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/09/08,5.924641670000004 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/23,18.07056667586668 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/31,3.2938522500000023 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/09/24,7.084185220000003 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/10/02,4.541050897435895 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/09/24,7.084185220000003 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/10/02,4.541050897435895 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/11/11,16.129095615280818 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/04/28,3.507702250000007 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/06/07,13.490197500000027 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/05/30,7.603951909496663 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/07/09,3.458973500652497 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/07/01,8.537326149403341 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/09/03,3.113618189999998 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/10/05,4.7675948365384615 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/12/08,21.43182500033752 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/11/22,5.543964226282043 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/05/09,7.72617083716083 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/04/23,7.684568195072495 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/06/26,4.044948490434992 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/07/28,9.26902499988499 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/08/05,5.724143180000002 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/08/29,5.941031820000007 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/09/06,3.9887250001675096 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/10/08,8.463175005797487 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/09/22,19.386124999999986 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/11/09,9.849002270047482 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/10/24,8.582209701380819 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/04/01,5.684192196153836 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/04/25,12.481925000000013 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/05/03,7.263651370372488 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/05/27,6.466826513623334 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/06/04,3.94145000058 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/07/06,4.891912026602555 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/07/30,4.805019693570833 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/08/31,3.686108326666664 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/09/08,15.496116666929163 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/08/23,5.152500000362493 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/10/10,16.96983333280833 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/01/22,10.453300000000011 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/03/03,8.40240624868751 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/04/04,6.207946970068328 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/04/28,6.636187492507514 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/05/06,13.186683395433342 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/06/07,3.858256949999996 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/06/23,3.151959000000001 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/08/02,22.673508332855853 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/08/10,9.214325000145 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/09/03,3.2466547136666635 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/09/11,5.233625064999995 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/08/26,15.402650000332502 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/11/06,15.900350002347498 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/11/09,5.405883333453331 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/11/04,2.7987755 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/10/29,6.156060853269223 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/02/02,21.75304166666668 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/01/25,22.304175000000008 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/02/26,23.02285 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/03/22,13.084693750819993 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/09,7.550603033333334 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/09,2.7795400649999995 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/01,5.214939398333334 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/04/23,21.45119999931002 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/31,17.006684999762502 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/06/10,3.100986249999999 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/25,6.429841667049179 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/06/29,4.229758334058325 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/07/04,4.136034095507497 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/06/26,4.05878228814102 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/08/02,7.1194208339883405 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/07/28,9.797950000217504 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/08/29,8.099375756809183 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/10/09,7.679024997145007 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/10/08,3.870239398333328 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/09/22,16.338899999739997 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/10/26,7.320108333333342 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/11/09,5.131577753205119 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/11/01,2.993275000000005 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/10/24,14.314983333333348 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/04/07,8.187849993475007 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/04/10,6.00076000199999 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/04/02,14.99068958393335 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/05/26,8.298195450287501 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/05/28,12.940141669466673 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/06/22,7.466343180072498 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/07/07,9.127750001015 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/06/21,3.5910568201449915 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/08/05,10.854320696069442 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/07/31,6.891629167389172 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/07/31,3.250850000000005 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/07/23,7.136270835775841 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/09/01,7.174754540144996 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/08/22,4.042396966739159 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/09/09,8.573108333803338 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/09/01,12.938583333733323 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/09/28,3.352503724166664 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/10/03,3.4448069249999964 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/10/25,10.39305913829167 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/10/27,3.347518809999998 +Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/11/28,2.91406378 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/03/10,21.66638333333335 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/02/22,21.75304166666668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/03/10,21.66638333333335 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/02/22,21.75304166666668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/06,2.436945700000004 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/06,2.436945700000004 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/06,6.631341130984998 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/30,10.246387568995017 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/07,18.416258333333317 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/29,12.658249999999985 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/22,12.295258333733324 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/06,6.631341130984998 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/30,10.246387568995017 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/07,18.416258333333317 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/29,12.658249999999985 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/22,12.295258333733324 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/22,9.665729186681666 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/22,9.665729186681666 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/09,3.1555378816666626 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/02,10.326775016695 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/07/24,3.9430447167391582 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/01,3.533861530769226 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/09,3.1555378816666626 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/02,10.326775016695 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/07/24,3.9430447167391582 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/01,3.533861530769226 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/03,7.468679168346679 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/25,3.747497744999996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/11,2.540052250000002 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/03,7.468679168346679 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/25,3.747497744999996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/11,2.540052250000002 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/26,4.130354931836668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/10/04,10.887874999999998 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/27,3.390359961666663 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/26,4.130354931836668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/10/04,10.887874999999998 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/27,3.390359961666663 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/05,2.4444983750000016 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/05,2.4444983750000016 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/29,10.924031075507507 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/30,2.759109010576923 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/29,10.924031075507507 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/30,2.759109010576923 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/03/05,11.960725000184992 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/03/05,11.960725000184992 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/05,14.17972666792915 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/03/29,9.273260433236668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/05,14.17972666792915 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/03/29,9.273260433236668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/07,8.344416686936675 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/30,9.338503033333325 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/21,13.521975016100011 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/08,5.04490834488082 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/29,3.0615249999999974 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/07,8.344416686936675 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/30,9.338503033333325 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/21,13.521975016100011 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/08,5.04490834488082 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/29,3.0615249999999974 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/23,12.151414698638344 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/31,7.863116672976652 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/24,15.594016679316676 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/23,12.151414698638344 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/31,7.863116672976652 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/24,15.594016679316676 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/03,3.865992446666658 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/06/24,15.653075000189997 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/02,7.159950002114981 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/03,3.865992446666658 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/06/24,15.653075000189997 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/02,7.159950002114981 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/11,3.9302500003575016 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/04,4.172352299999988 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/26,4.181016584855123 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/03,4.929100000072499 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/11,3.9302500003575016 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/04,4.172352299999988 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/26,4.181016584855123 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/03,4.929100000072499 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/05,3.1468522899999964 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/27,2.442134100000001 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/04,2.1448476250000024 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/05,3.1468522899999964 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/27,2.442134100000001 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/04,2.1448476250000024 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/07,7.587484843333337 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/21,3.627187886666661 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/06,3.607044449999996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/07,7.587484843333337 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/21,3.627187886666661 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/06,3.607044449999996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/08,5.159137881666657 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/23,22.27765078760002 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/07,2.0608702249999964 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/08,5.159137881666657 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/23,22.27765078760002 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/07,2.0608702249999964 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/10,8.563921250420023 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/09,17.856308333788323 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/23,3.173950000000004 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/10,8.563921250420023 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/09,17.856308333788323 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/23,3.173950000000004 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/26,24.44116666666665 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/25,14.499808333238336 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/26,24.44116666666665 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/25,14.499808333238336 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/02/03,22.957816666666663 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/02/03,22.957816666666663 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/03/08,15.00007499990501 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/03/08,15.00007499990501 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/05/10,11.075950003487511 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/04/24,5.677952275072499 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/05/10,11.075950003487511 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/04/24,5.677952275072499 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/06/11,4.654860970947614 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/06/03,6.975092045675 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/06/11,4.654860970947614 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/06/03,6.975092045675 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/07/05,2.4585575740384606 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/07/05,2.4585575740384606 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/07,11.856733332903325 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/07/29,13.67190834720584 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/06,3.173625000000008 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/07,11.856733332903325 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/07/29,13.67190834720584 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/06,3.173625000000008 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/30,4.360013639999993 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/23,4.221801516666662 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/07,3.909994463076921 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/30,4.360013639999993 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/23,4.221801516666662 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/07,3.909994463076921 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/10,8.95264952571463 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/01,7.483988671739159 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/24,5.92216970166667 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/02,3.453547428205123 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/23,4.551782439666664 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/10,8.95264952571463 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/01,7.483988671739159 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/24,5.92216970166667 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/02,3.453547428205123 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/23,4.551782439666664 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/11/11,6.089031857714276 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/26,9.7259036672675 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/11/10,2.4736994600000024 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/25,5.797591743333328 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/12/04,13.683706134948329 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/12/29,21.914608333333344 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/05/05,2.5854645000000005 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/04/28,2.7405500000000043 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/05/29,7.649025005710002 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/05/30,5.722075773106671 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/07/09,4.034309179999992 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/06/30,21.52779999815001 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/07/08,10.092300000917502 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/08/10,3.890341678333327 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/08/09,13.94330835087584 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/08/25,8.616366669774152 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/09/27,6.199533336133335 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/12/07,10.734573333000853 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/11/22,3.37154023730769 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/02/09,23.67154166666665 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/02/01,21.75304166666668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/04/23,13.56285910307584 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/05/08,3.980499979999997 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/04/22,3.972052299999999 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/06/01,11.766833337495832 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/06/09,4.746897739029163 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/07/03,12.122970842365833 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/06/26,7.281418182487506 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/08/04,8.652624988797495 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/07/27,15.405350004745014 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/09/05,3.238887876666661 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/08/29,3.4434425066666616 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/09/21,3.091360616666665 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/10/08,2.906480886538459 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/09/29,4.667025000120007 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/11/09,6.2469249999999965 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/12/03,7.925245849810828 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/02/20,21.66638333333335 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/04/01,7.667493754289994 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/05/02,19.59478336323337 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/04/25,7.282427896333328 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/05/03,5.63858419999999 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/05/27,13.09435003224751 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/05/26,4.040990954999995 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/07/05,11.7213500000725 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/06/28,10.118464231044165 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/08/06,15.641191687366677 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/07/30,3.350002295217493 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/08/31,3.923178945333332 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/10/09,8.546569701666662 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/09/23,8.270574996510005 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/10/10,8.036850000239996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/10/01,3.5787250000000057 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/11/10,5.923866678333331 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/11/03,9.52690210607583 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/10/25,13.98459500034749 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/02/06,21.92995833328585 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/04/03,13.252925026215006 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/04/04,3.18881923076923 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/05/06,2.534736570000001 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/06/06,8.692625000074997 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/06/07,2.6524357500000013 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/06/23,3.691948444999996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/08/09,21.236708334503334 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/08/02,3.348292909871791 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/07/24,8.314842423595831 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/09/10,11.873483365675847 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/08/25,13.755433361078344 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/09/26,6.551760832428338 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/11/06,4.799400816047611 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/10/28,7.29392881340583 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/11/05,2.522343 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/10/29,3.084801923076922 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/11/24,3.2718317548076925 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/11/21,7.457577249999999 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/12/23,3.1134000000000084 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/02/26,22.30544166666668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/03/29,12.994049999570002 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/03/22,12.451699999760006 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/09,2.293504875000001 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/08,11.556496213333332 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/01,13.313366667221658 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/04/30,14.481813625 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/31,20.419720833235843 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/06/10,2.6064692307692314 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/24,4.776362614258211 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/06/29,10.290975002849978 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/07/11,2.9869730133333303 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/07/04,14.408574999784983 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/07/03,5.484637507634158 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/06/26,2.731556705 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/06/25,2.8212833133333355 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/08/05,13.364625000032484 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/10,11.564425000869996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/08/29,8.40780000000001 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/08/28,5.525640323333323 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/22,8.528553033333337 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/10/08,3.292975000000011 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/29,2.793552250000005 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/22,3.0812940323076923 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/21,4.420275000072507 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/10/31,6.615999993015013 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/10/26,3.9587378573076895 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/11/09,3.194701337499996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/11/08,6.723826013333333 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/10/24,5.738115916230004 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/12/10,2.0073862499999966 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/11/24,3.247900000000006 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/02/04,22.14189166666668 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/04/10,16.444250000167507 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/04/09,16.48105000000001 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/04/02,12.12222499990499 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/04/01,14.0473999999525 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/09,9.650604166309186 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/11,3.764830773333328 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/31,11.314109091207502 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/26,4.112900000072493 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/06/04,8.156127276397507 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/27,25.377208333165832 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/06/22,3.072349087999996 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/07/06,3.513887123405827 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/06/29,5.583080761610956 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/06/21,4.65660402179487 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/08/05,7.957231248017518 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/07/31,9.750624999999992 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/07/30,3.1721772500475023 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/07/22,4.494204171914165 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/09/06,7.9750886399999965 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/09/01,4.41030747071428 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/08/31,3.834235616666663 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/08/23,12.580083333733326 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/03,7.449666658546672 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/09/28,7.790195829233345 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/10,19.74760416688415 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/03,11.922508347228336 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/02,12.349719710914162 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/25,8.430204166741676 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/11/03,5.290971421999995 +Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/11/27,3.982749357307688 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/03/10,21.791766666666685 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/03/10,21.791766666666685 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/05,7.792216665194169 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/06,3.924152300072496 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/05,7.792216665194169 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/06,3.924152300072496 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/06/06,6.645149193885232 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/29,2.759197600000003 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/06/06,6.645149193885232 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/29,2.759197600000003 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/07/08,15.85567916772166 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/06/22,4.087850401679173 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/07/08,15.85567916772166 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/06/22,4.087850401679173 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/09,2.1630538 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/07/24,18.928308333118316 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/01,5.431100000192492 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/09,2.1630538 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/07/24,18.928308333118316 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/01,5.431100000192492 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/25,3.5819333364308323 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/25,3.5819333364308323 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/09/26,3.3655931899999967 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/10/04,3.987410718208214 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/09/26,3.3655931899999967 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/10/04,3.987410718208214 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/11/05,2.7635750000000034 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/11/05,2.7635750000000034 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/11/29,3.985408979999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/11/29,3.985408979999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/01/08,10.605483333118343 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/12/23,12.98222082994333 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/01/08,10.605483333118343 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/12/23,12.98222082994333 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/01/24,21.750616666666684 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/01/24,21.750616666666684 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/05,9.456408971333326 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/05,9.456408971333326 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/07,5.232113741564402 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/30,3.4918218299999944 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/21,4.064927314999995 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/07,5.232113741564402 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/30,3.4918218299999944 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/21,4.064927314999995 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/23,7.453272179955003 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/31,3.908238641114996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/23,7.453272179955003 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/31,3.908238641114996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/06/24,3.406217431666661 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/06/24,3.406217431666661 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/11,6.170672726884174 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/03,2.7397672500000017 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/11,6.170672726884174 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/03,2.7397672500000017 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/05,4.256410563974357 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/27,5.128460981410256 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/04,2.826234049999999 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/05,4.256410563974357 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/27,5.128460981410256 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/04,2.826234049999999 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/07,7.432386989666663 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/28,14.58610666718919 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/21,3.278038674999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/06,2.7396156874999997 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/07,7.432386989666663 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/28,14.58610666718919 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/21,3.278038674999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/06,2.7396156874999997 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/11/08,5.621917434159168 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/23,8.53913861999999 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/11/07,2.7566621682692287 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/11/08,5.621917434159168 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/23,8.53913861999999 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/11/07,2.7566621682692287 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/12/10,10.136766688984164 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/12/09,4.099082692307694 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/12/10,10.136766688984164 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/12/09,4.099082692307694 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/01/11,12.155800001819996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/01/11,12.155800001819996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/02/19,6.361716666666673 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/03/08,12.046500000332498 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/02/19,6.361716666666673 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/03/08,12.046500000332498 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/04/24,14.50263337933335 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/04/24,14.50263337933335 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/06/11,4.794084070360115 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/06/11,4.794084070360115 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/07/05,2.86045541826923 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/07/05,2.86045541826923 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/07/29,10.74765000229998 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/06,3.929724999999999 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/07/29,10.74765000229998 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/06,3.929724999999999 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/30,3.137531091666663 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/23,4.363677275452503 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/30,3.137531091666663 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/23,4.363677275452503 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/10,3.912799824179166 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/01,4.580236419999992 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/09/24,3.175226521666665 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/09/23,3.633024999999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/10,3.912799824179166 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/01,4.580236419999992 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/09/24,3.175226521666665 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/09/23,3.633024999999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/11/11,7.860857459047618 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/11/10,9.723225000167488 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/25,5.978162460769224 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/12/04,12.478511752711672 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/05/05,10.883325000000005 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/04/28,8.135473602380188 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/05/29,9.1838625022775 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/05/30,4.378143199999993 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/07/09,3.9543053134058312 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/06/30,4.593171067629164 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/07/08,4.669979926577495 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/06/22,3.45058954326923 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/08/10,3.7664762383699593 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/08/25,4.8519750000475 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/12/07,14.647791666666658 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/03/06,11.242224999325002 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/04/30,7.257016660976676 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/04/23,10.45889792012168 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/05/08,6.718334100000003 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/04/22,3.0541715 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/06/10,7.756300003117502 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/06/01,13.95923333331834 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/06/09,2.670870450000001 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/07/03,6.21226597085607 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/08/04,14.671675032247494 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/07/28,8.485724999145024 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/07/27,3.565446213333326 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/09/05,4.944050659047612 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/08/29,3.8019083666666593 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/09/21,7.095831056666669 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/09/29,9.342608333453317 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/11/08,5.370124997375004 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/10/23,10.350333357683342 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/02/20,22.689058333333342 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/04/01,5.524420599999993 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/05/02,4.16104607466666 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/04/25,3.1603274486666635 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/05/03,4.9190000999999945 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/04/24,4.744258335973333 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/05/27,3.397148498333327 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/05/26,2.667432300000002 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/08/06,7.330208340118335 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/07/30,4.920370836003333 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/08/31,3.0150431700000007 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/08/22,3.5677917083333286 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/08/30,2.654599999999998 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/10/09,4.989792477714281 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/11/10,10.205428679047612 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/10/25,5.292020505744401 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/01/29,22.76205 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/03/11,13.11340833333334 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/03/02,22.539900000000006 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/04/03,18.68961255299502 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/06/07,9.674241680536673 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/05/29,17.663625000400014 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/08/02,2.691336365309997 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/09/10,3.5587697122941675 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/08/25,12.772028333213328 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/09/26,5.107675000047504 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/11/06,3.5898358331858398 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/11/29,8.833875000000013 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/11/24,3.186072287728935 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/11/21,2.028929974999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/12/24,12.067575 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/01/25,22.18304166666668 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/02/26,23.02285 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/04/06,9.498861682491665 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/03/29,21.88613333333335 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/03/22,14.003650000237508 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/05/08,4.140886365000001 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/05/01,3.1302222649999987 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/04/30,5.9690341 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/04/22,5.327588461538463 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/05/31,22.007349999615 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/06/10,5.225494716739156 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/05/24,3.325559095362496 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/07/04,8.995625000965006 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/06/29,3.813059861160832 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/07/04,3.2113757133808365 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/07/03,4.912241666666658 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/06/26,3.695161349999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/06/25,5.579909134999995 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/08/07,6.944638640145005 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/09/10,7.415297346856675 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/08/24,7.385049998205011 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/08/28,2.9764665250000006 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/09/30,3.568580515293037 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/09/21,15.099925000524996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/11/08,2.0785816249999964 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/10/24,8.61440834035332 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/12/10,2.2522112499999976 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/11/24,2.791544230769229 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/02/04,22.14189166666668 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/09,14.826302092533329 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/11,5.794650000000003 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/31,3.277586974666662 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/26,3.998268189999994 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/06/05,6.982469231639228 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/06/04,6.915197362424163 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/27,24.885275 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/06/27,3.760132608333326 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/06/22,2.965577270144998 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/07/06,3.900854999999994 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/08/10,21.561362500069983 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/08/05,3.8721924269566608 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/07/30,6.446692426666671 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/07/22,2.4815522500000045 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/06,6.961988639999996 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/01,6.566693180845004 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/09,12.941533333333323 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/08/31,3.385515738333329 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/08/23,2.460224811538461 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/10/03,17.80806668046666 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/28,13.754600025284992 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/23,8.186208324523339 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/10/02,2.7586340553571422 +Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/11/28,3.0252250000000065 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/04/04,7.938408332043335 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/04/04,7.938408332043335 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/04/28,7.941675009037517 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/04/28,7.941675009037517 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/05/30,8.310806666951684 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/06/07,5.675318679111546 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/05/30,8.310806666951684 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/06/07,5.675318679111546 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/07/01,7.793717082098352 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/07/01,7.793717082098352 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/08/02,8.657386366956667 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/07/25,3.302027589999995 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/08/02,8.657386366956667 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/07/25,3.302027589999995 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/08/26,4.106997290769226 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/08/26,4.106997290769226 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/09/27,12.460662499999998 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/09/27,12.460662499999998 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/11/30,22.77324166640668 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/11/30,22.77324166640668 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/02/02,24.366966673399183 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/02/02,24.366966673399183 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/02/26,11.907375019550017 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/02/26,11.907375019550017 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/03/29,7.218049999837507 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/03/29,7.218049999837507 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/05/08,9.719650000047489 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/05/08,9.719650000047489 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/06/09,6.475477757778575 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/06/09,6.475477757778575 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/07/03,4.478760177456548 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/06/25,14.277675758475825 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/07/03,4.478760177456548 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/06/25,14.277675758475825 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/08/04,2.963743189999996 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/07/27,2.2521226400000027 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/08/04,2.963743189999996 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/07/27,2.2521226400000027 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/09/05,3.80910834185916 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/08/28,3.2406545549999937 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/09/05,3.80910834185916 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/08/28,3.2406545549999937 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/07,3.349184110072496 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/09/21,3.542218185072493 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/07,3.349184110072496 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/09/21,3.542218185072493 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/11/08,8.943451392999995 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/23,22.740016712666694 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/31,3.589674903205124 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/11/08,8.943451392999995 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/23,22.740016712666694 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/31,3.589674903205124 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/12/02,2.7677522500000054 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/12/02,2.7677522500000054 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/12/26,24.44116666666665 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/12/26,24.44116666666665 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/02/28,12.03389167166666 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/03/08,5.307393986666666 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/02/20,15.395233333238334 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/02/28,12.03389167166666 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/03/08,5.307393986666666 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/02/20,15.395233333238334 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/04/09,4.625371949999996 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/04/09,4.625371949999996 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/07/06,15.11014833256833 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/06/28,3.3948250000000075 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/07/06,15.11014833256833 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/06/28,3.3948250000000075 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/07/30,2.9219570557692287 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/07/30,2.9219570557692287 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/09/08,9.653985837323338 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/08/23,12.15721876091999 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/09/08,9.653985837323338 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/08/23,12.15721876091999 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/10/10,15.175283345023352 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/09/24,2.466602131333332 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/10/02,2.3751996615384594 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/10/10,15.175283345023352 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/09/24,2.466602131333332 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/10/02,2.3751996615384594 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/11/11,9.053446842999996 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/11/11,9.053446842999996 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/01/06,21.66638333333335 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/03/11,5.241684817307683 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/05/30,5.453672352246671 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/07/09,4.043274999999993 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/08/10,16.071145835155825 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/08/02,3.6493749999999943 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/09/03,3.915397739999994 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/10/05,2.4427495615384585 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/12/08,8.922560618150818 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/11/22,2.667875000000003 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/12/24,2.9028840000000047 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/02/26,13.715074999904996 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/04/07,8.021658337278343 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/03/30,3.894325000000005 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/04/23,9.753766666714148 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/06/26,13.000066681759163 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/07/04,6.349775002657502 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/07/28,6.228950007005003 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/08/05,8.811008334053314 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/08/29,13.450283336158318 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/10/08,19.901983332428344 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/09/22,3.8733250001924966 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/11/01,3.7777106166666647 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/11/09,8.255020081944163 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/10/24,5.15176533533333 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/12/03,11.135575008414998 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/12/11,3.1706442307692297 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/11/25,4.859125000000003 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/03/08,8.780150779050004 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/02/21,13.578337515957497 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/03/24,6.093999995380009 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/04/01,2.743242225000003 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/05/03,4.428322729999999 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/06/04,3.404825005192502 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/07/06,5.960290161465832 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/07/22,4.114174999999995 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/09/08,4.10615909999999 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/08/23,3.754282583333329 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/10/10,7.851258336666665 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/01/06,11.243991665591672 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/01/22,12.768281666571673 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/03/27,5.133766246112506 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/04/04,4.045042806054164 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/05/06,6.140808728052494 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/06/07,5.164175000072508 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/06/23,4.847323515756662 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/09/11,3.46569773 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/08/26,4.546265910072494 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/09/27,15.386399999554992 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/11/06,11.00989155904761 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/11/09,5.190260611666658 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/11/04,4.468572730716662 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/10/29,15.095783333533316 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/11/22,5.23300416627167 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/02/26,20.74013333319086 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/03/22,4.344930283333329 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/05/09,7.149759111739164 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/05/09,5.171125000000003 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/05/01,6.763052275337485 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/05/31,8.719700010734995 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/06/10,13.800366666666656 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/06/29,3.041402269999996 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/07/04,7.237833338965824 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/06/26,4.139675000214999 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/08/02,6.571506238010005 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/08/05,3.669603033405827 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/08/29,3.205375 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/10/09,6.200512123333329 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/11/09,2.368639099999997 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/02/10,13.97886459762583 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/01/28,3.1875455384615377 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/03/09,2.368302250000003 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/03/26,14.345316666666696 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/04/10,2.594672625000003 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/04/02,7.32122803333334 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/05/26,3.0906507634058293 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/05/28,6.477275000000005 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/06/29,7.270200000457497 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/06/21,5.107827385394881 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/08/05,9.19972045 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/07/31,3.3235341000724943 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/07/31,6.301925000284999 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/07/23,3.210302250095005 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/09/01,3.9803613699999896 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/08/27,3.1181332179999965 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/09/01,2.5977753249999997 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/09/28,9.357049995967508 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/10/03,3.3461036999999965 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/10/25,4.976142423500837 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/10/27,2.5070816500000004 +Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/11/28,2.931575000000005 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/04/04,15.046509090332512 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/04/28,7.783496465345 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/05/30,5.769131243177506 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/06/07,4.8220284143824985 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/05/22,4.839134488891662 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/07/01,11.983339664255828 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/08/02,6.984903030362505 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/07/25,3.3337981298076924 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/09/03,5.672237495125006 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/09/11,3.00645 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/08/26,2.636609105000001 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/09/27,3.849984099999992 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/11/30,12.501775000184988 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/02/02,10.801995000670006 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/02/26,6.730134096739171 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/03/29,17.027975071300016 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/05/08,5.147301537864158 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/06/09,6.966883814969403 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/07/03,4.373220459362503 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/06/25,6.134136369999999 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/08/04,6.50600833352584 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/07/27,2.9454021999999984 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/09/05,6.987481820747497 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/08/28,4.978009853333326 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/10/07,8.734802392254872 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/09/21,7.5695750040375 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/11/08,3.964471258333327 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/10/23,17.278433365533363 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/10/31,2.3221434624999997 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/12/02,5.323529084615371 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/01/11,9.290656252489995 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/02/04,12.875549999569994 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/02/28,4.1816106067141705 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/03/08,5.535305346666664 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/04/09,3.569242766666664 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/05/03,9.226200023374998 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/07/06,4.9363522795050025 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/07/30,4.412124994871792 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/08/23,10.72495000105998 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/10/10,5.200117425680836 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/09/24,3.73119832466666 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/10/02,3.4212615929487136 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/11/11,9.601928662999995 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/01/06,21.675758333333352 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/03/11,6.12187631538461 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/04/28,2.7935750000000024 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/05/30,5.3584852233375 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/07/09,3.971274999999992 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/08/02,4.0694045500724965 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/09/03,3.349175000000004 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/09/27,3.242816599999999 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/10/05,2.5038029557692294 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/12/08,18.59877501610002 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/11/22,4.880225828316722 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/01/01,7.52319582777834 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/02/10,3.583250000000008 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/03/06,22.404625000000006 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/02/26,14.542991666666667 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/04/07,6.605625004357505 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/03/30,11.080225041400007 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/04/23,16.30696138363752 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/06/26,3.4271068199999943 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/07/04,9.01384813579 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/07/28,9.536520838148329 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/08/05,13.247183333333318 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/08/29,4.066109090505003 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/09/22,5.565325000477504 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/11/01,7.9420499944 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/11/09,6.25144736078166 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/10/24,5.902206849999994 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/12/11,22.03975833333335 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/11/25,13.63618333311832 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/03/08,7.381760412459178 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/02/21,12.589194365300823 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/03/24,11.386983405008335 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/04/01,2.5555750000000006 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/05/03,13.654400050700012 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/05/27,6.842056658709165 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/06/04,6.3018250027525005 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/07/06,4.983464403333328 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/08/07,7.441250002990001 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/07/22,10.833800031122507 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/09/08,7.215750002704999 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/08/23,4.017343179999994 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/10/02,15.607418901945003 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/10/10,8.028900000000014 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/01/06,22.47810000000001 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/12/29,6.099027615384615 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/01/30,18.622514583533334 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/04/04,6.670483715283313 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/05/06,4.044675004599994 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/06/07,12.869233356333355 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/08/02,6.197112499387504 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/09/03,17.217074999999994 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/09/11,2.7387569400000005 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/08/26,3.929699999999995 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/09/27,4.587550000337492 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/11/06,3.7358236419999953 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/11/09,7.258872734999992 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/11/04,5.111900000359996 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/11/22,6.354374991035009 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/03/22,4.901825000000002 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/05/09,6.418427276739168 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/05/09,7.021616680466658 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/05/01,5.628529170084161 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/06/10,17.44466666692918 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/06/29,2.984566663333329 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/07/04,3.679265156739169 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/06/26,5.508450002300004 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/08/02,11.133828334663354 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/08/05,5.179175759533329 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/08/29,7.783300000144994 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/10/09,6.344643943333329 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/10/08,3.0381250000000053 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/11/09,2.3136980999999968 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/02/10,11.136693153599404 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/01/28,14.732083333333335 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/03/09,2.316941325000001 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/03/26,15.112441698866684 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/04/10,3.822179256666664 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/04/02,7.858571218333338 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/04/26,5.166437502337496 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/05/26,5.006213640072491 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/05/28,2.5357924250000017 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/07/07,2.863602250000003 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/06/29,6.90422916754916 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/06/21,4.292763786995947 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/08/05,7.050232573405832 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/07/31,3.784718180072491 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/08/08,3.022775000000004 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/07/31,3.705274999999998 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/07/23,3.127450000000004 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/09/01,5.100415916666657 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/08/27,3.156485917999996 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/09/01,5.172065729999999 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/09/28,8.4569562477525 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/10/03,4.230450230769225 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/10/25,22.715083351470856 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/10/27,2.324795349999998 +Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/11/28,3.3656916923076925 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/04/04,6.572161349999996 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/04/04,6.572161349999996 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/04/28,8.057179046684162 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/04/28,8.057179046684162 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/05/30,8.22325794222417 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/06/07,6.210636481316548 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/05/22,4.790392880340828 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/05/30,8.22325794222417 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/06/07,6.210636481316548 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/05/22,4.790392880340828 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/07/01,7.966962501445016 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/07/01,7.966962501445016 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/02,4.074625000072501 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/10,6.321063461875948 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/07/25,4.262395464999995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/02,4.074625000072501 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/10,6.321063461875948 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/07/25,4.262395464999995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/26,5.221514254666662 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/26,5.221514254666662 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/09/27,4.031438624999995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/09/27,4.031438624999995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/11/30,5.200475000289994 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/11/30,5.200475000289994 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/02/10,9.73221666666668 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/02/02,12.3470500003325 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/02/10,9.73221666666668 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/02/02,12.3470500003325 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/03/29,14.226500023792504 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/03/29,14.226500023792504 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/05/08,4.641488399783565 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/05/08,4.641488399783565 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/06/09,8.45064583264084 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/06/09,8.45064583264084 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/07/03,8.069377495564991 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/06/25,4.350474999999995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/07/03,8.069377495564991 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/06/25,4.350474999999995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/08/04,6.837509850217504 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/07/27,4.485370650769221 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/08/04,6.837509850217504 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/07/27,4.485370650769221 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/09/05,9.13170000036 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/08/28,5.235500004999993 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/09/05,9.13170000036 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/08/28,5.235500004999993 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/07,3.07137803833333 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/09/21,7.736325000792502 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/07,3.07137803833333 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/09/21,7.736325000792502 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/11/08,9.798193814666664 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/23,15.570608397408355 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/31,2.9799218799999974 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/11/08,9.798193814666664 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/23,15.570608397408355 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/31,2.9799218799999974 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/12/02,2.793329500000004 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/12/02,2.793329500000004 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/02/04,5.767749999999996 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/02/04,5.767749999999996 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/02/28,3.997205303333336 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/03/08,5.368925866666663 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/02/28,3.997205303333336 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/03/08,5.368925866666663 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/04/09,4.385862153333328 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/04/09,4.385862153333328 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/06,5.306162131271666 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/06/28,6.3616119302227325 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/06,5.306162131271666 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/06/28,6.3616119302227325 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/22,18.873249999999988 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/30,3.186514748076921 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/22,18.873249999999988 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/30,3.186514748076921 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/09/08,6.173269163539172 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/08/23,5.9740666704616725 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/09/08,6.173269163539172 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/08/23,5.9740666704616725 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/10/10,5.000684823788578 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/09/24,2.787383946333333 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/10/02,3.58846008461538 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/10/10,5.000684823788578 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/09/24,2.787383946333333 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/10/02,3.58846008461538 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/11/11,10.93193244466666 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/11/11,10.93193244466666 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/01/06,21.67155833333335 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/03/11,5.096913138461531 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/04/28,2.835325000000003 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/06/07,12.563310506541663 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/05/30,19.49753333254334 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/07/09,6.7092090900725045 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/08/02,3.3528500949999995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/08/26,7.956715000080022 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/09/03,4.600958946333325 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/09/27,6.714459093815005 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/10/05,3.308521459615381 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/12/08,13.163366682766682 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/11/22,2.2860676250000007 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/12/24,21.66638333333335 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/03/06,13.596733333095838 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/04/07,10.71687500886749 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/03/30,4.761775002347496 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/04/23,13.206400011690013 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/05/25,8.182579159336665 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/06/26,13.908008337933332 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/07/04,7.611308349553343 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/07/28,5.843200017617502 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/08/05,13.90544999999998 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/08/29,7.431337499522499 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/09/22,3.430171213453327 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/11/01,2.643367451666667 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/11/09,5.614839783954998 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/10/24,5.95318047199999 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/11/25,6.746895838195827 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/03/08,13.046525039100011 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/03/24,10.113716544654174 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/04/01,3.3302134615384604 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/05/03,14.675875087400016 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/05/27,4.540423501439999 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/06/04,5.897350000480003 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/06/28,3.00387500113 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/07/06,3.173931825000001 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/08/07,12.889975000237497 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/07/22,3.011775000047501 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/09/08,6.481625000552506 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/08/23,3.644974999999992 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/10/02,6.71597499344501 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/10/10,4.484877274999995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/01/06,22.26459166666668 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/12/29,3.545500000000008 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/01/22,21.754608333118348 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/03/03,16.16831666666666 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/04/04,14.548150006900014 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/05/06,3.978204175866664 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/06/07,10.131786670039164 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/06/23,6.618070087849165 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/08/02,5.509816668631669 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/09/11,4.106313654999994 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/08/26,3.763605313333328 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/11/06,4.551932746999993 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/11/09,9.510935462999992 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/11/04,7.032350000442481 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/11/22,7.55378749995 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/03/22,5.97099621563334 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/05/09,5.935515916811664 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/05/09,6.615741673686658 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/05/01,7.952454169544163 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/05/31,4.153066629100714 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/06/10,12.99314999999999 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/06/29,3.1049181800724983 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/07/04,4.230527277799997 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/06/26,10.065175767520826 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/08/02,3.5251616677491677 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/08/05,5.380325001079996 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/08/29,4.223134099999996 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/10/09,5.985083333500833 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/11/09,2.2868003499999983 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/02/10,7.605764178289158 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/01/28,3.4315594865384607 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/03/26,16.861816707804188 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/04/10,3.8116500507692272 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/04/02,6.431489398333334 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/04/26,4.260950000384992 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/05/26,3.2574007684058297 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/06/05,2.849250000047498 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/05/28,6.474128786666659 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/07/07,4.627262500239998 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/06/29,9.239075000217497 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/06/21,5.003990929765003 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/08/05,8.323714770095002 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/07/31,4.403793180217495 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/08/08,3.1803250000000047 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/07/31,13.547875000384996 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/09/01,11.565918832380945 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/08/27,3.7307718079999943 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/09/01,9.635575000597488 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/09/28,9.033424992250003 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/10/03,4.647321366999996 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/10/25,22.95940004149501 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/10/27,3.139790119999997 +Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/11/28,3.0973097823076934 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/04/04,5.201074999999992 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/04/04,5.201074999999992 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/05/30,9.934424222231668 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/06/07,19.853124999807516 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/05/22,3.047977250000004 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/05/30,9.934424222231668 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/06/07,19.853124999807516 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/05/22,3.047977250000004 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/07/01,9.73445208434334 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/07/01,9.73445208434334 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/08/02,7.7680000000225 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/07/25,3.2236250002175 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/08/02,7.7680000000225 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/07/25,3.2236250002175 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/09/11,3.262633217948716 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/08/26,2.6231466607692293 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/09/11,3.262633217948716 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/08/26,2.6231466607692293 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/10/05,6.227774996915007 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/09/27,4.915256445209163 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/10/05,6.227774996915007 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/09/27,4.915256445209163 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/11/30,23.176525000169995 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/11/30,23.176525000169995 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/10,14.988981250440023 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/01/25,7.698408338150841 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/02,2.973764228205127 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/10,14.988981250440023 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/01/25,7.698408338150841 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/02,2.973764228205127 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/26,9.981266669741675 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/26,9.981266669741675 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/03/29,7.348258199310001 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/03/29,7.348258199310001 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/04/30,3.899655681583336 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/05/08,2.546959000000003 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/04/30,3.899655681583336 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/05/08,2.546959000000003 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/06/09,8.480187500310006 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/05/24,8.26060833371582 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/06/09,8.480187500310006 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/05/24,8.26060833371582 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/07/03,11.525362501140004 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/06/25,5.170959089999997 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/07/03,11.525362501140004 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/06/25,5.170959089999997 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/08/04,3.836595449999996 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/07/27,5.1336542110805805 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/08/04,3.836595449999996 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/07/27,5.1336542110805805 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/09/05,4.611428786811661 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/08/28,6.5165590949999945 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/09/05,4.611428786811661 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/08/28,6.5165590949999945 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/07,5.198088681047611 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/09/21,3.439541514666662 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/07,5.198088681047611 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/09/21,3.439541514666662 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/11/08,3.7229304520724975 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/23,5.101550000119997 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/31,3.1280998782051257 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/11/08,3.7229304520724975 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/23,5.101550000119997 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/31,3.1280998782051257 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/12/10,9.005698639275012 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/12/10,9.005698639275012 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/01/11,12.181971356556335 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/01/11,12.181971356556335 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/04,17.543100000384992 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/04,17.543100000384992 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/28,9.057533089091946 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/03/08,3.414106487435894 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/20,5.122203813141018 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/28,9.057533089091946 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/03/08,3.414106487435894 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/20,5.122203813141018 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/04/09,6.5339152986666615 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/04/09,6.5339152986666615 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/05/03,13.254104168981682 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/05/03,13.254104168981682 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/07/06,13.074574996797496 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/06/28,5.035154168149163 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/07/06,13.074574996797496 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/06/28,5.035154168149163 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/07/30,7.555841685139167 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/07/30,7.555841685139167 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/09/08,3.9773483280508346 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/09/08,3.9773483280508346 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/09/24,2.5786710548116663 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/10/02,3.54551347403846 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/09/24,2.5786710548116663 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/10/02,3.54551347403846 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/11/11,8.918065156739168 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/11/11,8.918065156739168 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/12/29,3.532565905394999 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/01/06,3.438786250047499 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/03/11,8.709195442820505 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/04/28,8.663934850072485 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/06/07,14.025333334458349 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/05/30,19.143666663751684 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/07/09,5.298054529999991 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/07/01,8.737375000554996 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/08/02,3.3504399999999936 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/09/03,2.676225000000005 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/10/05,3.4163849211538424 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/12/08,4.8438041715641615 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/11/22,6.694489393333316 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/01/01,15.562650041959998 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/12/24,4.011040711658458 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/02/10,6.5150499967450095 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/04/07,11.26352868193 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/04/23,11.080426253692494 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/06/26,4.921990087623335 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/07/04,5.694321245835834 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/07/28,6.485750002014997 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/08/05,3.5590500000724963 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/08/29,12.53616668068168 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/10/08,8.956050001149984 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/09/22,3.849931854999992 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/11/01,9.181312526357502 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/11/09,6.009320459585 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/10/24,2.924412090000001 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/12/03,8.084168362870832 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/12/11,4.908275000264992 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/11/25,21.040516667051666 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/03/08,8.797090665711107 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/02/21,8.236643463015278 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/03/24,11.488782923579167 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/04/01,3.1679750000000046 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/05/03,9.95536668362166 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/06/04,12.560783343730838 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/07/06,4.958859917054999 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/07/22,4.371871834871786 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/09/08,4.929399999999998 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/08/23,4.921143179999996 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/10/10,2.1488181999999965 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/11/03,6.746399998190012 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/01/06,7.735618180190004 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/12/29,3.290675000000003 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/01/30,4.878132036923068 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/03/11,6.466599998710013 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/04/04,19.64138334483336 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/05/06,6.002654556034994 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/06/07,4.899771266284998 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/06/23,6.696740167766664 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/08/02,6.628993182925006 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/09/11,12.694275000189997 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/08/26,9.15150075671418 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/09/27,3.782346824999992 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/11/06,9.61372715904761 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/11/09,4.162878043333331 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/11/04,6.92920378705166 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/11/22,6.431649996255009 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/02/10,22.337341666666678 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/02/10,3.45199423076923 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/02/26,11.732828340975828 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/03/06,14.170233333518324 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/02/26,3.1798594647435885 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/03/22,8.847552269999984 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/05/09,9.555768953404158 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/05/09,4.761187283640231 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/05/01,7.721931441086665 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/06/10,3.330600000047503 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/06/29,2.8772090999999964 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/07/04,6.631691662154173 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/06/26,7.547565912372505 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/08/02,6.118583333550837 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/08/29,3.3026817499999983 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/10/09,5.679472730072501 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/10/08,4.242533376153839 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/11/09,2.4241444875 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/11/29,6.124299997775008 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/02/05,4.347922466756548 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/01/28,4.037930875000001 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/02/27,5.89802499427501 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/03/09,3.6904750002649966 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/03/26,8.726750000095002 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/04/10,3.2469327974358944 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/04/02,7.951625014017489 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/05/26,4.014195450072493 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/06/05,2.8265250000000024 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/05/28,6.555961389999994 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/07/07,8.089019706859165 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/06/29,13.62293750038 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/06/21,4.795354546274998 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/08/05,13.676275000094996 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/07/31,4.007675000289992 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/07/31,10.309773732239169 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/07/23,6.5190583365283326 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/09/01,3.918287887101661 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/08/27,3.047814099999996 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/08/22,14.197300022595 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/09/01,3.928149599999995 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/10/03,2.8729886 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/10/25,3.754308333118335 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/10/27,4.070569101999996 +Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/11/28,4.59871923076923 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/04,21.16722500004748 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/04,21.16722500004748 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/28,4.596633016495232 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/29,3.185169850769229 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/29,3.7083661107692247 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/28,4.596633016495232 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/29,3.185169850769229 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/29,3.7083661107692247 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/05/30,19.709020833580848 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/06/07,10.781757953495008 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/05/22,8.471112120471675 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/05/30,19.709020833580848 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/06/07,10.781757953495008 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/05/22,8.471112120471675 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/08/02,2.970680300724997 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/07/25,4.437411536538456 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/08/02,2.970680300724997 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/07/25,4.437411536538456 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/09/03,13.20412727722749 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/09/11,4.97062833110672 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/08/26,3.3552023649999967 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/09/03,13.20412727722749 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/09/11,4.97062833110672 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/08/26,3.3552023649999967 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/10/05,3.2105826385508305 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/10/05,3.2105826385508305 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/02/10,6.885849997345009 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/01/25,3.798474999927507 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/02/02,3.165168326923078 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/02/10,6.885849997345009 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/01/25,3.798474999927507 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/02/02,3.165168326923078 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/03/29,14.267416733104188 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/04/06,7.235374622386672 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/03/29,14.267416733104188 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/04/06,7.235374622386672 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/05/08,2.886029500000001 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/04/22,6.0503250001674935 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/05/08,2.886029500000001 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/04/22,6.0503250001674935 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/06/09,6.97828333347834 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/06/09,6.97828333347834 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/03,16.599808333333325 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/11,4.980252250072491 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/06/25,5.248391663333328 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/03,16.599808333333325 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/11,4.980252250072491 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/06/25,5.248391663333328 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/08/04,3.11840380427583 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/27,2.933837334203297 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/08/04,3.11840380427583 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/27,2.933837334203297 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/08/28,3.668228033405828 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/08/28,3.668228033405828 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/07,2.910478033333331 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/07,2.910478033333331 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/11/08,4.901085001999994 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/23,5.617406825192501 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/31,2.940487041666663 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/11/08,4.901085001999994 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/23,5.617406825192501 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/31,2.940487041666663 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/12/02,2.4300952500000004 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/12/02,2.4300952500000004 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/01/11,4.403825034999998 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/12/26,24.44116666666665 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/01/11,4.403825034999998 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/12/26,24.44116666666665 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/04,2.78858925 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/04,2.78858925 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/28,8.785909858709159 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/03/08,2.747731520000002 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/20,5.340064153846156 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/28,8.785909858709159 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/03/08,2.747731520000002 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/20,5.340064153846156 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/04/09,2.453942000000002 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/04/09,2.453942000000002 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/06/28,3.5915250000000047 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/06/28,3.5915250000000047 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/07/22,8.66555833359332 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/07/30,5.832700000145001 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/07/22,8.66555833359332 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/07/30,5.832700000145001 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/08/31,3.2294500000000057 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/08/31,3.2294500000000057 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/09/24,3.137049088072497 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/10/02,2.9316711682692302 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/09/24,3.137049088072497 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/10/02,2.9316711682692302 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/11,8.243005305144994 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/03,9.996718350630822 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/11,8.243005305144994 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/03,9.996718350630822 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/27,5.905244701108336 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/01/07,13.848474999952494 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/12/29,5.063570832828339 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/01/06,4.485024999999999 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/03/03,9.598561279720004 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/03/11,6.878891817307682 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/06/07,6.357895827393349 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/05/30,5.271891684839164 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/07/09,4.452027911856899 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/08/10,20.26320000043249 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/08/02,6.580634090507501 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/09/04,3.800090954999992 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/09/04,3.819890954999993 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/08/26,13.592960609383326 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/09/03,10.092900000337496 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/10/05,2.4118922500000006 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/11/07,8.895178805705834 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/11/07,6.604531079159168 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/11/23,4.848011344999996 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/12/08,2.3873302375000005 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/11/22,2.5398966682692308 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/01/01,11.134940890167483 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/12/25,7.410674995825011 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/12/25,7.426999996470011 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/12/24,6.4438916718541535 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/01/26,3.9990681652899975 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/01/26,4.353284070289996 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/02/10,20.677915164833344 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/01/25,2.641793200000001 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/02/26,9.83164166638166 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/04/07,12.357920834893346 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/03/30,5.033460611270833 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/04/23,11.449611381242498 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/06/03,11.649275005032498 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/06/03,4.599275002482496 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/07/05,2.5415000019649976 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/07/05,2.797125002734997 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/06/26,14.209658344833349 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/07/04,7.389425000382509 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/07/28,7.948708347953341 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/08/05,14.03080833345332 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/07,3.7899681849999936 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/07,3.236252274999996 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/08/29,9.57655834964833 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/08/22,3.8321454454349935 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/08/22,4.361231053478325 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/30,6.471425000185005 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/23,3.673458326739162 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/23,3.765371208405827 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/22,4.353447730217493 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/11/01,9.26930456499999 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/11/09,18.10715416685666 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/10/24,2.340204800000002 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/12/03,9.538910013764992 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/11/26,3.696570593739165 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/11/26,4.0753077273375 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/12/11,12.812049999784984 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/01/29,7.393267312380949 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/01/29,7.726201402380946 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/03/01,5.167958342513336 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/03/01,5.967175008300004 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/02/21,7.730191668333326 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/04/02,5.211509100404999 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/04/02,5.006659100309997 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/03/24,8.79395665901916 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/04/01,2.476076565769232 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/05/04,8.70557916462416 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/05/04,8.628649998179991 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/04/25,10.06655000268501 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/05/03,5.159807954617503 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/05/27,4.55968328555488 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/06/04,13.991549999354984 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/06/28,6.775999981740001 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/06/21,5.506759094757497 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/06/21,5.7240840950225 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/07/06,3.562814003846153 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/08/08,8.648237493082501 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/08/08,8.409212490597497 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/08/24,9.142599995094992 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/08/24,9.563924995374991 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/09/08,14.155874999999982 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/09/25,16.642520833190826 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/09/25,16.736470833190825 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/10/10,4.556590909999996 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/11/28,5.924681663011665 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/11/28,5.606814724656905 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/12/29,2.9578772500000063 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/01/30,2.8870541432692303 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/03/03,14.099083333500856 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/04/05,9.654891675566658 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/04/05,9.619066677914162 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/03/27,9.832835414319163 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/04/04,11.414058349505831 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/04/28,11.463675003020002 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/05/06,5.29655833810083 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/08,17.781343941999154 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/08,16.34021894204665 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/05/23,6.459125616230836 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/05/23,7.984400023215004 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/07,3.9190430134615366 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/24,3.7868121234058254 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/24,3.6881621234058257 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/23,5.66811534852857 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/11,1.523711361957501 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/11,1.82596363203 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/09/03,2.8335651416666634 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/27,4.728556719120112 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/27,4.460256719120113 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/09/11,4.949575000989996 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/26,9.010634090382505 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/09/27,3.1863364049999974 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/11/06,5.5464174627142775 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/11/09,4.330768194999996 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/11/04,3.313655629807692 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/11/04,3.2912775913461547 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/10/29,2.5591618000000014 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/10,10.726518754614997 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/10,4.046502024038462 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/26,18.64508333549583 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/19,6.253583351643331 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/19,7.007427121703335 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/26,5.028252547508398 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/03/22,3.346682274999996 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/05/09,3.33367349384083 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/05/09,3.0006833402333317 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/05/01,6.021634092837487 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/04/23,7.302681446721658 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/11,3.744692433405828 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/11,3.744842433405828 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/06/29,2.7967399979999983 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/06/24,3.127727281232498 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/06/24,3.8864840952174906 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/04,4.093600004647499 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/06/26,11.306240847470834 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/02,6.4790189718541695 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/28,6.854375000200007 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/05,3.994540173076916 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/28,2.389775 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/31,3.2498882698717937 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/31,3.219874619871793 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/29,3.038675000000002 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/10/09,4.155834853333326 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/10/08,4.38796820023999 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/11/07,6.388143222670833 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/11/07,7.114516676896671 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/11/09,2.4022642307692297 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/02/10,18.72776670365669 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/02/06,3.1156894823076917 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/02/06,3.848360979999995 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/01/28,3.199040029999996 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/02/27,7.571774993220008 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/03/09,2.7152800750000017 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/04/10,3.1856713866666677 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/04/02,4.934650000144991 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/05/26,8.194696966931666 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/06/05,10.206429165184176 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/05/28,3.1532359441025632 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/06/29,5.156897462904045 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/08/05,3.009157429666665 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/07/31,3.0047740980724984 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/07/31,4.7409750007200016 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/07/23,6.005877270287506 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/08/27,3.738619696666659 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/08/22,9.388124997572495 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/09/01,2.952912049038462 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/10/03,5.92414319199999 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/11/11,3.100499266859165 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/12/06,3.659250000000009 +Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/11/28,3.3629250000000046 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/04/03,10.582833334293344 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/04/03,10.582833334293344 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/05,4.296074736574045 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/06,5.056150000072495 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/05,4.296074736574045 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/06,5.056150000072495 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/06/06,7.8404562531124995 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/29,2.9189795000000043 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/06/06,7.8404562531124995 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/29,2.9189795000000043 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/07/08,13.851616668594165 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/06/22,3.6835697069566593 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/07/08,13.851616668594165 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/06/22,3.6835697069566593 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/09,2.551563273000001 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/01,3.2836500000000024 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/09,2.551563273000001 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/01,3.2836500000000024 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/25,11.352441684661663 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/25,11.352441684661663 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/09/26,2.778892421666665 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/10/04,13.469758333333328 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/09/26,2.778892421666665 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/10/04,13.469758333333328 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/11/29,3.617198710805858 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/11/29,3.617198710805858 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/02/01,15.782462917779192 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/01/24,21.66638333333335 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/02/01,15.782462917779192 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/01/24,21.66638333333335 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/03/04,12.007108333918332 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/03/04,12.007108333918332 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/04/05,6.177715161666665 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/04/05,6.177715161666665 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/07,15.37356673566669 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/04/21,4.146118968333327 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/07,15.37356673566669 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/04/21,4.146118968333327 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/23,13.697658333453344 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/31,6.686558336830823 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/23,13.697658333453344 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/31,6.686558336830823 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/06/24,3.256137728362499 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/06/24,3.256137728362499 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/11,10.31188750175 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/03,2.3947021 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/11,10.31188750175 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/03,2.3947021 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/27,4.071398486666658 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/09/04,4.360670449999993 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/27,4.071398486666658 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/09/04,4.360670449999993 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/09/28,4.474829179789169 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/10/06,2.39896796153846 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/09/28,4.474829179789169 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/10/06,2.39896796153846 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/11/07,2.4522509307692277 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/11/07,2.4522509307692277 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/11/23,7.784550000362498 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/11/23,7.784550000362498 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/12/25,4.280195316346155 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/12/25,4.280195316346155 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/02/03,24.072216666666648 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/02/03,24.072216666666648 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/02/19,12.158141666676672 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/02/19,12.158141666676672 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/03/23,22.34590833333334 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/03/23,22.34590833333334 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/04/24,10.53164166666666 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/04/24,10.53164166666666 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/06/11,5.389874628831666 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/06/11,5.389874628831666 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/07/05,2.421179449999999 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/07/05,2.421179449999999 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/07/29,12.82787500229999 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/08/06,2.7475750000000057 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/07/29,12.82787500229999 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/08/06,2.7475750000000057 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/08/30,4.045431061739162 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/08/30,4.045431061739162 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/10,6.2040249951650095 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/01,3.84760156666666 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/09/23,7.521275000577493 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/10,6.2040249951650095 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/01,3.84760156666666 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/09/23,7.521275000577493 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/11/11,5.769704260586078 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/11/10,3.8519288846153854 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/25,2.955456700000001 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/11/11,5.769704260586078 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/11/10,3.8519288846153854 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/25,2.955456700000001 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/12/04,5.085153405197501 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/01/29,12.941375000137503 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/03/26,16.73867083665083 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/05/05,3.3772658899999994 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/05/29,11.606925002300002 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/06/30,4.947343568043337 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/07/08,4.180823244102554 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/06/22,3.296436203333329 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/08/10,2.663980125000001 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/08/09,3.877757578333323 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/08/25,3.806377729999994 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/09/27,6.778949992155012 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/12/07,22.348225000000006 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/02/09,15.782599999999988 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/04/23,5.622547730407498 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/05/08,4.5537500023 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/04/22,2.9391250000000007 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/06/10,11.67920000335998 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/06/09,3.613499974999995 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/07/03,16.172283365700835 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/08/04,7.971775001544999 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/07/28,6.48937499582501 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/07/27,4.027569230841721 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/09/05,3.672690186666659 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/09/21,7.204613639999999 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/09/29,12.570925000072496 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/11/01,11.600718353713342 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/10/23,12.030275015912496 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/12/03,10.453358342135822 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/05/02,4.054605308333328 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/04/25,6.040968195 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/05/27,8.139350763623337 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/05/26,3.179159099999997 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/06/28,20.31775208379336 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/08/06,4.17302869999999 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/07/30,3.113841918269229 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/08/31,3.217454550072499 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/08/22,20.603229166596662 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/08/30,3.165875000000004 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/10/09,4.910093189999992 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/11/10,10.78370064904762 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/10/25,8.874924999392498 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/01/29,22.47810000000001 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/04/03,15.879583363233326 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/08/09,10.776308343093314 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/08/02,3.26735757862333 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/08/25,14.725604166189168 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/09/26,6.905455303333337 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/11/06,8.274989598173336 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/10/28,5.950074999785005 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/11/29,9.576624594185846 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/11/24,2.178072599999997 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/11/21,2.2875106250000004 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/12/23,11.861037499667509 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/02/01,22.373925000000007 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/02/26,23.624491666666653 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/04/06,14.490204169849182 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/04/06,3.006691815 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/03/29,10.738699999905014 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/05/08,16.17996666682166 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/04/30,4.6402841 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/04/22,3.079775000000005 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/05/31,6.659058337763335 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/05/24,4.724775000410003 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/07/04,3.134999263406665 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/06/29,6.461297732415001 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/07/03,2.7517182000000004 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/06/25,2.92226592 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/08/07,22.274999999207505 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/09/10,2.9106363615949977 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/08/24,6.383423490432501 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/08/28,2.42823635 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/09/22,7.286449990617507 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/09/21,8.573218333573308 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/10/31,6.32824999042001 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/10/26,9.879250000479992 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/11/08,2.001529449999996 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/12/10,2.3782815500000014 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/11/24,3.0546545000000016 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/01/11,5.205256455218327 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/02/04,22.68484166666667 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/04/09,16.829437502532496 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/04/01,4.415397754807692 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/09,17.892208358633333 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/11,3.862197593333325 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/31,3.3158468183624965 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/26,3.2412681801449965 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/06/04,5.001817821502498 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/27,18.193050000167503 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/06/22,3.127677270289999 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/07/06,3.463421630769225 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/08/05,3.448302807444294 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/07/30,3.4342681900724976 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/07/22,5.202750000120005 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/09/06,7.805140156666666 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/09/01,5.969084091207495 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/08/31,5.180959099999991 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/08/23,2.2364477000000003 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/10/03,16.93603336792835 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/09/28,14.618525029884989 +Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/10/02,3.06465339 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/04/04,9.415074999810011 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/04/28,5.246485609134164 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/05/06,4.145634099999993 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/05/22,3.419352423076922 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/06/23,3.645006825337501 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/08/02,4.302374999999986 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/08/10,4.679675892307682 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/09/03,14.171899999952482 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/09/11,3.7596854864102536 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/08/26,3.0001188607692275 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/10/05,17.98744583687834 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/09/27,2.195352837499999 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/11/06,8.054824999620003 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/11/22,5.102268942296666 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/11/30,3.645103787435895 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/02/26,14.049706253877495 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/03/05,3.005775000000005 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/03/29,5.649353799546662 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/04/30,6.192853060778332 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/05/08,2.617299500000002 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/06/09,5.257663640747494 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/07/03,7.907383337174172 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/07/11,10.881975000427488 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/06/25,4.22378455384615 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/08/04,3.658886360362496 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/07/27,3.3992814830769227 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/09/05,3.754019701666661 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/08/28,4.168881820482495 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/10/07,7.240953786739162 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/09/21,3.603921966666661 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/09/29,3.632399999999995 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/11/08,7.136253798405826 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/10/23,5.796362878333334 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/10/31,12.70938333333332 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/12/10,3.570550000694999 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/02/04,13.233266666571664 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/03/08,10.347824999985002 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/04/09,2.0244157 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/05/11,12.487508333533324 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/05/27,4.121425002524997 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/08/07,7.038275005650003 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/07/30,3.4099652307692248 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/09/08,7.724679175746668 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/08/23,19.46140416693165 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/08/31,3.4496750000000067 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/10/10,6.731670827100848 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/09/24,7.46689545000001 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/10/02,2.8277480057692297 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/11/11,16.46344697730001 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/04/28,3.243890815384615 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/05/30,5.468425000434996 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/07/09,6.768925000360002 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/08/10,4.976381821834998 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/09/03,2.956909090482499 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/10/05,2.413256111126372 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/12/08,2.828237375000001 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/11/22,5.008079169691665 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/02/10,13.30045833898833 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/05/09,9.79752645064358 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/04/23,9.765054182191674 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/05/25,10.688800000115007 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/06/26,3.367999999999995 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/07/28,3.2966030334266674 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/08/05,3.816387123405828 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/09/06,3.678211730769226 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/09/30,15.876008334303322 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/10/08,18.309050000169997 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/09/22,15.082500000599987 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/11/09,6.073429539999994 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/10/24,3.879202904666661 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/12/03,13.985110437126668 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/12/11,3.237281735576924 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/11/25,6.847631750000004 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/02/05,8.54538333301086 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/04/01,2.4205903500000003 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/04/25,6.868827284999998 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/05/03,4.090062319999992 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/05/27,11.249333338338328 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/06/04,3.936119230769224 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/07/06,2.5615546250000016 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/07/30,2.228072721305 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/08/31,2.861571061666664 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/09/08,5.282400001715003 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/08/23,3.7577045999999945 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/10/10,18.976141666524175 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/12/29,3.353055011538458 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/04/04,2.3895250000000017 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/04/28,14.455718420595831 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/05/06,3.76964774 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/06/07,3.5038580307692264 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/06/23,2.597754499999998 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/08/02,3.287478330769229 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/08/10,5.126905313405823 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/07/25,7.692100000144995 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/09/03,4.588609099999991 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/09/11,3.0183371607692275 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/08/26,7.633350000357501 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/11/06,19.08155004863252 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/11/09,3.1606775783333307 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/11/04,20.79193333350332 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/10/29,2.5812828125000005 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/03/22,12.780189597920824 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/05/09,3.4370250199999943 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/05/09,2.615932200000002 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/05/01,2.9258958500000016 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/05/25,5.284400000959998 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/06/29,19.629966667356676 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/07/04,11.53557500019999 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/06/26,5.555025002467496 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/07/28,4.014413091538461 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/10/09,7.282810606666665 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/10/08,2.5424157249999992 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/09/22,4.756375000627492 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/10/26,6.586574995580012 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/11/09,3.2859347849999976 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/12/27,8.025363500000003 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/04/07,23.630906251082525 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/04/10,2.736640850000001 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/05/26,3.486784090869996 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/06/05,6.491563461538459 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/05/28,3.960661400072493 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/06/22,7.671070450844997 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/07/07,7.576842424610848 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/06/21,3.918456874999992 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/08/05,12.85145833812583 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/07/31,3.9228295466424976 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/07/31,8.649475000362493 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/07/23,3.4086318305074967 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/01,7.59420682 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/08/22,2.508850004494998 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/09,7.221175000362496 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/01,2.9864487807692277 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/28,9.684402288545002 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/10/03,3.898752744999993 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/25,4.636153662999991 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/10/27,16.186049999954985 +Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/11/28,3.646525000000006 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/04/04,11.70315000009501 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/04/04,11.70315000009501 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/05/06,5.330125000000005 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/05/06,5.330125000000005 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/05/22,5.301956829294992 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/05/22,5.301956829294992 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/02,9.359175005394984 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/10,2.840925000000005 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/02,9.359175005394984 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/10,2.840925000000005 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/09/11,3.669981624999998 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/26,3.341025 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/09/11,3.669981624999998 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/26,3.341025 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/09/27,4.230506280769225 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/09/27,4.230506280769225 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/02/02,11.99222075745166 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/02/02,11.99222075745166 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/03/29,5.688085626666666 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/03/29,5.688085626666666 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/04/30,6.297204551666661 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/05/08,2.259011525000002 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/04/22,4.892708333380827 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/04/30,6.297204551666661 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/05/08,2.259011525000002 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/04/22,4.892708333380827 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/05/24,14.12544166676166 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/05/24,14.12544166676166 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/03,5.164650000312503 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/11,11.739291666856662 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/06/25,5.544290909999996 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/03,5.164650000312503 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/11,11.739291666856662 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/06/25,5.544290909999996 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/08/04,7.555542423693336 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/27,3.748754500000002 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/08/04,7.555542423693336 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/27,3.748754500000002 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/05,3.735700004999996 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/08/28,3.3743750025124983 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/05,3.735700004999996 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/08/28,3.3743750025124983 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/07,4.909962891666659 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/21,3.104719706666663 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/29,3.2182834807692267 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/07,4.909962891666659 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/21,3.104719706666663 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/29,3.2182834807692267 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/11/08,5.356512919380947 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/23,7.489112128333331 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/31,6.044760000265001 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/11/08,5.356512919380947 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/23,7.489112128333331 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/31,6.044760000265001 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/12/10,22.29512499935501 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/12/10,22.29512499935501 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/03/08,14.235362501150007 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/03/08,14.235362501150007 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/05/11,6.900788260941645 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/05/11,6.900788260941645 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/06/28,13.664141686289192 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/06/28,13.664141686289192 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/07/30,3.4886971307692263 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/07/30,3.4886971307692263 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/09/08,6.607549999887514 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/08/23,11.877293779574984 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/08/31,2.7082906400000013 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/09/08,6.607549999887514 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/08/23,11.877293779574984 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/08/31,2.7082906400000013 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/09/24,5.9618363718841705 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/10/02,3.8286344057692254 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/09/24,5.9618363718841705 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/10/02,3.8286344057692254 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/11/11,7.67019545999999 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/11/11,7.67019545999999 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/01/06,21.77565833333335 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/04/28,18.06614999995501 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/05/30,12.771508348330835 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/07/09,8.529271973405832 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/07/01,3.6016250002649923 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/08/10,4.562604550072498 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/08/02,4.930984100337492 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/09/27,10.36441666939168 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/10/05,4.396699999999998 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/01/01,8.991233333143324 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/03/06,22.34590833333334 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/02/26,21.77565833333335 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/04/23,5.958286365072497 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/06/10,16.93727499871 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/06/26,11.736208335633318 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/07/28,14.407441666786651 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/08/05,3.5561999999999943 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/08/29,3.5734545486958287 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/09/06,2.5208128000000003 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/09/30,12.245108333273349 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/10/08,6.4014204899999925 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/09/22,13.430574999999989 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/11/09,6.178025000094992 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/10/24,3.4042727499999983 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/02/05,20.90140833314336 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/02/29,21.867666666666683 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/04/01,15.332925000000005 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/04/25,7.655683336739165 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/05/03,6.956875 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/05/27,6.318950000645011 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/06/04,13.683349999769987 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/07/06,2.8239498000000016 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/07/30,15.441024999617484 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/08/07,2.684615600000002 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/08/31,4.008075000072492 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/09/08,3.9548500010149934 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/08/23,7.181050000382507 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/10/10,13.384608335343328 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/09/24,12.498574999999992 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/12/29,21.88613333333335 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/05/06,2.3633239500000034 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/06/07,5.375815711538459 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/06/23,2.9709078700000005 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/08/02,3.3191840906524974 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/07/25,3.808875000072492 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/09/03,3.86178750293 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/09/11,2.3375565000000007 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/08/26,7.576825000552507 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/11/06,4.662786365142497 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/11/09,4.428575000337492 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/11/04,4.307925000072497 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/10/29,2.0230043499999963 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/02/02,22.191458333333347 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/02/26,10.639041666451671 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/03/30,7.526049999985004 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/05/09,6.855090935144992 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/05/09,4.264178033333328 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/05/01,2.9310862500000017 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/04/23,10.152125000279996 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/05/26,11.8593999978475 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/06/02,13.32597500016999 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/06/29,3.3744068199999937 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/06/26,9.88092159479666 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/08/02,8.0625448370688 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/08/29,2.8652750000000067 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/10/09,6.077047732300001 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/10/08,2.681488375 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/09/22,2.9144315299999977 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/10/26,3.868742744615384 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/11/09,2.658735575 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/02/21,10.92659999985751 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/04/10,11.723883333285825 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/05/26,6.664856068670831 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/05/28,22.581666668776688 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/06/22,7.318618180167504 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/07/07,7.216016667484162 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/08/05,5.550952271207498 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/07/31,5.806383334828333 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/09/01,7.571518180407501 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/09/09,5.604725000434995 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/09/01,4.434231824999995 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/10/03,6.351115910095006 +Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/09/25,2.569770464999997 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/04/28,19.15837500117002 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/04/28,19.15837500117002 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/05/30,4.620208333858341 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/06/07,5.926635608573338 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/05/22,5.897768101640836 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/05/30,4.620208333858341 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/06/07,5.926635608573338 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/05/22,5.897768101640836 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/07/01,4.597972162580008 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/07/01,4.597972162580008 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/08/02,10.922550036707497 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/07/25,13.77210833347584 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/08/02,10.922550036707497 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/07/25,13.77210833347584 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/09/03,9.954391691549164 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/09/11,4.855225003099996 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/08/26,17.016341673304165 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/09/03,9.954391691549164 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/09/11,4.855225003099996 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/08/26,17.016341673304165 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/10/05,23.803441673566684 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/10/05,23.803441673566684 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/10/29,2.3740045000000007 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/10/29,2.3740045000000007 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/10,7.5002766769391584 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/01/25,8.502206250420024 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/02,3.950119309615384 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/10,7.5002766769391584 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/01/25,8.502206250420024 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/02,3.950119309615384 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/26,12.617213660219994 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/26,12.617213660219994 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/03/29,7.981131463393336 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/06,4.783067450812497 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/03/29,7.981131463393336 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/06,4.783067450812497 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/30,6.47809999338501 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/05/08,7.451210384748341 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/22,4.51975909814916 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/30,6.47809999338501 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/05/08,7.451210384748341 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/22,4.51975909814916 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/06/09,14.406866666999155 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/06/09,14.406866666999155 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/03,8.954312497075001 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/11,7.644506825963318 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/06/25,14.0754250023475 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/03,8.954312497075001 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/11,7.644506825963318 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/06/25,14.0754250023475 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/08/04,24.747741668966704 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/27,8.514119862435898 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/08/04,24.747741668966704 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/27,8.514119862435898 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/08/28,16.28056667126667 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/08/28,16.28056667126667 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/07,15.920777277933349 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/07,15.920777277933349 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/11/08,8.743567416666654 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/23,13.364420842533344 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/31,2.811010999999999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/11/08,8.743567416666654 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/23,13.364420842533344 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/31,2.811010999999999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/12/02,2.687245249999998 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/12/02,2.687245249999998 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/01/11,17.12659318563334 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/12/26,24.44116666666665 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/01/11,17.12659318563334 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/12/26,24.44116666666665 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/04,2.644961005769232 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/04,2.644961005769232 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/28,15.341385416904153 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/03/08,16.80217500248998 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/20,5.570342526282044 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/28,15.341385416904153 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/03/08,16.80217500248998 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/20,5.570342526282044 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/04/09,2.348097576538462 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/04/09,2.348097576538462 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/06/28,5.833559099999995 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/06/28,5.833559099999995 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/07/22,8.011900005849999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/07/30,7.090916668281659 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/07/22,8.011900005849999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/07/30,7.090916668281659 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/09/08,7.732316657886669 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/08/31,2.8737750000000046 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/09/08,7.732316657886669 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/08/31,2.8737750000000046 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/09/24,7.270159090000002 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/10/02,2.564533999999997 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/09/24,7.270159090000002 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/10/02,2.564533999999997 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/11/11,12.326190156666655 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/11/03,14.882708333118314 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/11/11,12.326190156666655 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/11/03,14.882708333118314 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/12/29,8.283799997912514 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/03/11,5.624826257051276 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/04/28,4.614302699999996 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/05/30,7.539516666811673 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/07/09,13.227675003845006 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/08/10,11.564979187374163 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/08/02,9.046208333525833 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/09/03,4.032375000000003 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/09/27,6.212312494060006 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/10/05,5.723035061999996 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/12/08,5.315264571999995 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/11/22,2.563972575000002 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/01/01,3.4724942307692315 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/12/24,6.670705807692304 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/02/10,9.04841666793916 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/01/25,3.403500000000003 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/02/26,12.866008333095838 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/04/07,4.24939166646167 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/03/30,16.73528333390333 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/04/23,13.468829177254152 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/05/25,6.0412249938150095 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/06/26,13.61294169388666 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/07/04,4.268954623601659 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/07/28,8.849763638317505 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/08/29,10.573825007187493 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/09/30,8.278175000000017 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/09/22,14.279693189999984 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/01,21.27305834713336 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/09,17.20905000038999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/10/24,3.853379189999997 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/12/03,10.280754169931662 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/26,6.424152285332505 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/26,6.257936370262502 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/25,12.770508333318324 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/01/29,9.719252025758603 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/01/29,8.287309600220276 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/03/01,5.109906823894172 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/03/01,4.49358560795084 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/02/21,14.196786367300009 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/04/02,8.999841083156078 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/04/02,10.088127079900834 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/04/01,3.7253689466666606 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/05/04,13.657591771596676 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/05/04,15.334500119545012 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/05/03,4.59430530420417 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/05/27,5.207922572749168 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/06/04,6.369583333333347 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/06/28,11.97916583268832 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/06/21,8.169422726786673 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/06/21,10.042910603453342 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/07/06,11.634840909999998 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/08/08,8.492025013114999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/08/08,7.816392364988609 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/08/07,8.176725000434994 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/09/08,12.404133333333332 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/09/25,9.873183334188347 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/09/25,9.91881250204251 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/10/10,8.461515910000006 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/10/27,9.18558031476666 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/11/28,3.119743180095002 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/11/28,7.046120460167504 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/12/29,3.327668703846152 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/01/30,3.513437230769231 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/03/11,9.759474999427518 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/04/05,11.51510835693083 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/04/05,10.988500027977508 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/04/04,10.173708340233324 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/07,14.3056750116425 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/07,11.431045835848334 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/04/28,7.80256665944167 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/06,4.3914208458908295 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/23,6.071362490257509 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/23,6.18769999828251 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/06/07,6.403227279999995 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/06/24,10.719587120000003 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/06/24,10.715887120000003 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/06/23,6.883767444834164 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/11,16.69731916690915 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/11,10.646524999145 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/02,9.9721875049075 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/07/26,7.242145825428346 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/09/03,14.38370838393335 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/27,3.936950000499999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/27,4.207750000429997 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/09/11,11.515747729999998 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/26,9.72939166671417 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/09/27,7.875763640000005 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/06,8.650372619047614 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/09,5.139211399999997 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/09,4.369830549999996 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/04,3.460184853333333 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/04,3.3445348533333323 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/10/29,13.451025000599993 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/10,14.904850000905007 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/10,4.057261447115383 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/26,10.157741666451678 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/19,3.043937499915007 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/19,3.324099999915009 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/03/22,12.989999999999998 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/05/09,18.86060419872419 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/05/09,4.175586006570832 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/05/01,4.407790155047497 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/04/23,5.023893947061666 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/05/25,7.759200000237482 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/11,6.382615910240003 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/11,6.318265910240004 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/06/29,10.424673106714174 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/06/24,3.775387115905833 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/06/24,3.765112115905832 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/04,5.466779175189996 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/06/26,5.052484471798332 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/08/02,11.13250208352333 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/28,16.025200015572512 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/28,15.691650023095011 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/08/05,11.187836363190836 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/08/31,9.468786360095004 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/08/31,9.905852270000004 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/10/09,19.11401666896668 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/11/09,4.614478765 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/02/10,21.78981834497582 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/01/28,4.603731839999997 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/02/27,6.20357499495001 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/02/27,6.193049994950007 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/03/09,4.954490939999999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/04/10,6.912211339999995 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/04/02,6.773179545047486 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/05/26,15.684285416714168 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/06/05,5.316442059275832 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/05/28,17.09602500009497 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/07,7.598375000217499 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/06/29,9.920760608213351 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/08/05,15.263648194539437 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/31,18.787447499999995 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/31,17.01368749999999 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/31,12.276008333333325 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/23,15.045200000147505 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/08/27,10.67902416681416 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/08/22,8.492021249262512 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/08/22,5.674237498407504 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/09/01,12.343984089999989 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/10/03,13.395334099999982 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/11/11,3.809649889240116 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/12/06,4.004980472307684 +Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/11/28,2.8675243846153853 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/05/05,7.871704166769172 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/06/06,5.894600005030001 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/07/08,9.501049990204994 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/06/22,2.3805500022599984 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/08/09,3.783377126333326 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/07/31,15.641575043700014 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/07/24,2.7683613605074986 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/08/01,4.05188273230769 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/09/01,12.5449250099825 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/08/25,4.455647586538459 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/09/26,3.376323483623329 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/10/04,6.537879173016665 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/11/04,6.689707573478329 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/12/06,6.036468749402507 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/11/29,7.113159725714279 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/01/24,21.44325833333336 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/04/05,4.833840917419998 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/03/27,3.649328793380833 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/05/07,6.648666071751073 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/04/28,10.56296250707 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/04/21,7.003912888865005 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/04/29,3.633974999999999 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/05/23,8.643895835610827 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/05/31,4.016849999999996 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/06/24,7.478850006085002 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/07/02,6.4216750010449895 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/08/11,5.59087832084173 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/08/02,3.8464121186958296 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/07/26,12.651974168671682 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/08/03,4.314024999999996 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/08/27,2.9554787867391674 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/09/04,8.726234090575005 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/09/28,3.2328059079999973 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/10/06,4.232348899999998 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/11/07,2.921004247664837 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/12/09,16.726133333278327 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/01/02,8.565456531445278 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/12/25,6.9947454099999895 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/02/10,24.238439583980856 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/02/26,11.438308329445828 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/02/19,12.998558333590838 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/03/30,9.231424999962504 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/05/10,4.489904656438569 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/04/24,9.22095000640001 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/06/11,4.246452281221671 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/06/03,4.605450000144997 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/06/27,6.174499994320009 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/07/05,4.129871888461537 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/07/29,3.7338841008699983 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/08/06,12.465300000072498 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/08/30,3.2430772705799966 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/10/01,2.7566977300725 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/09/23,3.939327953846152 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/11/10,2.8427018749999995 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/10/25,7.216813350000007 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/12/04,6.612749995825011 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/01/29,10.478074999907514 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/05/05,6.579031824599995 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/05/29,5.740925000812504 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/06/30,5.810924975415007 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/07/08,5.420016669441676 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/06/22,14.580416667166665 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/08/09,3.4805685641025583 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/08/25,2.985603063333331 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/12/07,14.64884166666667 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/12/23,10.48994166934916 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/02/09,12.824258333095838 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/02/01,22.68663333333334 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/05/08,4.399590166666671 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/06/01,12.393100000312508 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/06/09,3.0010978707692284 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/07/03,2.2035500014024985 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/06/25,2.836525000000006 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/08/04,4.440333335283332 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/07/27,4.116345499999994 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/09/05,2.416827279999999 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/09/21,3.0423483350291662 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/11/08,13.858459586958322 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/02/28,22.337341666666678 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/05/02,7.542225388702504 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/05/10,3.73507309307692 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/06/11,3.3933522500000066 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/05/26,8.067150003642498 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/07/05,15.724937499904993 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/08/06,2.58419091 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/09/07,21.70599999815001 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/08/30,3.1250045000475013 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/10/09,2.7816916686233326 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/09/23,13.320072500760013 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/11/10,3.7875955888116666 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/04/03,13.73484170806668 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/04/27,19.679016666254174 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/05/29,14.717358333318316 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/07/24,6.997224996370006 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/09/10,7.311584470698335 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/08/25,8.494025000189987 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/09/26,3.6134659101449977 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/11/05,13.211274999769987 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/11/29,6.409225000200005 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/12/07,11.99250000077 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/11/24,4.313346213670829 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/11/21,3.0987436249999973 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/01/08,4.271647754807693 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/12/23,3.069469230769232 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/04/06,7.714468751434998 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/04/06,5.34961137999999 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/03/29,6.643236132692295 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/05/08,3.1676188299999977 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/04/30,6.241633336811656 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/06/05,13.156316687414169 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/05/31,15.538987499857514 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/05/24,6.092709100652502 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/07/09,3.7849513582174943 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/07/04,3.925611359999993 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/06/22,8.322681666351674 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/07/11,11.381675000237482 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/07/03,4.567922994230764 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/06/25,4.559575000144991 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/08/07,3.5394083428991654 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/09/10,3.092140147029164 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/08/24,10.219399998684995 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/08/28,4.2318367073717935 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/09/29,4.699125356923072 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/09/21,5.180918184999991 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/11/05,8.814887508522498 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/10/31,4.239256664016668 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/11/08,3.037892228434067 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/11/22,9.136948195786932 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/12/10,2.696039124999999 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/11/24,3.7407000000000026 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/01/11,2.2988734750000046 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/04/09,4.0152473499999966 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/04/01,13.117541666429172 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/05/09,8.251102084213336 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/05/11,2.7382522500000066 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/04/25,8.830737415889224 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/06/05,8.346774998420008 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/05/31,3.5117068150724937 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/06/04,7.658275007832499 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/05/27,17.89530833347584 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/06/27,6.804531240635003 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/06/22,3.8528113606524936 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/07/06,5.301252270072495 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/08/10,16.714885607713324 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/07/24,19.01211666602165 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/07/30,4.053184099999993 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/07/22,3.71099999999999 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/09/06,3.327360597029164 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/09/01,3.0810681819574963 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/08/31,4.213960174038459 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/08/23,4.58122925 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/10/03,6.508095833760832 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/10/02,3.391098380769229 +Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/11/03,4.466033333463325 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/05/05,3.8944220904144 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/04/27,2.9215250000000066 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/05/29,6.180525000887502 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/06/22,2.92353259427583 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/07/24,11.710641669014178 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/08/25,5.315949999905 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/09/02,3.329075000095005 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/10/04,13.676000000185 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/11/29,4.096816207653393 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/11/21,4.391676516739162 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/04/05,7.418420841995832 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/04/21,6.212641665609161 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/05/23,9.581149999364998 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/05/31,2.581002250047502 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/06/24,2.7097780445658315 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/07/02,3.3377795 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/08/11,4.1442977403624965 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/07/26,5.202813834734172 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/08/03,2.738975000000005 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/08/27,5.608250003617501 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/09/04,5.177425000119993 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/09/28,2.800347571333332 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/10/06,3.0544219365384584 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/11/07,2.927298872435896 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/02/03,22.34590833333334 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/04/08,10.093492501122522 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/03/23,13.94009166661916 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/04/24,7.334615920469995 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/06/11,5.327622735458334 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/06/03,4.7781000033949965 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/06/27,19.26931666590168 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/07/05,6.3591060634783325 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/07/29,4.625891671421671 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/08/30,2.72598030174 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/09/07,3.5581864999999957 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/10/01,3.368935621811662 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/09/23,4.540363634999993 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/10/25,5.709309991999994 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/12/04,7.755987499810013 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/12/28,21.750616666666684 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/04/11,8.669349999477525 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/03/26,22.30449999935501 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/05/05,12.66482501495002 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/05/29,2.982070451449997 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/06/30,17.781124999999985 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/07/08,3.5393330307692263 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/09/02,2.005835611426664 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/01/08,10.255466666144187 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/02/01,21.838800000000013 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/05/08,3.347306819999996 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/06/01,7.7870041645916785 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/06/09,9.49537500266 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/07/03,4.503850002409997 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/08/04,8.699656250875012 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/07/27,9.242884090335 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/09/05,14.137058347323348 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/09/21,3.201667416884161 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/09/29,4.008859090435003 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/10/23,11.543559416196892 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/05/02,7.9995999998099965 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/05/26,5.217842423380831 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/07/05,15.594174999999998 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/08/06,2.0865431810625 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/08/22,2.479281250712498 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/10/09,5.137103256881671 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/11/10,6.069224995144992 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/10/25,11.038412320856072 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/01/29,23.455858333333325 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/02/06,11.791533333518334 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/03/02,22.404625000000006 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/04/03,14.085783432098337 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/06/06,7.351150001472503 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/07/08,16.34894166680916 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/06/30,4.268800000047494 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/07/24,17.59764166688164 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/09/10,4.062405305072493 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/09/02,17.689599999784974 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/09/26,3.2692886303624955 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/10/28,11.884680967567766 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/11/05,6.016803141999993 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/11/24,5.108429182692301 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/02/01,21.970933333333345 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/01/24,21.791766666666685 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/03/29,8.931426923076916 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/05/08,3.633358336666663 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/04/30,5.3266083356333285 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/04/22,7.186438500000003 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/06/05,3.498249257609164 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/05/31,5.064758335988332 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/05/24,3.810572739999992 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/07/04,3.484797731667494 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/07/11,3.621780318550829 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/07/03,7.297181839395827 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/06/25,2.840400099999999 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/08/07,15.880566667251657 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/09/10,20.782379166761658 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/08/24,13.153800000250005 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/08/28,7.921741650072494 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/09/29,5.328088313076913 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/09/21,5.75342273 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/10/31,11.546500000395 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/11/08,3.177837347435895 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/11/22,10.378964895454995 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/12/10,5.017797267435896 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/11/24,4.546859855747496 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/01/11,14.274800000000011 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/12/26,22.219083333285848 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/02/04,22.304175000000008 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/04/09,3.972464582072498 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/04/01,13.093256266919994 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/05/09,6.677174998982504 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/05/11,6.932775002562494 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/06/05,18.341666668106654 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/05/31,14.309233333930829 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/06/04,7.099985632060832 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/05/27,6.432375000672509 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/07/06,3.148949999999993 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/07/30,15.898066680566687 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/07/22,2.529825000047499 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/09/06,3.6747295405074967 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/09/01,4.898240008457496 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/08/31,11.85521818507249 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/08/23,17.426218338028317 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/10/08,7.252024995395011 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/10/03,11.9096625004275 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/09/28,8.30675746576179 +Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/11/03,4.871287321999999 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/04/28,8.104415184183333 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/04/28,6.786120250184165 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/06,9.692933335825815 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/06,6.271450002827498 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/04/28,8.104415184183333 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/04/28,6.786120250184165 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/06,9.692933335825815 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/06,6.271450002827498 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/30,9.869475001330006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/30,8.474139583760842 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/30,9.869475001330006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/30,8.474139583760842 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/06/23,7.369375000217495 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/06/23,9.851175000289992 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/06/23,7.369375000217495 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/06/23,9.851175000289992 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/02,13.71617503105 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/02,13.3051250311225 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/02,13.71617503105 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/02,13.3051250311225 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/03,9.82088958439083 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/03,9.262266859390833 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/11,4.262575000000009 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/11,3.105100000000005 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/26,3.12681125 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/26,4.802438500000002 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/03,9.82088958439083 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/03,9.262266859390833 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/11,4.262575000000009 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/11,3.105100000000005 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/26,3.12681125 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/26,4.802438500000002 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/05,15.304695929848336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/05,14.707620916180831 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/27,2.52450196826923 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/27,3.367526509615386 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/05,15.304695929848336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/05,14.707620916180831 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/27,2.52450196826923 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/27,3.367526509615386 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/29,19.14709166701165 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/29,3.906052250192504 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/29,19.14709166701165 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/29,3.906052250192504 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/11/22,9.123986388142493 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/11/22,2.952622800145002 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/11/22,9.123986388142493 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/11/22,2.952622800145002 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/10,10.422558333118342 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/01/25,22.09894999935501 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/02,20.672387500384996 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/02,5.381900000457497 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/10,10.422558333118342 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/01/25,22.09894999935501 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/02,20.672387500384996 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/02,5.381900000457497 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/26,14.613354170924165 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/26,14.535891669494164 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/05,11.608450000385004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/05,11.608450000385004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/26,14.613354170924165 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/26,14.535891669494164 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/05,11.608450000385004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/05,11.608450000385004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/29,5.97591061355083 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/29,5.797160613550826 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/29,5.97591061355083 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/29,5.797160613550826 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/30,8.937683333333336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/30,6.782058333333338 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/08,3.9811042307692257 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/22,13.648733333405827 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/22,13.74233333378582 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/30,8.937683333333336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/30,6.782058333333338 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/08,3.9811042307692257 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/22,13.648733333405827 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/22,13.74233333378582 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/09,4.133700000144995 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/24,12.09355833333332 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/24,11.895924999999988 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/09,4.133700000144995 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/24,12.09355833333332 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/24,11.895924999999988 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/03,4.526962504372502 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/03,4.782833337340837 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/11,14.768400000572496 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/11,5.745950001294993 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/25,3.366794461538458 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/25,4.842024226923072 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/03,4.526962504372502 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/03,4.782833337340837 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/11,14.768400000572496 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/11,5.745950001294993 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/25,3.366794461538458 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/25,4.842024226923072 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/04,3.841046215144993 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/04,3.926596215144994 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/27,3.4553045000000027 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/27,4.246991792307691 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/04,3.841046215144993 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/04,3.926596215144994 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/27,3.4553045000000027 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/27,4.246991792307691 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/05,3.675975000072493 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/05,3.5384500000724937 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/28,5.5846090899999945 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/28,4.047367711538453 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/05,3.675975000072493 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/05,3.5384500000724937 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/28,5.5846090899999945 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/28,4.047367711538453 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/07,5.67749323104761 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/07,4.069262271999996 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/21,3.599771966666659 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/21,3.5792469666666595 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/29,12.748770833380838 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/29,14.078445833380837 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/07,5.67749323104761 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/07,4.069262271999996 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/21,3.599771966666659 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/21,3.5792469666666595 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/29,12.748770833380838 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/29,14.078445833380837 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/11/08,4.905458362714278 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/11/08,5.593106102714278 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/23,6.902429555072497 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/23,7.823996971739161 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/31,2.884525000000005 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/11/08,4.905458362714278 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/11/08,5.593106102714278 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/23,6.902429555072497 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/23,7.823996971739161 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/31,2.884525000000005 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/12/10,12.876775001880002 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/12/10,8.118312496645004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/12/10,12.876775001880002 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/12/10,8.118312496645004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/01/27,11.213358333118336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/04,10.554433333118345 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/04,10.559199999785008 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/01/27,11.213358333118336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/04,10.554433333118345 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/04,10.559199999785008 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/03/08,12.281791672859177 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/03/08,11.646400757241665 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/20,15.035024999905009 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/03/08,12.281791672859177 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/03/08,11.646400757241665 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/20,15.035024999905009 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/04/09,14.912658335968333 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/04/09,10.613431259317494 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/04/09,14.912658335968333 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/04/09,10.613431259317494 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/03,8.062484999379997 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/03,21.129273333713336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/11,4.016231819999998 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/11,3.1693203333333293 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/03,8.062484999379997 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/03,21.129273333713336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/11,4.016231819999998 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/11,3.1693203333333293 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/07,4.2021973472441685 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/07,4.686647347751667 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/07/30,3.2819341899999994 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/07/30,2.392505025000001 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/07,4.2021973472441685 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/07,4.686647347751667 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/07/30,3.2819341899999994 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/07/30,2.392505025000001 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/23,3.478853787464162 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/23,3.857428787174161 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/31,2.8215294999999987 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/31,2.8306294999999984 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/23,3.478853787464162 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/23,3.857428787174161 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/31,2.8215294999999987 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/31,2.8306294999999984 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/10,8.875296059666656 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/10,8.603564388333321 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/09/24,2.7446090802174985 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/09/24,3.090751507246663 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/02,2.8109910418956034 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/02,2.8463029182692297 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/10,8.875296059666656 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/10,8.603564388333321 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/09/24,2.7446090802174985 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/09/24,3.090751507246663 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/02,2.8109910418956034 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/02,2.8463029182692297 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/11,3.984199266666664 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/11,4.56990987333333 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/11,3.984199266666664 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/11,4.56990987333333 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/27,7.246141666489176 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/04/28,5.368511349999994 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/04/28,4.560053230769224 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/05/30,16.090574999540003 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/05/30,16.079958332968335 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/07/09,8.71540001181249 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/07/09,9.023900011787497 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/07/01,7.020600000072498 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/07/01,4.608278330769223 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/08/10,4.379703806666657 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/08/10,4.047353806666656 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/09/03,12.583250000142492 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/09/03,12.655200000142491 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/09/27,20.235583333903328 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/09/27,11.701474997465 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/10/05,2.503625830769229 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/10/05,2.432699343269231 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/12/08,8.754513750535006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/12/08,9.745197083448332 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/11/22,4.502244042307692 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/11/22,3.4805825719230734 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/01/01,6.037874996900008 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/01/01,8.045320828078339 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/03/06,11.153049999325006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/03/06,11.153049999325006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/02/26,20.98750833333336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/04/23,4.825486365214998 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/04/23,4.782761365214999 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/06/26,12.32664167605667 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/06/26,11.971533342770831 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/07/28,6.967741682981671 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/07/28,7.597466683339167 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/08/05,3.8759988307692255 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/08/05,2.917908910448718 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/08/29,3.597735614999995 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/08/29,4.009241671739159 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/09/06,3.2071647307692257 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/09/06,3.3798564941025586 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/10/08,3.106278576538461 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/10/08,3.94607267884615 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/01,6.759641657886676 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/01,7.076599985985005 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/09,2.4462000000000006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/10/24,4.590716544666661 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/10/24,7.845572729999998 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/12/03,9.784557251286104 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/12/03,9.627924866856109 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/12/11,3.689883701923071 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/12/11,2.958594961538462 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/25,5.033875000144998 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/25,16.839650000189984 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/04/01,23.096225006567508 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/04/01,22.580099245683343 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/04/25,6.484187124999997 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/04/25,6.487287124999997 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/05/03,2.625125000000001 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/05/03,2.386752250000004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/05/27,5.534400000552505 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/05/27,5.379200000457505 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/06/04,7.40040000029 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/06/04,5.297925000072485 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/07/06,3.415179649999999 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/07/06,3.2572461999999978 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/07/30,2.9686241851648374 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/07/30,3.0843639159340683 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/07,5.460361368351661 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/07,7.033075759770826 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/31,5.3032931855525 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/31,5.176777275404998 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/09/08,8.462875000455005 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/09/08,7.254775000407498 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/23,5.020709089999992 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/23,3.603256096153845 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/10/10,16.252099999999995 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/10/10,17.341175002037517 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/09/24,4.617000000772505 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/09/24,3.9106750015224985 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/11/03,7.199175000200006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/11/03,5.685049999495006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/12/29,2.310352575000004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/12/29,2.693079320000002 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/01/22,22.64890000000001 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/03/11,11.461183333143325 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/03/11,11.392158333143325 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/02/23,23.64040833333333 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/02/23,24.02516666666665 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/03/27,9.41303333304833 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/03/27,9.57428333304833 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/04/04,8.7958772703375 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/04/04,11.251500000337511 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/05/06,3.852924913333324 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/05/06,4.516776521666659 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/06/07,3.0065635 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/06/07,3.975847204615381 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/06/23,4.674325000047497 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/06/23,2.634279500047501 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/02,2.80810249858 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/02,3.400669165069166 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/10,3.2859795000000003 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/10,3.0705045000000006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/07/25,14.248550002515016 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/07/25,4.008174999999992 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/09/03,4.892128035198328 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/09/03,5.027489774795828 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/09/11,4.016443199999997 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/09/11,2.909602250000004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/26,8.49788333398084 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/26,4.6952076134058265 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/06,6.902440802428453 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/06,7.016730198014288 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/09,4.48101125 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/09,2.5477385000000004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/04,4.122710013461535 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/10/29,2.474891380769229 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/10/29,2.797100641895603 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/22,25.46649375005001 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/22,9.970318750402503 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/12/24,9.984483333333362 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/02/02,21.967658333333347 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/02/02,21.967658333333347 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/01/25,23.457008333333327 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/02/26,22.539900000000006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/03/30,6.632300001355005 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/03/22,16.278450000405 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/03/22,12.575320833933343 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/09,3.4175089463333266 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/09,2.6828550250000025 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/09,2.6063665750000022 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/01,3.1853100049999994 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/01,4.734108209999991 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/04/23,12.204708333405817 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/26,15.681424999999996 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/26,17.191075 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/25,7.3108318301841635 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/25,7.413611757364162 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/11,3.529369694105828 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/06/29,2.789089997999998 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/06/29,2.712614997999998 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/04,2.980879500000001 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/04,5.317249544295057 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/06/26,19.15209166640418 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/06/26,19.181291666404174 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/08/02,11.440273333343336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/28,2.524790158986666 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/28,2.9897045000000024 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/28,2.4794295 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/08/31,2.8704177698717945 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/08/29,3.5228295000474983 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/08/29,3.2407545000475 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/08,2.713271974999999 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/08,2.4675704803571428 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/09/30,13.543149999999985 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/09/30,14.372474999999984 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/09/22,7.368702250047502 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/09/22,4.660700000047497 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/26,14.896558333333315 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/26,10.037704996584994 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/11/09,2.5064004124999983 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/11/09,2.550077625000001 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/24,22.070200000752514 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/12/27,3.4933750000000083 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/12/27,2.8896750000000027 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/02/21,9.722050001185004 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/04/07,9.11592499947753 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/04/10,12.398083333285827 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/04/26,6.81320682 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/04/26,4.468999999999991 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/05/26,8.173377270360001 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/05/26,8.742930303525831 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/05/28,3.170450001232494 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/05/28,16.020233338150838 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/04,10.71404875334501 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/07,4.171875001087495 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/07,4.865285608889164 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/08/05,6.659074987365006 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/08/05,6.354224993415008 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/31,4.402002271569999 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/23,4.058873463333336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/23,3.209525713333335 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/01,3.5005454604349944 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/08/27,5.574633333318336 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/08/22,3.102001919871794 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/01,5.888959090119991 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/01,3.8122682999999937 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/28,8.443341664986669 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/10/03,4.306336364999994 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/10/03,4.496117585769226 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/25,7.8843590900000065 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/25,3.6461181799999935 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/11/28,3.5080705384615385 +Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/11/28,3.078696517857143 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/04/28,14.789916761689168 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/06,4.205589254666664 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/04/28,14.789916761689168 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/06,4.205589254666664 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/06/06,6.680044999522505 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/30,5.51233145381167 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/29,4.303815909999999 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/22,2.778533725000002 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/06/06,6.680044999522505 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/30,5.51233145381167 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/29,4.303815909999999 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/22,2.778533725000002 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/07/08,13.894633333285828 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/06/22,9.955608340665814 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/07/08,13.894633333285828 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/06/22,9.955608340665814 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/09,4.231608337294168 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/02,21.652350000155 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/07/24,17.425283333118326 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/09,4.231608337294168 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/02,21.652350000155 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/07/24,17.425283333118326 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/25,2.792753791666663 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/11,3.0535490000000003 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/02,4.272886216346154 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/25,2.792753791666663 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/11,3.0535490000000003 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/02,4.272886216346154 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/05,10.915322501235018 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/26,4.191245838418334 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/04,3.764260716270712 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/27,2.9674644182692287 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/05,10.915322501235018 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/26,4.191245838418334 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/04,3.764260716270712 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/27,2.9674644182692287 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/05,2.091218705357141 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/29,2.8638750000000037 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/05,2.091218705357141 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/29,2.8638750000000037 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/29,4.5408242977142805 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/22,4.576319083567738 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/12/07,3.683797709615379 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/30,3.924734992427689 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/29,4.5408242977142805 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/22,4.576319083567738 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/12/07,3.683797709615379 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/30,3.924734992427689 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/01/08,10.060033333718344 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/01/08,10.060033333718344 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/02/02,5.819322842307685 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/02/02,5.819322842307685 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/05,7.696239583930834 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/03/29,5.1035727849794 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/05,7.696239583930834 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/03/29,5.1035727849794 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/30,9.090764398333336 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/21,8.656091669174169 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/08,4.171950000262496 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/29,2.844885025 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/30,9.090764398333336 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/21,8.656091669174169 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/08,4.171950000262496 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/29,2.844885025 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/23,6.679645011970833 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/31,6.274331444474159 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/24,10.70587500066999 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/23,6.679645011970833 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/31,6.274331444474159 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/24,10.70587500066999 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/03,13.130966717266688 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/06/24,10.562868943586668 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/02,2.866650000000003 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/06/25,3.446386721153845 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/03,13.130966717266688 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/06/24,10.562868943586668 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/02,2.866650000000003 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/06/25,3.446386721153845 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/11,9.514458750570014 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/04,3.0287628967391638 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/26,5.468483332735835 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/03,2.6409213365384625 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/27,3.01764105 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/11,9.514458750570014 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/04,3.0287628967391638 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/26,5.468483332735835 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/03,2.6409213365384625 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/27,3.01764105 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/05,3.2596606066666625 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/27,5.178915001912504 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/04,3.0081113649999973 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/28,4.9600999999999935 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/05,3.2596606066666625 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/27,5.178915001912504 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/04,3.0081113649999973 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/28,4.9600999999999935 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/07,5.3170076243809445 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/21,2.996571971666662 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/06,2.823296268269229 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/29,2.709347980769231 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/07,5.3170076243809445 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/21,2.996571971666662 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/06,2.823296268269229 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/29,2.709347980769231 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/08,4.4674069937391625 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/23,7.894715141666661 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/07,3.339680254807692 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/08,4.4674069937391625 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/23,7.894715141666661 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/07,3.339680254807692 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/12/10,3.575734100262502 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/23,3.52529756153846 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/12/10,3.575734100262502 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/23,3.52529756153846 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/12/26,24.44116666666665 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/12/26,24.44116666666665 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/03/08,4.464225 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/02/20,20.93988333788586 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/03/08,4.464225 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/02/20,20.93988333788586 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/08,13.377691666381672 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/09,14.241749999952493 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/08,13.377691666381672 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/09,14.241749999952493 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/24,10.710266666666652 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/05/11,7.585503413417501 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/24,10.710266666666652 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/05/11,7.585503413417501 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/06/11,7.756944165521671 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/06/11,7.756944165521671 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/07/05,2.3833295000000008 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/07/05,2.3833295000000008 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/07,16.577912511547503 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/06,3.852400000000007 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/07/30,2.9317181682692297 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/07,16.577912511547503 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/06,3.852400000000007 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/07/30,2.9317181682692297 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/08,2.4551979164391686 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/30,3.9333818099999935 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/23,5.367814165696785 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/08,2.4551979164391686 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/30,3.9333818099999935 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/23,5.367814165696785 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/01,5.569898020769225 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/24,2.7694369696666654 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/02,3.1170272242673964 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/23,2.424892125000001 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/01,5.569898020769225 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/24,2.7694369696666654 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/02,3.1170272242673964 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/23,2.424892125000001 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/11/11,4.037109981999997 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/11/10,2.679977200000002 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/25,4.257316056666664 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/12/04,19.89678123273335 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/01/06,21.88613333333335 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/02/06,9.95794166645168 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/05/05,4.0630250000949975 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/04/28,3.410675000000002 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/05/29,5.5534985275644 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/05/30,3.866187123405828 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/07/09,3.2239810967391644 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/06/30,20.371537499952492 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/07/08,13.723599999784987 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/06/22,5.129950000842496 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/08/10,3.032826532536665 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/08/09,6.803800002419985 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/09/03,4.40841666666666 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/08/25,6.339491669299151 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/10/05,4.288725000144998 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/12/08,21.83489999973752 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/11/22,2.256552250000002 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/01/01,24.44116666666665 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/02/10,11.435050000385 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/01/25,13.0016249997375 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/02/26,21.88613333333335 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/05/09,3.1599583332483387 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/04/23,8.008620882585836 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/05/08,3.539700006554995 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/04/22,11.913946544101677 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/06/01,6.896864579105848 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/06/09,6.135357587131661 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/07/03,7.975977778015274 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/06/26,6.269337886739171 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/08/04,11.327433751472514 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/08/05,2.621205923076924 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/07/27,3.0426074807692287 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/09/05,4.996334404102558 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/08/29,2.749428802439167 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/09/06,6.246700000624997 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/09/21,8.324234090072503 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/10/08,3.3494131999999945 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/09/29,4.783225000072507 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/11/09,3.173398493333331 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/10/24,3.3678873399999985 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/12/03,15.736264584133345 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/12/11,3.243375865384611 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/11/25,5.052428192307685 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/02/05,22.49097500000001 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/02,4.492216682869164 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/04/25,8.817003795880844 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/10,3.4420500000000014 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/03,14.666025062100012 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/27,4.6819333367283305 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/06/04,3.6024280333333367 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/26,4.521513040769222 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/06/28,3.981603796666657 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/07/06,3.3631051971153845 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/08/06,14.863983347180833 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/08/07,12.98324999999999 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/08/31,3.415390414102562 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/08/22,7.567554166199169 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/09/08,8.685827661540001 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/10/09,4.82133337771428 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/09/23,11.101129177881674 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/10/10,9.454525000217496 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/10/01,2.935175000000007 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/11/10,10.160666562380946 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/11/03,7.546974999807508 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/10/25,16.155962520794997 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/12/29,21.75304166666668 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/01/22,22.30574166666668 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/02/06,21.848400000000016 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/04/04,10.877224999570007 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/05/06,3.0492827499999957 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/06/06,12.736454182766662 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/06/07,2.8312595200000032 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/06/23,7.70802501847249 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/08/02,3.5522682051449936 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/07/24,15.132831666189151 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/08/10,10.003625000000005 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/07/25,4.903019230769231 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/10,9.233433351638334 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/03,2.8769807425366314 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/08/25,10.352470450000006 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/11,2.2603906000000045 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/02,2.9430000000000023 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/08/26,4.018950000072494 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/26,8.798041671314174 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/06,6.277117439109169 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/10/28,6.913893165072491 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/09,3.152253072307692 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/05,3.420158332307689 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/10/29,2.97667573076923 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/12/07,6.604262504197496 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/24,3.6973453736263737 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/21,6.33249166695165 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/12/23,2.275213224999997 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/02/01,22.26459166666668 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/01/25,22.304175000000008 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/01/24,21.75304166666668 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/02/26,22.24565000000001 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/03/30,9.354041666451677 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/03/29,3.841550000000004 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/09,4.049762886666661 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/09,2.9190481750000017 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/08,7.115918944766659 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/01,3.026046354999997 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/04/30,3.6976526681241615 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/26,6.394000000200006 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/25,3.136125000000005 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/24,3.969685054999992 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/07/04,9.723624997814992 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/06/29,3.939195454999992 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/07/11,5.925526143400833 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/07/03,24.59660833456334 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/06/26,2.4975750000474983 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/06/25,12.948814592538342 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/09/10,7.418636360192503 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/08/24,8.268699993480006 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/08/28,3.510735009999993 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/10/09,7.63349999256001 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/10/08,2.8451150849999998 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/09/30,19.62108333487834 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/09/29,2.999050713380834 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/09/21,3.2979345649999967 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/10/31,6.660749992125009 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/11/09,3.638680573076922 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/11/08,2.1932452499999964 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/12/10,4.926392737435895 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/12/02,8.340600001352485 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/11/24,4.272787947115386 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/12/27,22.13946666666668 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/02/04,21.970933333333345 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/01/28,22.60213333333334 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/03/09,21.75304166666668 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/02/21,10.304083332808348 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/02/20,12.903635416666678 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/04/10,11.454108333238327 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/04/09,14.318808333285828 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/09,9.174379169761677 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/11,7.008575000167484 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/31,5.672584090357503 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/26,3.5703824248116622 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/06/05,5.630575000552502 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/06/04,6.89398856436084 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/28,7.867825000480004 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/27,10.333218187163338 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/06/22,8.679112876739165 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/07,18.36934166602165 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/06,4.310152279999995 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/06/21,2.097059100000001 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/08/05,2.8147545401449974 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/31,2.498474242899168 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/31,5.073650000047492 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/30,6.343800000144992 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/23,4.0815124507692255 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/22,13.360575000072489 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/01,3.250626521739162 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/08,3.446350000000007 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/01,3.3663431999999958 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/08/31,6.814876516666669 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/08/23,3.711909069999996 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/28,7.840395833368352 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/10/11,12.215508333333323 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/10/03,5.326439599999991 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/10/02,3.9791000000000047 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/25,3.258185419999995 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/11/11,4.405747754807692 +Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/11/03,4.863381096666663 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/05/05,8.400516664446666 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/05/05,8.400516664446666 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/06/06,14.321208349698336 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/05/29,13.383791667214162 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/06/06,14.321208349698336 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/05/29,13.383791667214162 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/06/22,9.098520846965837 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/06/22,9.098520846965837 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/09,15.384099999999988 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/01,11.236741701166668 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/09,15.384099999999988 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/01,11.236741701166668 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/09/10,12.160274998162503 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/25,2.2727750121975 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/09/10,12.160274998162503 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/25,2.2727750121975 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/09/26,2.821774251666665 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/10/04,13.817612500095 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/09/26,2.821774251666665 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/10/04,13.817612500095 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/11/05,18.68352500040001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/11/05,18.68352500040001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/11/29,3.2281615641025634 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/11/29,3.2281615641025634 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/01/24,21.77555833328585 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/01/24,21.77555833328585 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/05,8.104375012444997 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/05,8.104375012444997 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/07,8.529724995950007 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/21,7.638298498005833 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/29,17.38734166723666 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/07,8.529724995950007 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/21,7.638298498005833 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/29,17.38734166723666 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/23,15.250475050600013 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/31,7.001781928325241 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/23,15.250475050600013 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/31,7.001781928325241 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/06/24,7.067911366400002 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/06/24,7.067911366400002 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/11,6.310272730625001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/07/26,6.353074995110006 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/03,2.7182437932692305 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/11,6.310272730625001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/07/26,6.353074995110006 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/03,2.7182437932692305 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/27,6.592614773333335 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/09/04,8.421777270119996 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/27,6.592614773333335 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/09/04,8.421777270119996 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/09/28,8.175687500070001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/10/06,2.1582976249999986 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/09/28,8.175687500070001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/10/06,2.1582976249999986 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/11/07,2.3804041249999983 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/11/07,2.3804041249999983 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/12/09,3.0977500000000022 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/12/09,3.0977500000000022 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/12/25,21.88613333333335 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/12/25,21.88613333333335 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/02/03,12.266124999324994 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/02/03,12.266124999324994 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/02/27,3.019375000000005 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/02/27,3.019375000000005 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/04/24,13.316400029900016 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/04/24,13.316400029900016 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/06/11,5.016000602983334 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/06/11,5.016000602983334 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/07/05,2.5509339932692323 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/07/05,2.5509339932692323 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/07/29,10.701125002444972 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/08/06,3.5845750000000067 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/07/29,10.701125002444972 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/08/06,3.5845750000000067 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/08/30,3.781275000072495 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/08/30,3.781275000072495 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/10/01,3.605903796666659 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/09/23,7.491150000334986 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/10/01,3.605903796666659 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/09/23,7.491150000334986 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/11/11,3.9549598750433392 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/11/10,4.480625 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/10/25,3.138273149999999 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/12/04,3.03572916663917 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/12/28,21.794191666666684 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/01/29,12.817266666619169 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/05/05,5.0861091023 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/05/29,6.5983742469066655 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/06/30,15.439162499952497 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/07/08,7.439950000429979 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/06/22,7.2465666690391535 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/08/09,6.670300000047506 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/08/25,3.2813959299999955 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/12/07,22.47810000000001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/12/23,9.687033333333346 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/02/01,21.794191666666684 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/04/23,8.252258354180846 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/05/08,4.290175000192498 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/04/22,3.484528540384612 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/06/10,16.944400000569996 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/06/09,2.8416954049999994 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/07/03,9.956237509152505 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/06/26,16.758102274569982 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/08/04,7.038725003990004 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/07/28,13.17118958589833 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/07/27,4.507721213790827 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/09/05,3.941754579999993 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/08/29,7.339250002925 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/09/21,4.336968943333327 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/09/29,13.238449999999986 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/10/23,5.205985832098337 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/02/21,22.451158333333343 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/05/02,13.510475027600004 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/04/25,6.967720460072502 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/04/24,10.958625000000008 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/05/27,3.8187295506274928 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/05/26,5.820473868917486 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/08/06,7.03083560673917 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/07/30,3.4932688121794864 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/08/31,9.545225001155 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/08/30,2.638915415000002 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/10/09,4.23178789666666 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/10/01,2.910775000000005 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/11/10,5.092468948405829 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/10/25,7.210956665334167 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/03/02,22.47810000000001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/04/03,8.81783335020584 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/05/29,5.3681026748724925 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/08/02,3.9320136503624936 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/09/10,9.420199993915002 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/08/25,16.194716666951663 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/09/26,12.772008333518311 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/11/06,14.382212892580842 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/10/28,7.155208333103342 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/11/29,8.024008331108346 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/11/24,2.5336816000000018 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/11/21,4.483975000499999 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/12/24,23.085375 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/01/08,21.867666666666683 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/12/23,11.087425 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/01/25,22.348225000000006 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/04/06,5.0979191664741705 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/04/06,4.954725019999993 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/03/29,4.940052270000001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/05/08,2.985098408333333 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/04/30,4.306875000145 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/04/22,3.1091817500000047 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/05/31,9.793183333953328 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/05/24,4.290399999999996 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/07/04,3.387560622246665 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/07/03,4.591900000407501 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/06/25,3.891079644999993 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/08/07,3.99796819014499 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/09/10,6.7670219677041725 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/08/24,3.650566650144994 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/08/28,2.6850022150000017 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/09/21,5.127750000889998 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/10/26,8.27978407012 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/11/08,2.170306574999997 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/10/23,13.09149166706666 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/12/10,2.4269749500000013 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/11/24,4.512272754807693 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/01/11,21.77565833333335 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/02/04,22.304175000000008 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/04/09,2.672088640000001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/09,14.402757499044982 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/11,4.081376516666662 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/31,3.1969303037683328 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/26,3.091843180144998 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/06/04,5.672475009554998 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/27,12.779150004672491 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/06/27,3.873401536956661 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/06/22,3.1724431809425 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/07/06,8.705752270120003 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/08/05,4.172766667174164 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/07/30,10.07987500709249 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/07/22,5.324558340115825 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/09/06,7.335050000892503 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/09/01,8.985075000890003 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/08/31,4.216534089999993 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/08/23,2.220202200000001 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/10/03,16.93603336792835 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/09/28,11.85660208474585 +Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/10/02,3.3340565749999977 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/06/06,15.686325029297498 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/05/29,23.360968941569173 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/06/06,15.686325029297498 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/05/29,23.360968941569173 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/07/08,8.257899999742495 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/06/22,12.257704168966676 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/07/08,8.257899999742495 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/06/22,12.257704168966676 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/09,11.570165146666666 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/07/24,5.6585878834058345 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/01,3.847850000000004 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/09,11.570165146666666 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/07/24,5.6585878834058345 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/01,3.847850000000004 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/25,22.50537291666667 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/25,22.50537291666667 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/09/26,11.362624991875 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/10/04,5.5604348554166725 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/09/26,11.362624991875 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/10/04,5.5604348554166725 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/05,10.707635416594174 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/05,10.707635416594174 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/21,6.3224330317425 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/29,4.463718946666663 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/21,6.3224330317425 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/29,4.463718946666663 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/05/23,13.354520001565003 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/05/31,7.071341666666678 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/05/23,13.354520001565003 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/05/31,7.071341666666678 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/06/24,5.911743328215835 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/07/02,9.719989585226685 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/06/24,5.911743328215835 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/07/02,9.719989585226685 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/11,14.311899999909992 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/07/26,20.01571250231501 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/03,6.806506819999994 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/11,14.311899999909992 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/07/26,20.01571250231501 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/03,6.806506819999994 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/27,18.205877777967768 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/09/04,24.6262583337133 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/27,18.205877777967768 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/09/04,24.6262583337133 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/09/28,14.762666697014158 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/10/06,8.055711745464993 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/09/28,14.762666697014158 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/10/06,8.055711745464993 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/11/07,11.662317423333311 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/11/07,11.662317423333311 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/01/02,22.348225000000006 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/12/25,17.19664583578334 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/01/02,22.348225000000006 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/12/25,17.19664583578334 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/02/03,22.451158333333343 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/02/03,22.451158333333343 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/02/27,13.495725002917505 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/02/27,13.495725002917505 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/03/23,19.018137502162503 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/03/23,19.018137502162503 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/04/24,6.311103757374996 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/04/24,6.311103757374996 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/06/03,2.4763020750000044 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/06/03,2.4763020750000044 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/06/27,7.479966655506673 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/07/05,14.978525057500022 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/06/27,7.479966655506673 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/07/05,14.978525057500022 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/07/29,11.639441666666666 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/08/06,2.369675000000001 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/07/29,11.639441666666666 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/08/06,2.369675000000001 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/08/30,21.451493333333342 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/08/30,21.451493333333342 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/10/01,21.64720153242529 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/09/23,7.049462281999991 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/10/01,21.64720153242529 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/09/23,7.049462281999991 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/11/10,18.664708335585825 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/10/25,3.5764500000000083 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/12/04,7.199284465665835 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/01/05,11.25039166725167 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/02/06,22.76205 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/05/05,11.603468753412498 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/05/29,5.926192423690835 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/06/30,7.216225000095001 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/07/08,14.652066666714134 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/08/09,18.34569166666669 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/08/25,9.756858342358337 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/03/05,21.77565833333335 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/05/08,11.661970836450829 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/04/22,14.761706250190008 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/06/01,9.769716669446655 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/06/09,18.342233340233324 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/07/03,8.689559846714175 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/08/04,5.631041670009174 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/07/27,12.080700000094994 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/09/05,27.531892500000016 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/09/21,15.264716666714165 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/09/29,9.199848107500834 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/11/08,13.43660000018999 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/03/07,15.682712500000012 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/02/20,21.750616666666684 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/05/02,9.757084129470002 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/05/10,21.68097499926252 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/05/26,19.522041667094165 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/07/05,12.882916671324171 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/08/06,21.330520833428317 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/08/22,7.531249989100008 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/08/30,17.805958333333322 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/10/09,10.726556667404177 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/10/01,14.987150002185016 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/11/10,20.95017500048501 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/10/25,15.314000002540013 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/04/03,9.061030447111664 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/06/06,23.56930833333333 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/07/24,14.85300416666667 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/09/10,10.3174562672675 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/08/25,16.665205833285853 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/09/26,14.829490043979996 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/10/28,14.228583334143323 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/11/05,11.99683333285833 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/11/24,21.628641671456684 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/11/21,24.942575002632477 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/02/09,21.75304166666668 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/01/24,21.867666666666683 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/03/29,17.07552575934668 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/05/08,18.813975000189988 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/04/30,10.334775005530016 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/04/22,11.330931254607504 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/05/31,14.70684583256834 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/05/24,6.310396209164165 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/07/11,9.556445450000014 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/07/03,17.21185456602583 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/06/25,13.627358335633316 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/08/07,10.96171458471084 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/09/10,5.709557202562504 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/08/28,7.596172888739156 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/09/29,3.689450000000007 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/09/21,21.96073749961753 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/11/08,19.89341742577583 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/12/10,11.765675004599997 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/11/24,4.311847754807694 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/04/09,12.432006250000011 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/04/01,15.84770833516082 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/03/24,7.644600000985005 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/05/11,16.59046364063333 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/04/25,2.9225750000000037 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/05/31,17.1584375 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/05/26,4.915136360144992 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/06/04,16.576700013135017 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/05/27,12.423533333570814 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/06/22,6.970504547026671 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/07/06,12.167527655728332 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/08/05,6.66899999452001 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/07/30,25.067391675866677 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/07/22,4.62807801207083 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/09/06,3.7679878736958297 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/09/01,2.672402875246666 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/08/31,6.338907721999991 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/08/23,10.57116742338084 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/10/03,15.94199167586668 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/11/11,2.983175000000007 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/11/03,14.233762119061655 +Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/11/27,17.043867425728322 From 16cdcfe0da99b8bf897e408dbd11c1c675b798ba Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 00:22:21 -0400 Subject: [PATCH 03/13] Add chla estimates to docs/Examples/assets --- docs/{ => Examples}/assets/chla_subset.csv | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/{ => Examples}/assets/chla_subset.csv (100%) diff --git a/docs/assets/chla_subset.csv b/docs/Examples/assets/chla_subset.csv similarity index 100% rename from docs/assets/chla_subset.csv rename to docs/Examples/assets/chla_subset.csv From 450db43843cc2d0b45c72c7aea789f97d32e784b Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 00:23:21 -0400 Subject: [PATCH 04/13] Replace gaul_data path by GitHub raw data URL --- docs/Examples/05_water_indices_with_spyndex.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Examples/05_water_indices_with_spyndex.ipynb b/docs/Examples/05_water_indices_with_spyndex.ipynb index ef8755d..56a8d5a 100644 --- a/docs/Examples/05_water_indices_with_spyndex.ipynb +++ b/docs/Examples/05_water_indices_with_spyndex.ipynb @@ -97,7 +97,7 @@ } ], "source": [ - "data = pd.read_csv(\"assets/gaul_data.csv\")" + "data = pd.read_csv(\"https://raw.githubusercontent.com/dkedar7/fast_dash/docs/docs/Examples/assets/gaul_data.csv\")" ] }, { From b6c07224a6290bcc5464e13ec1b224fa8d0655b4 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 00:23:46 -0400 Subject: [PATCH 05/13] Reorder choropleth map example to 6 --- ...ropleth_maps.ipynb => 06_choropleth_maps.ipynb} | 14 ++++++++++++++ 1 file changed, 14 insertions(+) rename docs/Examples/{07_choropleth_maps.ipynb => 06_choropleth_maps.ipynb} (92%) diff --git a/docs/Examples/07_choropleth_maps.ipynb b/docs/Examples/06_choropleth_maps.ipynb similarity index 92% rename from docs/Examples/07_choropleth_maps.ipynb rename to docs/Examples/06_choropleth_maps.ipynb index 086317f..123d2f6 100644 --- a/docs/Examples/07_choropleth_maps.ipynb +++ b/docs/Examples/06_choropleth_maps.ipynb @@ -1,5 +1,19 @@ { "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "[![Open in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/dkedar7/fast_dash/blob/docs/docs/Examples/06_choropleth_maps.ipynb)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This notebook is optimized to run in Google Colab." + ] + }, { "cell_type": "code", "execution_count": 2, From b81791880bb1a94d08f2001969bf5993fdc7db3f Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 01:04:34 -0400 Subject: [PATCH 06/13] Replace by a smaller subset of chlorophyll data --- docs/Examples/assets/chla_subset.csv | 38120 ------------------------- 1 file changed, 38120 deletions(-) diff --git a/docs/Examples/assets/chla_subset.csv b/docs/Examples/assets/chla_subset.csv index 40b3fdd..4dcd791 100644 --- a/docs/Examples/assets/chla_subset.csv +++ b/docs/Examples/assets/chla_subset.csv @@ -7176,38123 +7176,3 @@ Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/12/08,8.1168333370 Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/12/08,5.247391792380187 Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/11/30,8.592525674013652 Lake Montauk,9494728,-71.9227830511875,41.06045410925941,2023/11/30,8.562902679911094 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/08,23.241562501877528 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/07,16.025166697089183 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/07,18.40036670973917 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2014/12/31,6.827380798276074 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/31,9.79657293917416 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/31,9.797697933999162 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/02/01,12.73119999985751 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/23,12.237015384615384 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/23,10.242635430426663 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/31,9.79657293917416 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/31,9.797697933999162 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/02/01,12.73119999985751 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/23,12.237015384615384 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/01/23,10.242635430426663 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/05,6.361048372833334 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/05,6.786898370335833 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/03/29,6.212512962307695 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/05,6.361048372833334 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/05,6.786898370335833 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/03/29,6.212512962307695 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/07,6.117824999855012 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/07,6.942624999855014 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/30,8.548234217174171 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/08,17.562091676531644 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/29,12.488089780238347 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/29,13.285935613571684 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/22,8.2861550012925 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/07,6.117824999855012 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/07,6.942624999855014 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/30,8.548234217174171 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/08,17.562091676531644 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/29,12.488089780238347 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/29,13.285935613571684 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/04/22,8.2861550012925 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/23,15.266820836540854 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/23,15.478420837173353 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/24,8.728423361115839 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/23,15.266820836540854 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/23,15.478420837173353 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/05/24,8.728423361115839 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/07/03,17.34248334442834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/24,7.750708331853344 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/24,7.618683331453344 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/07/11,12.68805333535832 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/25,11.623326531004157 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/07/03,17.34248334442834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/24,7.750708331853344 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/24,7.618683331453344 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/07/11,12.68805333535832 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/06/25,11.623326531004157 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/04,8.773489172656655 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/03,12.4334721664575 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/03,12.608284667027494 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/04,8.773489172656655 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/03,12.4334721664575 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/03,12.608284667027494 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/05,10.83343333887083 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/27,17.787533337265867 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/27,17.6607666661517 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/04,19.594762498860028 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/04,18.91359583238336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/28,18.974316666666667 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/05,10.83343333887083 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/27,17.787533337265867 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/27,17.6607666661517 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/04,19.594762498860028 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/04,18.91359583238336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/08/28,18.974316666666667 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/07,14.080140913333311 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/21,19.07229999995249 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/06,24.415970416666664 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/06,24.330246166666665 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/29,10.829593350915822 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/07,14.080140913333311 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/21,19.07229999995249 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/06,24.415970416666664 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/06,24.330246166666665 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/09/29,10.829593350915822 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/08,10.793995836350836 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/30,9.975489583100831 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/30,9.84473958323833 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/23,14.326887504984988 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/31,10.847778391208331 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/22,13.256233335740855 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/22,5.348875000745014 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/08,10.793995836350836 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/30,9.975489583100831 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/30,9.84473958323833 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/23,14.326887504984988 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/31,10.847778391208331 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/22,13.256233335740855 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/10/22,5.348875000745014 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/10,9.694074174424172 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/24,11.5835187524025 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/09,10.32129887007334 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/09,5.296008757883328 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/23,20.59224168343164 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/23,20.40517502150747 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/10,9.694074174424172 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/24,11.5835187524025 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/09,10.32129887007334 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/12/09,5.296008757883328 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/23,20.59224168343164 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2015/11/23,20.40517502150747 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/11,12.513305618875274 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/02,11.572887502955002 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/02,12.680304926763329 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/03,10.92946308461538 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/11,12.513305618875274 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/02,11.572887502955002 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/02,12.680304926763329 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/01/03,10.92946308461538 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/11,10.979717424425823 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/11,10.271317424568329 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/11,10.979717424425823 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/11,10.271317424568329 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/06,6.311949994735008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/06,6.39832499495001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/28,10.864783380945834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/27,14.100986740423336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/27,14.118461741278333 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/20,9.52977701427917 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/06,6.311949994735008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/06,6.39832499495001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/28,10.864783380945834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/27,14.100986740423336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/27,14.118461741278333 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/02/20,9.52977701427917 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/22,12.41048839021584 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/22,14.449002963544167 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/04/08,7.019741822307693 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/30,9.235308333475828 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/30,8.27250000004749 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/23,10.780513248643336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/22,12.41048839021584 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/22,14.449002963544167 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/04/08,7.019741822307693 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/30,9.235308333475828 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/30,8.27250000004749 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/03/23,10.780513248643336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/09,4.711450000095009 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/09,4.725500000202509 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/10,9.918908331375842 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/04/24,4.037281979999996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/09,4.711450000095009 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/09,4.725500000202509 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/10,9.918908331375842 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/04/24,4.037281979999996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/25,3.266500000095008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/25,3.265000000095007 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/26,5.6760992692175 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/25,3.266500000095008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/25,3.265000000095007 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/05/26,5.6760992692175 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/06/26,6.509524995260012 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/06/26,7.089887497075012 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/07/04,15.458075000199996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/07/04,12.522750000400013 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/06/26,6.509524995260012 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/06/26,7.089887497075012 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/07/04,15.458075000199996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/07/04,12.522750000400013 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/06,9.150536707039162 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/05,11.352893415904996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/05,13.144414810985834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/06,9.150536707039162 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/05,11.352893415904996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/05,13.144414810985834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/22,16.701100022985017 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/30,30.920845838123327 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/22,16.701100022985017 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/08/30,30.920845838123327 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/23,6.613575000384986 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/22,24.998566673566717 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/22,10.734786369999988 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/23,6.613575000384986 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/22,24.998566673566717 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/09/22,10.734786369999988 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/10,21.808370845023315 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/01,11.9189062531275 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/01,11.6209437537075 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/25,10.067888660162506 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/02,13.717062157942491 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/24,16.541143949109152 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/24,11.428036369999989 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/10,21.808370845023315 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/01,11.9189062531275 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/01,11.6209437537075 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/25,10.067888660162506 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/11/02,13.717062157942491 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/24,16.541143949109152 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/10/24,11.428036369999989 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/03,5.235149998732501 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/03,6.695168330870835 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/11,9.054824997724984 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/04,8.05186646507692 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/03,5.235149998732501 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/03,6.695168330870835 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/11,9.054824997724984 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2016/12/04,8.05186646507692 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/29,6.340749995150008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/06,10.42876250151999 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/28,16.877150000427488 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/28,16.323383333808327 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/29,6.340749995150008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/06,10.42876250151999 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/28,16.877150000427488 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/01/28,16.323383333808327 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/09,5.425200000259996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/09,5.696325001865001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/02,9.316350012637509 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/21,6.725774993015008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/21,6.832149993415007 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/09,5.425200000259996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/09,5.696325001865001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/03/02,9.316350012637509 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/21,6.725774993015008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/02/21,6.832149993415007 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/10,10.022200012392515 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/10,10.784875020132509 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/11,9.295708333225846 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/02,8.274274999995004 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/02,20.844208342723316 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/10,10.022200012392515 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/10,10.784875020132509 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/11,9.295708333225846 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/02,8.274274999995004 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/04/02,20.844208342723316 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/05/04,11.951820834703335 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/05/04,11.951820834703335 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/22,7.548502896333332 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/21,15.52785416972168 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/21,15.992804170936688 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/22,7.548502896333332 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/21,15.52785416972168 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/06/21,15.992804170936688 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/09,8.226866678333336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/07/31,6.963190223530233 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/07/31,6.922883972190236 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/01,12.880502083805824 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/09,8.226866678333336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/07/31,6.963190223530233 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/07/31,6.922883972190236 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/01,12.880502083805824 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/10,8.247246213380835 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/01,15.383150000100011 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/01,14.947966666766678 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/25,15.017059850000008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/09,21.97768334023333 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/09,10.712591666666656 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/24,23.96410834262836 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/24,24.569875009200015 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/10,8.247246213380835 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/01,15.383150000100011 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/01,14.947966666766678 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/25,15.017059850000008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/09,21.97768334023333 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/09,10.712591666666656 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/24,23.96410834262836 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/08/24,24.569875009200015 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/03,12.23097257799998 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/03,12.597859093333314 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/26,6.299174997100007 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/04,34.586412516289954 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/25,14.821908343700832 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/25,14.894908343558336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/03,12.23097257799998 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/03,12.597859093333314 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/26,6.299174997100007 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/04,34.586412516289954 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/25,14.821908343700832 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/09/25,14.894908343558336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/04,7.788149997197513 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/04,7.7972374993475135 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/28,13.137541668146664 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/27,25.437478338123352 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/27,16.064177279999978 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/04,7.788149997197513 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/04,7.7972374993475135 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/28,13.137541668146664 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/27,25.437478338123352 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/10/27,16.064177279999978 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/12/07,14.01588741081671 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/28,14.740909090047472 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/28,15.9556555708167 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2017/11/21,8.668009645076921 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/02/08,8.9499636407475 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/02/08,8.200862501092502 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/01/31,11.16914341128204 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/01/31,11.444130699743576 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/01/24,17.058175000332483 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/02/24,12.795766667954148 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/02/24,13.01589791790665 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/05,14.661325011417494 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/05,13.022445492410831 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/05/08,8.924688653062505 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/22,10.01349999996751 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/21,7.239681088375835 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/04/21,5.614782713888332 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/06/09,15.289833338028329 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/05/24,9.430825005240006 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/05/23,9.785950000072516 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/05/23,9.059000000072515 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/11,12.989534167557494 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/02,13.748902087630846 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/02,13.748902087630842 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/06/25,6.584853293019994 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/10,7.994916666521678 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/10,8.005991666521677 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/08/03,10.668975002880003 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/08/03,19.565837500637503 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/07/27,16.25235000067001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/04,16.176808337563347 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/04,16.00968333756335 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/05,3.460263461538458 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/08/27,10.565555026332492 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/08/27,11.178088364123322 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/10/06,23.63325 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/10/06,23.893808333333325 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/29,20.32736136563332 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/09/21,11.396175001604991 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/07,8.173020000552503 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/07,8.364245002735 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/08,9.648448107080844 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/23,10.621494183976672 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/10,14.759612410816707 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/01,18.40607500301248 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/01,16.915641674326647 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/11/24,11.817326542658328 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/10,7.875180450881657 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/10,7.574811696016659 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/25,10.06033126519251 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/25,9.83180001298751 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/11,7.829550013247513 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2018/12/26,13.429262410816715 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/26,9.03188750046252 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/26,9.134320833723352 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/02/03,14.332258334190849 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/02/03,13.422333333590844 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/01/27,13.114059583260833 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/03/08,9.009465043100008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/03/07,14.323025002917491 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/03/07,12.52502291772666 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/03/24,5.883508328478342 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/04/01,12.475095469807505 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/11,11.79697339645084 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/02,6.345420828145849 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/04/25,11.49597500020001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/04/24,10.660689581385848 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/04/24,8.196539580513345 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/03,9.717319166736669 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/03,9.958535833403332 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/27,11.71803333357084 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/04,4.989615546551665 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/26,11.2150999999 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/05/26,12.329424998089994 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/28,15.837625021742502 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/27,6.954774995165005 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/06/27,6.900774995165005 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/07/30,11.572925000362495 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/07/29,10.194382074890836 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/07/29,11.783740426901648 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/07/22,22.99856666439417 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/07,18.400906289882517 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/07,16.570472945951675 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/31,5.258670832695839 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/22,11.372350000295006 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/22,13.48974166686667 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/08,11.99590228999999 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/30,19.42420000714252 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/08/30,17.74571667596169 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/10/02,18.659440153966656 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/23,12.064310471701669 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/23,11.680468796662506 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/09/24,5.161193179999994 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/10,6.488274994090008 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/03,9.804183760010009 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/11,11.891041666809178 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/02,22.941056250190023 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/02,23.009056250190024 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/10/26,23.9204278011578 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/12/05,7.111281253065003 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/26,7.386072917619167 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/11/26,8.048652086303337 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/12/28,9.667049588400836 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2019/12/28,9.766960004672503 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/01/22,9.68158750085751 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/01/30,18.95225000296498 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/01,9.239525794064171 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/01,9.643612165271676 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/02/23,12.677968754127503 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/09,11.03831319662944 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/09,17.475919454119424 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/02,9.458646690366674 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/02/22,15.583768947189151 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/02/22,20.28034166972665 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/04/11,9.775615044300013 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/04/02,10.734131249415013 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/04/02,10.652956249605014 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/03/26,8.81157670674 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/05/04,10.905390093167505 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/05/04,11.507790100042508 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/05/05,14.449990929232492 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/21,9.359035240524172 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/21,13.311777661011677 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/07/08,8.497173512802496 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/29,23.322425000677505 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/29,5.707879169161656 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/06/22,10.047926521354167 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/08/01,18.0607848523 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/08/09,14.715031251279996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/08/24,21.95115000953748 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/08/24,21.95267500953748 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/09/01,11.611949998194998 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/09/01,8.381174999755 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/11,7.81410208356335 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/11,7.475702081240849 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/04,27.888655000000025 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/03,14.20641819004748 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/10/03,16.526245440047468 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/09/26,4.403975767454996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/11/05,8.18840833796834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/11/21,8.52884586336084 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/06,14.885259092869994 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/06,14.976909092965 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/11/29,11.652867823076908 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/08,11.798442426230828 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/23,9.43090833975834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/07,7.154249996410005 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/07,7.016049995395005 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/22,10.638332721999996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2020/12/22,15.690243180047467 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/24,9.79151875147249 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/08,9.603086531027763 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/08,8.575667782030271 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/23,9.069875003039996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/01/23,9.286875002902496 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/25,9.466881263357507 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/03/05,12.903489583475825 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/24,15.080542426060816 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/02/24,15.282817426060817 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/05,10.81472916602418 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/05,10.908629166024182 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/03/29,7.219375019837503 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/06,11.236400005502494 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/05/07,7.406870262094171 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/05/07,7.406870262094171 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/30,6.525947913764169 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/21,10.581402082265846 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/04/21,10.556895832170849 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/06/08,5.990445821263341 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/05/23,17.394550002157526 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/05/23,20.414433335688383 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/06/09,11.567228414080832 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/06/24,11.620549999177513 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/06/24,11.493649999430009 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/07/26,6.187595826378347 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/07/27,9.481478361278326 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/08/27,11.445449168556658 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/08/27,11.417270002654996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/04,17.468722916589158 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/04,14.14611458561832 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/07,11.661796963333328 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/28,24.73964166810168 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/28,11.307158337675844 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/09/29,16.555264583533322 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/08,9.611522287346942 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/23,11.22321462635333 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/07,16.120075757094142 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/07,18.72537500301248 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/31,15.929565280647765 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/22,5.379083334968329 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/10/22,10.120159091856658 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/12/01,6.008199994490009 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/24,11.31265902997777 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/12/02,13.432474999970005 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/23,21.12880833582332 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/11/23,24.63584166967913 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/11,6.572848359418334 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/12/26,10.033950007039998 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/11,18.2775958362508 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/10,7.243449998680002 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/10,7.111465148380834 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2021/12/26,12.775486280585303 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/27,10.179549586088344 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/11,17.516636667284157 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/11,17.15405333395082 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/27,12.301112502452495 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/26,16.193941671789148 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/01/26,16.789941674041653 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/03/07,7.1325700200175 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/03/07,6.983946267255004 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/28,9.801663644435004 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/19,10.001806677629174 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/19,9.658481677149174 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/03/08,17.149005217576672 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/28,16.165045453760825 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/27,20.301878334045817 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/27,11.65922708406083 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/20,14.196309090474982 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/02/19,24.27742499999998 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/01,7.676470834055848 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/03/23,5.98574999384501 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/09,22.17366250056002 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/08,9.844425001147496 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/08,9.041020005770006 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/05/10,12.654299998795 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/05/10,13.856099999129995 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/24,21.136885417431667 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/04/24,16.196850000764993 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/06/07,8.463012512889172 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/06/07,8.341130322967503 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/06/04,7.452900000217496 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/11,28.539149592533374 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/11,27.89934126150001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/06,20.23572500460001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/06/28,13.821518756214989 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/09,18.05923333358084 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/23,9.14042500000001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/07,12.8732750068375 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/06,10.347153146382505 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/06,11.839696683948336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/30,20.62955837952335 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/29,8.372374998999994 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/07/22,11.834624166734166 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/26,17.947069027872786 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/09/08,8.13296061166666 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/08/31,28.020740285485232 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/09/29,23.93335075709917 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/10/09,13.042064586393328 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/10/09,18.015150759109147 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/09/23,20.13031002597502 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/09/23,18.87231003057501 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/02,9.14398959123583 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/10,11.452312502129994 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/10,15.453425757094156 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/03,11.580226430512802 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/02,14.467879543380809 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/02,18.25653712014248 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/10/25,11.14652500043751 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/10/25,10.611720833865846 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/24,10.749166669089178 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/24,9.33653333358334 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/05,8.735699996624998 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/04,15.45200909268 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/04,10.296874999909996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/26,12.181450000427494 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/11/26,12.729175000379996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/28,11.722970834768336 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2022/12/28,12.210929168101664 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/05,8.978197916886696 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/05,8.337058332963359 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/07,11.026712413211731 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/22,8.294641666069182 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/02/22,7.703595833520851 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/10,8.77161249978 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/10,8.789987499577501 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/04/02,8.42227086030833 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/04/03,10.72739000677 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/04/03,17.788859203789162 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/27,11.03940000134999 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/26,20.06055833371331 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/03/26,20.06410833371331 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/11,13.815608334483338 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/06,16.557325016527496 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/07,9.85039999981 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/07,10.430906253345016 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/02,9.518521555454152 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/07,8.970724999050026 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/06,7.406199999985002 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/06,9.309124999969995 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/30,9.656900010222492 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/29,10.290058338353342 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/29,10.427108339613344 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/05/22,9.547257501562523 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/29,13.385080416784165 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/08,21.24715000125003 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/08,19.96103750103252 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/01,11.308558348148324 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/30,14.168343749020009 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/06/30,12.62761874915 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/26,14.079062930326677 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/26,14.069637931709176 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/10,15.594965013590013 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/09,9.56209999965251 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/09,10.703149999472508 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/02,13.802583333390828 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/01,10.321177273855014 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/08/01,10.885356440521685 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/07/25,8.705683342555824 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/11,7.231368196295829 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/10,17.591025000200013 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/10,16.918700000200012 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/03,12.017006259414996 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/02,21.45374169886668 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/02,17.56275000218001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/10,3.599396946739166 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/10,10.966395842428334 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/05,7.139165136666662 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/05,16.567529033280277 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/04,18.65635001143249 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/04,13.735625006932487 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/09/27,5.948875000192496 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/06,9.709151511739158 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/06,15.022811558741653 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/06,8.396212272000003 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/05,21.33658750196001 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/05,21.219908336003343 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/28,21.19034166977416 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/10/28,12.807508334568327 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/12/08,8.188354371585959 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/12/07,15.486616669156644 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/12/07,10.054060159816087 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/30,13.15505453990498 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/29,5.348161359999991 -Georgica Pond,9495486,-72.22912830314404,40.93926749894562,2023/11/29,3.426626650769228 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2014/12/29,11.196999999985003 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/02/06,11.289716666451664 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/02/23,22.373925000000007 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/02/22,21.88613333333335 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/04/04,11.135416667051668 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/05,8.236781567076907 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/06,9.392313645597488 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/06/06,25.95806250038 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/30,7.657391671434169 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/06/07,14.849374999784985 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/29,3.403325330769224 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/05/22,9.178791680704157 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/06/22,10.394166670196668 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/08/02,9.864849999344996 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/07/24,15.567370834280837 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/08/10,4.695475000362491 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/08/01,3.0091295000000065 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/07/25,8.499141667381645 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/08/25,13.233173332663334 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/09/11,3.1401442307692293 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/09/26,4.4769455043809465 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/10/04,5.823302385959883 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/09/27,3.638352120695968 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/05,2.809066442307693 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/10/29,3.904850000000006 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/29,11.244513651452491 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/22,4.671879545144995 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/30,23.01619166659167 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2015/11/21,16.31905833431832 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/01/08,3.3692000000000046 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/02/26,22.451158333333343 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/05,14.258766753804174 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/30,7.901268964999994 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/21,4.163342055190002 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/29,4.8846499999999935 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/04/22,3.527609 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/05/23,8.616174156066663 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/05/31,5.462188192275001 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/05/24,12.816133333733324 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/03,4.124404171494172 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/06/24,4.302135382625117 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/11,3.7495192307692222 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/02,3.153277250000005 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/06/25,5.019102269999998 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/08/11,7.428066676081674 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/08/04,2.7241696874641663 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/26,4.874235829025838 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/08/03,3.9531970607692246 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/07/27,4.334475763405829 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/05,3.4718628816666603 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/08/27,3.3348257653624955 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/04,4.128509090289994 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/10/07,5.611072725145001 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/28,3.933141673690834 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/21,3.358506810144996 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/10/06,3.036117467307693 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/09/29,3.939125004999996 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/11/08,12.21365836563334 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/10/23,4.017617855486903 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/11/07,2.901225723626372 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/12/09,4.7551258924276825 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/11/23,6.716533094871786 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2016/12/25,24.44946458382836 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/03,22.337341666666678 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/04,22.115583333333348 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/19,11.818683333238326 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/03/08,12.197656249187505 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/27,22.191458333333347 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/02/20,15.00007499990501 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/03/23,22.26459166666668 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/05/10,11.44726250181501 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/04/24,7.582558337265841 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/06/11,7.021761666616669 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/05/27,4.280287644230761 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/07/05,2.6460181 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/06/28,3.865875000310005 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/07/29,16.700783333333327 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/07/22,14.885229167661674 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/07/30,3.711827849999996 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/08/30,8.532584843405843 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/08/23,5.8619895820008345 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/08/22,3.573675000000004 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/10/10,5.811923485145002 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/10/01,3.699937866666661 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/09/24,3.56357916704667 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/10/02,4.353263797435897 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/11/11,7.068567312380947 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/11/10,2.7786250000000035 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/10/25,3.1174355316666653 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/12/04,8.851845195761786 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2017/11/26,3.1478250000000094 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/04/11,22.26459166666668 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/05/05,7.36182500459999 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/05/29,8.162177498830003 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/05/30,4.086949999999997 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/07/09,15.337275020700003 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/06/30,17.05432500009502 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/07/08,10.473907951775002 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/06/22,7.363208338420834 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/08/10,2.7393740999999974 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/08/09,3.506004500000001 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/09/03,4.182300000867496 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/08/25,7.105265156666662 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/09/27,3.165416666951669 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/10/05,3.708193814999998 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/12/07,5.325854166451674 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/12/08,4.466466985576924 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/11/22,3.675850000000009 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2018/12/23,9.627541667076686 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/02/09,15.82964999999999 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/02/10,14.716649999905009 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/01/25,21.84966666666668 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/03/06,22.539900000000006 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/02/26,21.83503333333335 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/04/23,8.126706666289182 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/05/08,3.6276882701608297 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/04/22,22.11379174491417 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/06/10,13.321512499904996 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/06/09,7.252812498130003 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/07/03,2.8570468230724995 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/06/26,17.864600018400008 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/08/04,8.479241667636671 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/08/05,3.230562499999999 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/09/05,3.127470459999998 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/08/29,8.22824583390584 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/09/06,3.6916639307692254 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/09/21,3.7869931800000023 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/10/08,4.615177002769227 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/09/29,2.8968180400000008 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/11/01,6.371833327963347 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/10/23,10.569753337620828 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/12/11,3.855287846153847 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2019/11/25,2.9760999999999984 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/02/05,11.289158333088332 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/03/08,22.476608333333346 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/02/20,21.66638333333335 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/03/31,10.281557520892491 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/04/01,21.93075834253334 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/05/02,11.534287518137504 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/04/25,4.952175799999995 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/05/03,6.887175000000006 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/04/24,4.004849999999999 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/05/27,7.731695456739166 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/06/11,5.481915640111905 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/06/04,2.952502250000001 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/05/26,3.354975000000005 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/06/28,4.147140154028333 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/07/06,2.80444334 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/08/07,2.735002250000004 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/08/31,3.755023488840828 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/08/30,3.197550000000008 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/08/23,4.892175001594994 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/10/10,16.069125000147505 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/10/01,8.446375000527498 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/09/24,12.659141671339173 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2020/12/29,21.88613333333335 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/01/30,21.84966666666668 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/03/11,10.248908333190824 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/04/11,14.121150000399997 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/03/26,12.080608333475835 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/05/06,3.8345723631958286 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/06/07,6.197125000264999 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/05/29,9.509250754991667 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/08/02,5.511933279997141 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/08/10,4.47240000007249 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/07/25,15.88313333352332 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/09/11,10.910533333570823 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/09/02,3.20471923076923 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/08/26,3.933824999999992 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/11/06,4.070022402088566 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/11/09,2.7217692307692336 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/11/05,2.9880763461538464 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/10/29,4.180683465293039 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/12/07,2.74074423076923 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/11/24,3.778813461538464 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/12/24,11.65295 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/12/24,22.50665833370333 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2021/12/23,3.751020633269232 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/01/25,22.34590833333334 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/02/26,10.554416666666684 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/02/26,22.274983333333346 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/03/30,22.34590833333334 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/04/06,8.522366684359165 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/03/29,21.88613333333335 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/03/22,13.350174999762505 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/09,3.1736636549999986 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/09,2.599373175000002 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/08,5.481432578333335 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/01,2.9872510549999998 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/04/30,5.54156667212166 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/04/23,12.95524166666666 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/31,9.569404171004164 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/25,3.856784099999992 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/05/24,12.497374999999986 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/06/29,4.236076518404165 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/07/11,14.258208333380813 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/07/03,2.925852250000005 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/06/26,3.233862881666667 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/06/25,12.988608333733325 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/07/28,2.3784907500000005 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/07/27,2.8709795 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/08/29,4.017011366134999 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/08/28,6.37931742666667 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/09/22,6.119774994950009 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/10/08,13.29360000052499 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/09/30,5.868270322481685 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/10/31,4.167122395768336 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/11/09,3.042055314102564 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/11/08,2.2946187673076888 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/10/31,6.272374998692498 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/10/23,5.933733333988331 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/12/10,2.9897500000000066 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/12/02,3.392549000000002 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2022/11/24,2.843634980769232 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/02/21,12.942166666189165 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/04/10,18.78725625020001 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/04/09,11.832899999904994 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/04/02,11.92971667117166 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/04/01,13.147108333190834 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/09,14.141352499592475 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/11,4.782325873166551 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/31,17.9504916666667 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/26,6.239186360144998 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/28,7.1118500001674825 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/05/27,13.450933333333335 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/06/22,3.882662728217495 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/06,4.2278386662475 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/06/21,3.4024000000000068 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/10,8.368916672374164 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/05,3.5320983846666603 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/31,3.701799999999997 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/30,5.12150428254738 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/23,3.313375000000006 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/07/22,3.012352250000006 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/01,8.301512876954172 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/27,9.493975000000011 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/09,8.008483333560816 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/01,3.486150000507496 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/31,3.851418943333325 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/24,3.0352386033333314 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/08/23,3.0825250000000044 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/28,10.916620850275825 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/10/03,4.630241677873332 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/10/02,3.8865674266666654 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/09/25,3.2398090904824937 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/11/03,5.040152339999995 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/12/06,22.37727499974001 -Chazy Lake,9520959,-73.81824260114857,44.74708418760128,2023/11/28,3.138075000000006 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/01/05,21.791766666666685 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2014/12/29,10.540224999785009 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/02/23,22.663366666666672 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/05,13.65210002300002 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/06,6.937400000192485 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/06/06,5.963023324780831 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/30,5.4178866072628535 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/06/07,13.034074999784984 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/29,3.803149999999994 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/05/22,5.303025000047492 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/06/22,6.49135833293834 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/06/30,22.001883333088344 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/08/09,3.352649999999995 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/07/24,16.58368333225832 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/08/10,4.110675000434994 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/03,5.885750000070004 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/08/25,4.132559092027501 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/11,3.187004999999993 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/02,9.625758333523324 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/26,4.793205318021972 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/10/04,5.1893250000000055 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/09/27,2.7754765000000003 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/12/08,7.376549998635011 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/11/29,4.153890161811659 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/11/22,4.615462767380946 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/11/30,20.82086666620668 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2015/11/21,20.308508334118315 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/01/08,21.67155833333335 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/01/24,21.967658333333347 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/02/26,22.348225000000006 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/03/05,21.388183333070856 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/03/29,22.34590833333334 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/05/07,9.022266671896675 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/04/30,3.344871230362494 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/04/21,7.139479564999993 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/04/29,6.067282956369987 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/04/22,3.2327772500000047 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/05/23,7.198773331615836 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/05/31,7.099818942571672 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/07/03,7.608808333858331 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/06/24,5.044040927633338 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/07/11,4.443100000144991 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/06/25,2.892439730769228 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/08/11,9.585970835823332 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/08/04,3.483144548144993 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/08/03,2.87323635 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/07/27,3.429792260769227 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/05,3.4026340999999927 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/08/27,15.823691666404152 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/04,3.553409099999996 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/10/07,3.869938619999996 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/28,3.0899310566666656 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/21,3.874568180217494 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/10/06,2.097622674999997 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/09/29,2.8841241649999976 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/11/08,4.472977166333326 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/10/23,7.059091660746677 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/11/07,2.2692065365384577 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/12/09,21.675758333333352 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2016/11/23,3.3166795000725 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/01/11,15.039241666571662 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/02/19,22.177183333333343 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/03/08,10.63979166887166 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/03/23,22.34590833333334 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/04/24,12.454075002300003 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/06/11,8.689766664254172 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/05/27,3.6083711538461527 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/07/05,3.84101591 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/07/29,21.58006666699917 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/07/30,2.427879200000001 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/08/30,10.583203786666669 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/08/23,3.699229167141671 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/09/07,17.70581666665166 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/08/31,6.087125000095008 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/10/10,3.5425650129999964 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/10/01,3.0093174366666613 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/09/24,4.860525000309997 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/10/02,2.412490575 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/09/23,8.516050001007482 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/11/11,7.565168938380835 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/11/10,3.4655750000475027 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/10/25,3.617685499999997 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/12/04,3.6234143228550018 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2017/12/28,22.242050000000013 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/05/05,4.564550000000001 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/05/29,8.610704165019174 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/05/30,3.614224999999992 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/07/09,7.691210616811666 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/06/30,17.704476669351656 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/07/08,17.943481441261664 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/07/01,12.946975000142492 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/06/22,2.3060886 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/08/10,3.684284199999995 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/08/09,10.756183333765826 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/08/02,8.577284090554999 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/09/03,11.721349999784984 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/08/25,3.434388830769225 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/10/05,2.360513350000001 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2018/12/08,21.88613333333335 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/01/01,24.44116666666665 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/02/09,13.262600000189998 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/02/10,13.180491666404162 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/02/01,21.867666666666683 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/02/26,21.75304166666668 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/04/23,9.591133333743352 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/05/08,5.697296240953327 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/04/22,10.970200004742496 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/06/09,2.487572740000003 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/06/26,8.037599999569997 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/08/04,3.1258250018849982 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/08/05,3.2832749999999966 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/07/27,3.4673840902399955 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/05,3.4145212133333307 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/08/29,5.56428958302833 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/06,3.0422079307692265 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/21,7.010446966739165 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/10/08,3.491237349999996 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/29,6.911150000360007 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/09/22,12.299024999784988 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/11/01,4.152389579560833 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/12/11,10.984374999857517 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2019/11/25,3.722900000000006 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/02/05,22.47810000000001 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/03/08,10.153008333118343 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/03/07,21.675758333333352 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/02/29,21.867666666666683 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/02/20,21.88613333333335 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/04/01,13.722908333285837 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/05/02,13.526633374733349 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/04/25,3.747643938333328 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/05/03,5.086649999999998 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/05/27,2.882709091087498 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/06/11,2.5057567500000006 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/06/04,8.89232625165405 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/05/26,4.183075000072495 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/07/05,11.7555999962225 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/07/06,2.8653168633333315 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/06,4.3440128849833375 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/07/30,3.7896942308417256 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/07,3.194816905769227 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/31,6.414750000264995 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/09/08,11.009004166884168 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/30,9.752100008135 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/08/23,3.4837500021024983 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/10/09,3.693018189999992 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/09/23,12.495918995801656 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/10/10,13.400300005949996 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/09/24,15.351508333955838 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/11/10,3.797377420623332 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/10/25,12.698913223393332 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2020/12/29,21.750616666666684 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/01/29,22.47810000000001 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/02/06,23.24800833333333 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/03/02,22.407050000000005 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/04/04,14.315974999905013 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/05/06,2.519957249999999 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/06/06,7.863062502964991 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/06/07,8.514902249999999 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/05/29,4.178425000144996 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/07/24,3.986368180362496 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/08/10,3.5061522499999977 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/07/25,2.7612750000475006 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/08/25,13.869983333695838 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/09/11,12.390933333333326 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/08/26,4.854175000457492 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/09/26,3.2862295454349963 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/11/06,10.886414909329435 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/11/05,2.9482433269230763 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/10/29,2.668287322435897 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/12/07,13.614308333533325 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/11/24,2.6234340249999986 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/11/21,2.793299990000001 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/12/24,11.938491666666666 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2021/12/23,12.46194166660416 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/02/26,13.053891666804168 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/04/06,9.744558335538322 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/03/29,21.791766666666685 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/09,3.202837145144997 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/09,2.824261775000002 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/08,11.017150022999996 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/01,3.829964403333328 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/04/30,8.731191669539157 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/31,12.472375000189995 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/26,9.426500001092505 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/25,3.613659149999998 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/05/24,4.856100001422502 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/07/04,12.196154167076656 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/06/29,4.045025000072494 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/07/03,4.927496971948335 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/06/26,3.623416060769225 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/06/25,23.797175000792503 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/08/07,9.280508342100836 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/07/28,2.817825000000004 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/07/27,2.546102249999999 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/08/29,4.51025416743916 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/08/28,2.3175452500000024 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/09/22,6.333049997990006 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/09/30,2.302372605769229 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/09/29,3.551 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/09/21,4.7504090999999935 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/10/31,16.577141708066694 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/11/09,2.3682452999999986 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/11/08,2.3144766 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/10/31,16.522766667451652 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/10/24,18.91396666685665 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/10/23,13.230591666866657 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/12/10,7.451693560155836 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/12/02,4.861979170364165 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2022/11/24,3.2833907500000006 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/02/04,22.18061666666668 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/04/10,11.513308333238326 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/09,15.137875000000005 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/11,15.75881667126667 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/31,4.104711361932499 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/26,2.9361636302899967 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/06/05,13.395916669134165 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/28,5.364500000215002 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/05/27,13.672854166739164 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/06/22,7.346877270844999 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/07/06,2.8295749999999957 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/06/21,2.7799250000000053 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/10,11.315633343280824 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/05,3.4314000003624976 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/07/30,12.71113334212083 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/07/23,3.479748463380837 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/07/22,2.9791272500000034 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/01,16.857566667101672 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/09,5.447725001179999 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/01,3.1907250013774955 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/31,3.3995765266666638 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/24,2.863186389999996 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/08/23,2.440540725000001 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/28,9.193347916619173 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/10/03,4.102619109999991 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/10/02,4.362308187999993 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/09/25,6.587575000505015 -Loon Lake,9522011,-74.0731282673663,44.56033689061045,2023/11/03,4.269250919999994 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/01/05,10.870000000185009 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/06,21.848400000000016 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/06,21.848400000000016 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/03/11,20.63073958467336 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/23,22.47810000000001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/22,22.689058333333342 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/03/11,20.63073958467336 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/23,22.47810000000001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/02/22,22.689058333333342 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/05,14.445883379333344 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/06,7.326358335778326 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/05,14.445883379333344 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/06,7.326358335778326 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/06,8.920789165999171 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/30,21.65369000118501 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/07,13.329799999999985 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/29,4.511375000144997 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/22,2.722327250000002 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/06,8.920789165999171 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/30,21.65369000118501 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/07,13.329799999999985 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/29,4.511375000144997 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/05/22,2.722327250000002 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/22,14.166837502185007 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/30,11.96779166622165 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/22,14.166837502185007 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/06/30,11.96779166622165 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/09,2.419916661666667 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/07/24,15.019366675939164 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/10,4.867475000502495 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/01,2.5311772500475 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/09,2.419916661666667 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/07/24,15.019366675939164 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/10,4.867475000502495 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/01,2.5311772500475 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/03,5.666799995395008 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/25,9.299433340423333 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/11,2.862925000000004 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/02,8.790175000507498 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/03,5.666799995395008 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/08/25,9.299433340423333 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/11,2.862925000000004 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/02,8.790175000507498 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/26,5.024952738919407 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/10/04,5.536100000000008 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/27,2.4968214307692285 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/26,5.024952738919407 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/10/04,5.536100000000008 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/09/27,2.4968214307692285 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/05,2.2600619874999994 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/05,2.2600619874999994 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/12/08,6.864474996040011 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/29,7.200268072380943 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/22,3.836446997515239 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/30,3.0038500000000066 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/12/08,6.864474996040011 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/29,7.200268072380943 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/22,3.836446997515239 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2015/11/30,3.0038500000000066 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/01/24,21.67155833333335 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/01/24,21.67155833333335 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/02/26,22.348225000000006 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/02/26,22.348225000000006 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/07,21.96543750097001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/30,4.134954549999996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/21,8.300598483333335 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/29,5.085933336565832 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/07,21.96543750097001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/30,4.134954549999996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/21,8.300598483333335 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/04/29,5.085933336565832 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/23,5.585327327979399 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/31,6.854800000352502 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/23,5.585327327979399 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/05/31,6.854800000352502 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/03,7.6655772819499965 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/06/24,14.12309170116667 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/11,3.934350000072497 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/06/25,2.277202825000003 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/03,7.6655772819499965 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/06/24,14.12309170116667 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/11,3.934350000072497 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/06/25,2.277202825000003 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/11,6.527737495335006 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/04,3.3773468279999945 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/03,2.622484 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/27,3.453770405 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/11,6.527737495335006 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/04,3.3773468279999945 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/03,2.622484 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/07/27,3.453770405 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/05,3.816586399999991 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/27,7.363325007210001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/04,2.9929795499999994 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/05,3.816586399999991 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/08/27,7.363325007210001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/04,2.9929795499999994 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/10/07,2.6009718380000004 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/28,11.8939750116675 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/21,3.7456074516666575 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/10/06,2.52110891153846 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/29,2.4784761250000025 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/10/07,2.6009718380000004 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/28,11.8939750116675 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/21,3.7456074516666575 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/10/06,2.52110891153846 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/09/29,2.4784761250000025 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/08,9.355825634666662 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/07,2.8225349182692283 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/08,9.355825634666662 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/07,2.8225349182692283 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/12/10,10.40219166928916 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/12/09,3.268950000000005 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/23,2.856577250000002 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/12/10,10.40219166928916 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/12/09,3.268950000000005 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2016/11/23,2.856577250000002 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/01/02,22.674233333333337 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/01/02,22.674233333333337 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/02/04,21.919450000000012 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/02/04,21.919450000000012 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/03/08,14.087299999905005 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/02/20,20.383683333238366 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/03/08,14.087299999905005 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/02/20,20.383683333238366 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/03/23,22.451158333333343 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/03/23,22.451158333333343 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/04/24,8.071758336714167 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/04/24,8.071758336714167 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/06/11,8.306266662916668 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/06/11,8.306266662916668 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/05,2.326713500000001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/05,2.326713500000001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/29,7.1135791696441695 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/30,2.612317666895605 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/29,7.1135791696441695 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/07/30,2.612317666895605 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/30,3.729184090144996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/23,7.730483342793332 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/07,3.403752250000005 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/31,8.6065500003625 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/30,3.729184090144996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/23,7.730483342793332 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/07,3.403752250000005 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/08/31,8.6065500003625 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/10,9.3506125019275 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/01,4.479670519999991 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/24,4.825451516666666 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/02,2.5606691807692283 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/23,9.230575000192482 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/10,9.3506125019275 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/01,4.479670519999991 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/24,4.825451516666666 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/10/02,2.5606691807692283 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/09/23,9.230575000192482 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/11/11,22.887968184600027 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/11/10,3.055919230769232 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/11/11,22.887968184600027 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/11/10,3.055919230769232 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2017/12/04,9.585965846415856 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/04/11,22.337341666666678 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/05/05,5.0254999999999965 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/06/07,7.186524996472511 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/05/29,5.855182800499168 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/05/30,5.117735606906666 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/07/09,4.6026560617391565 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/06/30,15.729133333903327 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/07/08,12.64819999999998 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/07/01,6.0030750018249925 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/06/22,2.6616249499999984 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/08/10,3.4087415616666625 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/09/03,2.668902250000006 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/08/25,3.5761607683333256 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/10/05,2.6106919307692285 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2018/11/22,21.838800000000013 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/02/09,15.780899999999988 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/02/10,13.338666666404166 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/04/23,13.038933483763346 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/05/08,5.974003808921662 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/04/22,23.165766710556653 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/06/10,11.912033328028338 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/06/09,6.552949811963571 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/07/03,4.553036764039167 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/08/04,13.387025000507514 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/08/05,2.3317704000000026 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/07/27,3.840393200144992 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/05,4.044621996666658 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/08/29,3.926797779999992 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/06,3.790566135769225 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/21,6.56090757333333 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/10/08,2.4450648750000026 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/29,3.820204170731664 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/09/22,12.771749999354988 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/10/23,6.731124990650011 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/11/09,8.209625000289996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/12/11,11.8503500001375 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2019/11/25,4.158372754807694 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/03/08,22.451158333333343 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/02/21,22.539900000000006 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/03/07,21.66638333333335 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/02/20,21.919450000000012 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/03/31,9.591350000000013 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/04/01,12.767216666714171 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/05/02,6.638438644999997 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/04/25,7.549409104999996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/05/03,5.055109079999993 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/05/27,2.980249102999997 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/05/26,3.852500000047499 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/07/05,4.962837509550003 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/06/28,16.007741732816665 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/07/06,2.645704350000002 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/07/30,4.141964599999991 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/08/07,2.9403999999999986 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/09/08,7.10050666769666 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/08/30,5.433900000047495 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/08/23,4.028975524999991 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/10/09,4.753959159999989 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/09/23,6.721016657836672 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/10/10,11.797433334630831 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/11/10,24.24757515563336 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/10/25,11.118213330953324 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2020/12/29,21.75304166666668 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/01/29,22.76205 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/01/30,22.689058333333342 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/03/02,22.373925000000007 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/04/03,22.480808333333343 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/03/26,10.61364166657166 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/05/06,3.4709317949999963 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/06/06,9.63785000249 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/06/07,3.624099999999996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/05/29,12.138108333405828 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/08/02,3.1874483317108333 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/07/24,16.42427500172749 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/08/10,3.314695099999997 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/07/25,5.743598795769225 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/08/25,4.904558335118332 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/08/26,14.789274998679998 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/09/26,9.017066555714289 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/06,14.715503795633344 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/09,2.6303522500000067 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/05,3.215850000000003 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/10/29,2.398568293269229 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/29,3.730846951739166 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/24,5.6725448874358975 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/11/21,5.126695399999999 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/12/24,24.44116666666665 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/01/08,21.848400000000016 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2021/12/23,12.500325000337495 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/02/01,22.47567500000001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/01/25,10.017883333333348 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/02/26,22.22352500000001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/04/06,22.249200007089996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/03/22,14.537899999952495 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/09,2.771570331333333 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/09,3.013807625000001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/08,5.154403052201665 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/01,3.0203039999999994 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/04/30,4.318984069999996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/04/23,21.79934166700418 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/31,13.83581669225667 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/26,10.38952500016 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/25,3.083600449999996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/05/24,6.075630315279163 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/07/04,3.637593180144995 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/06/29,4.54319549999999 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/07/03,6.047975776365819 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/06/26,3.074278513333329 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/06/25,6.399339020850833 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/07/27,3.4535000000000053 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/10,13.817364173566654 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/08/29,6.492729926054994 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/08/28,2.31775675 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/22,11.329900000860016 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/30,3.0555630432692324 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/22,3.71119423076923 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/09/21,4.440409100144996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/10/31,7.503804550072505 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/11/09,2.8204704307692303 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/11/08,2.4443918307692285 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/10/31,4.835505304886667 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/10/24,4.642125000409993 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/10/23,11.950566666666656 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/12/10,4.167181699999997 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/12/02,13.095908333333323 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/11/24,3.2721942307692298 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2022/12/27,22.18061666666668 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/02/04,22.18304166666668 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/04/10,12.326266666619158 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/04/09,13.876608333238334 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/04/02,10.977433333143342 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/09,14.085100000000006 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/11,11.638808340328325 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/31,8.5253500000725 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/26,2.5061756246666658 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/06/05,12.24069166913416 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/28,4.419334099999993 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/05/27,15.25133750016749 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/06/22,7.244722343525831 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/07/06,4.359204539999996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/06/21,3.422675000000005 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/10,17.706383349723342 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/05,4.123879550072493 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/07/23,3.459988105769231 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/06,6.015768940145002 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/01,8.330277270554996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/27,5.7301750004000045 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/09,4.695629927379996 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/01,3.203153792101663 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/31,4.268144701666659 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/24,3.346256623333334 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/08/23,2.4078885999999997 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/28,11.796989595850828 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/23,8.610918749050022 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/10/03,3.946223495164999 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/10/02,3.252037129999997 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/09/25,7.23242500070001 -"Kushaqua, Lake",9522093,-74.11454334483867,44.51780283728567,2023/11/03,5.001386344999997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/01/05,21.75304166666668 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/01/29,22.348225000000006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/02/06,21.791766666666685 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/01/29,22.348225000000006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/02/06,21.791766666666685 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/03/11,11.370958333918336 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/03/10,22.231758333333342 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/02/22,22.58308333333334 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/03/11,11.370958333918336 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/03/10,22.231758333333342 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/02/22,22.58308333333334 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/04/03,10.14269166628669 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/04/03,10.14269166628669 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/05,9.802750009594996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/06,14.855108365533354 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/05,9.802750009594996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/06,14.855108365533354 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/06/06,6.334099192482732 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/29,12.432499999999996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/22,3.137150000000004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/06/06,6.334099192482732 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/29,12.432499999999996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/05/22,3.137150000000004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/08,19.157904167806688 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/06/22,8.480977079853341 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/08,19.157904167806688 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/06/22,8.480977079853341 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/09,3.281774204999996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/24,17.35364166637917 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/10,12.544500000199992 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/01,2.5253840000000007 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/25,5.786375000769998 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/09,3.281774204999996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/24,17.35364166637917 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/10,12.544500000199992 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/01,2.5253840000000007 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/07/25,5.786375000769998 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/03,4.2202739804977405 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/25,3.025469696666664 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/11,4.2832385 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/02,3.4942045000000004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/03,4.2202739804977405 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/08/25,3.025469696666664 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/11,4.2832385 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/02,3.4942045000000004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/10/05,3.1589499799999983 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/26,5.12643786968864 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/10/04,9.491825000119984 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/27,3.00916552403846 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/10/05,3.1589499799999983 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/26,5.12643786968864 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/10/04,9.491825000119984 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/09/27,3.00916552403846 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/29,6.72997499625501 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/22,3.4197318262549987 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/30,2.496954500000003 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/29,6.72997499625501 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/22,3.4197318262549987 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2015/11/30,2.496954500000003 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/01/25,22.373925000000007 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/01/25,22.373925000000007 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/02/26,10.081941666451678 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/02/26,10.081941666451678 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/05,8.544363512999997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/03/29,11.25592499957001 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/05,8.544363512999997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/03/29,11.25592499957001 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/07,5.576922499979999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/30,4.2563986419999935 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/21,3.495174097999998 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/29,7.78663257967167 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/22,3.202075000000006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/07,5.576922499979999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/30,4.2563986419999935 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/21,3.495174097999998 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/29,7.78663257967167 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/04/22,3.202075000000006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/23,13.486841717266673 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/31,4.087164399255829 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/24,13.830300000864987 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/23,13.486841717266673 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/31,4.087164399255829 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/05/24,13.830300000864987 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/06/24,4.222193179999994 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/07/11,3.261161349999996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/06/25,3.1267939557692315 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/06/24,4.222193179999994 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/07/11,3.261161349999996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/06/25,3.1267939557692315 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/11,13.110816701266677 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/04,2.621275 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/03,2.8604363500000023 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/07/27,15.967850000479997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/11,13.110816701266677 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/04,2.621275 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/03,2.8604363500000023 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/07/27,15.967850000479997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/05,3.1603340999999983 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/27,2.914971505769229 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/04,2.461626875 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/28,3.459519230769222 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/05,3.1603340999999983 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/27,2.914971505769229 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/04,2.461626875 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/08/28,3.459519230769222 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/07,4.901047771047611 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/28,4.8851185718441705 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/21,2.7587037916666675 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/06,2.772064393269229 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/29,3.0931809615384585 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/07,4.901047771047611 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/28,4.8851185718441705 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/21,2.7587037916666675 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/06,2.772064393269229 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/09/29,3.0931809615384585 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/08,5.772605354380946 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/23,15.097042366043608 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/07,6.444320028388277 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/08,5.772605354380946 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/10/23,15.097042366043608 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/07,6.444320028388277 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/10,5.626862143595838 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/09,4.107806750000004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/23,7.859375000507498 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/10,5.626862143595838 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/09,4.107806750000004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/11/23,7.859375000507498 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/01/11,13.296066666476673 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/01/02,22.34590833333334 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/25,13.317791666404162 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/01/11,13.296066666476673 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/01/02,22.34590833333334 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2016/12/25,13.317791666404162 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/02/19,20.94073958629836 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/03/08,19.830541703751663 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/02/20,15.224474999905006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/02/19,20.94073958629836 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/03/08,19.830541703751663 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/02/20,15.224474999905006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/03/23,22.34590833333334 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/03/23,22.34590833333334 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/04/24,17.117817428966685 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/05/11,3.354202249999999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/04/24,17.117817428966685 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/05/11,3.354202249999999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/06/11,5.957384467325832 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/06/11,5.957384467325832 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/05,2.638219730769229 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/06/28,7.719150000144997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/05,2.638219730769229 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/06/28,7.719150000144997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/29,13.442450018617505 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/30,2.7579840750000018 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/29,13.442450018617505 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/07/30,2.7579840750000018 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/30,5.688119160229167 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/23,3.353777497312505 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/31,8.521402270362495 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/30,5.688119160229167 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/23,3.353777497312505 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/08/31,8.521402270362495 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/10,3.284122740072496 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/01,5.0090207557692255 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/09/24,2.347489408333333 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/02,3.093932504807691 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/09/23,4.006638625072494 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/10,3.284122740072496 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/01,5.0090207557692255 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/09/24,2.347489408333333 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/02,3.093932504807691 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/09/23,4.006638625072494 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/11,7.304769582380942 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/10,22.476150000355 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/25,10.75150603666666 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/11,7.304769582380942 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/10,22.476150000355 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/10/25,10.75150603666666 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/12/04,5.204665901805002 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2017/11/27,5.739074998035006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/05/05,6.9224250023000025 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/06/07,10.379250231741665 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/05/29,7.225846968333332 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/05/30,6.492250002300002 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/07/09,3.738358182999992 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/07/08,4.953000000644999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/07/01,4.746050000072492 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/06/22,3.372453649999997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/08/10,3.033529275 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/08/09,3.490739999999996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/08/25,3.616617158333329 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/09/27,3.1035415883333344 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/10/05,2.68760175 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/11/22,14.52041666666666 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2018/12/23,9.871200000000012 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/01/25,13.013266667004167 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/02/26,21.75304166666668 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/04/23,4.1442257733333285 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/05/08,8.829625 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/04/22,5.9284 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/06/01,10.301879166381685 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/06/09,3.4353572699999946 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/07/03,7.328929550435001 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/06/26,3.270941688333329 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/07/04,6.199187885443326 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/08/04,10.758033340473323 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/07/28,6.870302076343348 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/08/05,2.520607542307692 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/07/27,3.747124999999994 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/09/05,3.605187961666657 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/08/29,3.420625015072496 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/09/06,5.422863644999995 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/09/21,9.021715805714289 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/10/08,5.397425841465196 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/11/01,8.629971250667522 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/10/23,12.230521551261656 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/12/11,15.804741669014172 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2019/11/25,3.0479493115384613 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/03/08,22.309808333333343 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/04/01,11.335341666571669 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/05/02,14.977866708066667 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/04/25,8.625731820000004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/05/03,3.822144549999997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/05/27,3.657826379666664 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/05/26,3.345982299999999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/07/05,6.779145077541668 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/06/28,5.960538808150183 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/07/06,3.220216867307694 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/06,4.55324545984 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/07,3.3892681740384614 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/31,4.281579269871796 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/09/08,6.098357887948708 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/30,2.7677930001675013 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/08/23,4.615563644999992 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/10/09,5.696167332380947 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/10/10,7.592050000192498 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/11/10,4.995734894380947 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/10/25,12.620334115317965 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2020/12/29,21.446433333070853 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/01/29,22.76551666666667 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/02/06,21.791766666666685 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/03/02,22.47810000000001 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/04/03,22.29679999935501 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/03/27,22.674233333333337 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/05/06,4.917895444999996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/06/06,6.90778334757333 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/06/07,3.4847522500950068 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/06/23,4.124471321923075 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/08/10,3.1703138249999974 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/07/25,9.178075000192496 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/08/25,19.669224999712515 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/09/11,3.264729764999998 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/08/26,3.166427250000002 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/06,9.26179155571428 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/09,3.859118943846147 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/05,3.949352249999999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/10/29,6.019576413919412 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/29,5.780756250510004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/24,4.402110647435896 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/11/21,10.543070469999998 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2021/12/24,24.44116666666665 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/02/01,22.373925000000007 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/01/25,22.658500000000007 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/04/06,8.196008332630857 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/04/06,17.79775836302334 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/09,4.399691821999993 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/09,2.1623474 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/08,6.126108341265824 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/01,2.660181265000004 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/04/30,5.2965000023 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/04/23,18.57850833348584 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/31,6.496949992370011 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/26,6.094075004110005 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/25,3.861193199999994 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/05/24,6.3971583495483335 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/07/04,5.935084090455008 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/06/29,3.5720310566666598 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/07/04,4.136531066666664 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/07/03,3.776900000000003 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/06/26,3.2584399999999936 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/06/25,4.650535931824162 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/07/28,2.632833999999999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/10,6.0165562486450055 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/08/24,3.510748523333328 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/08/29,11.043008333860827 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/08/28,2.743272665000002 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/08,2.586525000000003 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/30,3.5683908750724966 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/29,3.1294250000000066 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/22,12.288108333733328 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/09/21,5.048658336143331 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/31,4.967761956618332 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/26,7.467699995865008 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/11/09,6.444143283333327 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/11/08,4.999500997435899 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/31,7.927979165451672 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/10/24,18.30399999993999 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/12/10,5.529911364999993 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/12/02,8.696125000000006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/11/24,3.1899568499999997 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2022/12/27,22.169733333333344 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/02/04,22.14189166666668 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/04/10,10.98709166657166 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/04/09,11.151308333238328 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/04/02,11.851066670021662 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/09,14.800716666666682 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/11,7.014409853333334 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/31,4.168162728144996 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/26,3.4470043913333286 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/06/05,18.57558334030585 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/28,3.6544249999999936 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/05/27,9.208300000552493 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/06/22,7.348903786739165 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/07/06,2.5905022000000013 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/06/21,2.7823250000000046 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/08/05,3.461125000072496 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/07/31,2.673352250000006 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/07/23,18.202950000497484 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/07/22,2.5357022499999986 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/06,4.427861364999995 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/01,6.026534090262505 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/01,10.850627270167504 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/08/31,4.823700000000001 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/08/23,2.79452668076923 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/28,12.497461805337132 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/23,6.674355683548332 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/10/03,4.082994100072494 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/10/02,3.906399169999994 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/09/25,6.362666667241678 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/11/03,5.449510626666662 -"Clear, Lake",9523343,-74.25280559408903,44.36848096842452,2023/11/28,3.138582692307692 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/01/05,21.838800000000013 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2014/12/29,4.392057697115383 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/02/22,12.64257500050502 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/04/03,9.726166666286687 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/05,5.0536286817760665 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/06,14.222775018472523 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/06/06,4.03103750468 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/30,6.318095823350842 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/06/07,17.92627499999998 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/29,19.053141666739176 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/05/22,4.181800763550831 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/07/08,10.421833365708324 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/06/22,3.662645517999993 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/06/30,19.308249999999983 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/08/09,3.5179037916666624 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/07/24,13.94170833333332 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/08/10,9.839558339088333 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/08/01,3.2006634615384604 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/07/25,6.919850013252492 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/03,4.672250762780837 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/11,4.455254830769224 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/02,13.24817417865416 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/10/05,4.567781553946548 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/26,4.325452910714279 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/10/04,14.249126670164172 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/09/27,2.84154001153846 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/11/05,3.688875000265 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/11/29,4.811775801120116 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/11/22,3.3554575986958297 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2015/11/21,13.444525000072485 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/01/25,9.711783333333347 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/04/05,4.239931068405834 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/05/07,8.072783753890004 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/04/30,10.009778023405827 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/04/21,6.045375004672504 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/04/29,6.203048119340833 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/05/23,5.923109826158575 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/05/31,9.325891302955824 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/05/24,5.618931819999998 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/07/03,3.857234913333327 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/06/24,3.665983333840828 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/07/11,6.71967500579751 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/06/25,2.0970715207692314 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/11,3.6795772770291575 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/04,3.47138470966666 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/07/26,8.66423333436333 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/03,2.9469159149999977 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/07/27,3.8126526939102514 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/05,3.155177299999996 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/27,3.107654541014995 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/04,5.505575743333327 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/08/28,8.481770845039172 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/10/07,3.8146977152174992 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/28,4.394834475345833 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/21,2.9334201596666656 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/10/06,2.4857885999999985 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/09/29,3.462950180769227 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/11/08,7.213834101666666 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/10/23,7.091708222380953 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/11/07,2.69525093076923 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/12/10,4.159281375769226 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/12/09,2.981700000000001 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/01/11,12.628966666571662 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2016/12/25,21.794191666666684 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/02/04,21.791766666666685 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/02/19,11.975608333048337 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/03/08,14.98752499990501 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/02/20,20.28595833323837 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/03/23,22.26459166666668 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/04/24,5.530961365000001 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/05/11,3.911937230769226 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/06/11,6.9766949998550025 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/07/05,5.639600002300003 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/06/28,14.60495833352332 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/07/29,5.83672500033751 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/07/30,3.902076349999995 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/08/30,5.035670455627498 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/08/23,17.061433333795854 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/10/10,7.738354170091671 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/10/01,3.8169350019999913 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/09/24,3.392318180217498 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/10/02,3.0125889173076894 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/09/23,3.621009095145004 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/11/11,8.105869027777766 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/11/10,3.9634750001450025 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/10/25,5.555346366999994 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/12/04,4.2906187499150095 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2017/11/27,5.049399999985002 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/04/11,11.178724999325004 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/05/05,4.862000000192494 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/04/28,10.06079999964251 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/06/07,10.603412501397523 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/05/29,5.306047671449046 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/05/30,7.120375004935008 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/07/09,2.950849861333331 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/07/08,7.0085750006475065 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/07/01,6.612575001422496 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/06/22,2.7579940557692293 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/08/10,3.510620599999996 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/08/09,3.9307500000000055 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/09/03,12.17297916666667 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/08/25,3.904818184999993 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/09/27,2.938816530000001 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/10/05,2.62280725 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/11/22,12.46132500000001 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2018/12/23,22.47810000000001 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/02/09,13.964139583285826 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/02/10,21.77565833333335 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/03/06,22.348225000000006 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/02/26,21.848400000000016 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/04/23,4.888984095407497 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/05/08,11.59794169081667 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/04/22,4.141950000000001 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/06/01,10.967879166429189 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/06/09,4.122635999999993 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/07/03,7.480518961829168 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/06/26,7.268625000217506 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/07/04,17.077466667266663 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/08/04,13.168566682839185 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/08/05,3.0386545549999964 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/07/27,6.035725000712505 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/09/05,3.023650604666664 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/08/29,2.9974500006175004 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/09/06,4.284920454999995 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/09/21,6.901751513405836 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/10/08,5.728319071999988 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/10/23,7.473600000000004 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/12/03,10.544725014549996 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/12/11,9.538825023000015 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2019/11/25,2.934494210769228 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/02/05,22.348225000000006 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/02/21,22.348225000000006 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/02/29,22.68663333333334 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/02/20,21.838800000000013 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/04/01,18.51212291754169 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/05/02,4.08349924862333 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/04/25,2.912241668768329 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/05/03,5.976249241666657 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/05/27,3.3769613608699944 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/05/26,13.981585003807515 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/07/05,12.269637500617502 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/06/28,3.3936992367391614 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/07/06,3.8839121441025592 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/06,5.722025003235007 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/07,4.235359794102557 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/31,2.786284394102566 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/09/08,13.582075000047505 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/30,3.0772772500000025 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/08/23,7.569968180145 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/10/09,5.151606871047612 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/09/23,6.689270831815842 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/11/10,6.424410618405825 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/10/25,9.898076157015009 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2020/12/29,21.675758333333352 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/01/29,22.337341666666678 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/02/06,12.7182499995225 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/01/30,21.856800000000018 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/03/02,22.76205 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/04/03,13.30182291819666 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/03/26,7.352775000000003 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/05/06,3.8104462133333294 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/06/06,7.094775002614992 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/06/07,3.43477725 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/05/29,17.945125000400008 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/08/02,6.519849995395012 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/08/10,8.008615910047507 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/07/25,6.649775000602499 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/09/03,6.180199996255007 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/08/25,2.865175001029999 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/09/11,3.275807885769225 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/08/26,5.118275000047492 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/09/26,21.044433334658336 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/06,5.708566073811665 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/05,2.385978395769233 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/10/29,3.1170880284340656 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/29,10.5280300041725 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/24,4.215981839999999 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/11/21,6.079820603666659 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2021/12/24,23.10110833333333 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/02/26,23.23219166666666 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/03/30,22.26459166666668 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/04/06,9.898566668966655 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/09,3.845410596739165 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/09,3.660856891999996 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/08,3.717886384999996 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/01,4.990713649999992 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/04/30,11.913450037950009 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/04/23,19.521008333015835 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/31,8.067899999025007 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/26,4.231000001682498 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/25,5.827300005080008 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/05/24,14.405120835465834 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/07/04,19.198770833380816 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/06/29,4.329968179999989 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/07/04,3.2070545000000017 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/07/03,6.023237504239992 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/06/26,5.269550002632505 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/06/25,15.018025001034976 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/07/28,4.705626881794868 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/09/10,9.377012499307495 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/08/24,22.181662499902504 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/08/28,3.0277500999999973 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/09/22,8.405812501325022 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/09/30,5.513600000120006 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/09/21,2.988327250000006 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/10/31,9.334554168436672 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/10/26,18.013558335518333 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/11/09,3.182025256410256 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/11/08,2.77560250576923 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/10/31,7.300208333143336 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/12/10,5.670625089999996 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/12/02,20.427699999455005 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2022/11/24,8.047838699999994 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/01/11,4.521336216346154 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/02/04,22.25651666666668 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/04/02,10.893083333143345 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/09,19.27841459023333 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/11,12.879275000192488 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/04/25,4.311710376923072 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/31,4.857236360362496 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/26,2.6858718181449994 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/06/05,18.225575012255003 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/28,9.6231000001925 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/05/27,8.517675000764996 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/06/22,6.880129540264999 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/07/06,5.283881819999998 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/06/21,7.399415154273323 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/08/05,2.9552646872192287 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/07/23,4.025119167046677 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/07/22,3.6824750000950046 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/06,7.234476513550834 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/01,6.011943183070005 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/01,7.821450002822505 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/08/31,3.7998613649999937 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/08/23,3.0567730057692284 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/28,13.215803653342498 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/23,10.226583340695834 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/10/03,3.9056113999999904 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/10/02,3.530862769999993 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/09/25,23.416691666666683 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/11/03,6.187959858333329 -Little Clear Pond,9523375,-74.28855942777498,44.36431961326274,2023/11/28,3.616375000000005 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/01/05,3.5529955048076927 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2014/12/29,4.138572754807694 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/07,22.76551666666667 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/01/29,22.26459166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/06,21.750616666666684 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/07,22.76551666666667 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/01/29,22.26459166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/06,21.750616666666684 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/23,22.407050000000005 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/02/23,22.407050000000005 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/05,5.055623331690841 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/04/28,6.388849991835011 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/06,14.706766685066675 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/05,5.055623331690841 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/04/28,6.388849991835011 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/06,14.706766685066675 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/06,26.152812500760007 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/30,6.238337500962502 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/29,3.181863533333328 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/22,3.930004500000003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/06,26.152812500760007 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/30,6.238337500962502 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/29,3.181863533333328 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/05/22,3.930004500000003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/07/08,12.601087499235003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/22,5.310167309091068 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/30,6.152335716128207 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/07/08,12.601087499235003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/22,5.310167309091068 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/06/30,6.152335716128207 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/09,3.041424084999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/10,5.124225000989997 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/01,3.2336795000000005 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/07/25,4.869150000072488 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/09,3.041424084999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/10,5.124225000989997 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/01,3.2336795000000005 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/07/25,4.869150000072488 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/03,5.855949996607507 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/25,6.088135607029175 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/11,4.1563658750474985 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/26,4.022325000964995 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/03,5.855949996607507 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/25,6.088135607029175 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/11,4.1563658750474985 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/08/26,4.022325000964995 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/10/05,11.414849999999994 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/26,3.490047749999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/10/04,5.218609179999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/27,3.513541339743587 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/10/05,11.414849999999994 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/26,3.490047749999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/10/04,5.218609179999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/09/27,3.513541339743587 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/05,6.454700002977487 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/05,6.454700002977487 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/12/08,3.8499198919230726 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/29,4.500697840314401 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/22,7.146663635142499 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/30,4.139300135128201 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/12/08,3.8499198919230726 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/29,4.500697840314401 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/22,7.146663635142499 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2015/11/30,4.139300135128201 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/01/25,21.69634166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/01/24,21.675758333333352 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/01/25,21.69634166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/01/24,21.675758333333352 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/02/26,22.47810000000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/02/26,22.47810000000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/05,10.35835515471416 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/03/29,6.270324997760008 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/05,10.35835515471416 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/03/29,6.270324997760008 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/07,8.79912500147501 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/30,4.251157731999993 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/21,6.8015529013333245 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/29,22.56938144147416 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/07,8.79912500147501 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/30,4.251157731999993 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/21,6.8015529013333245 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/04/29,22.56938144147416 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/23,6.055949997990004 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/31,9.40711969796334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/23,6.055949997990004 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/05/31,9.40711969796334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/03,4.758323112153334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/06/24,13.309333362275831 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/11,8.46742500270748 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/06/25,3.403636989999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/03,4.758323112153334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/06/24,13.309333362275831 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/11,8.46742500270748 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/06/25,3.403636989999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/11,10.038033340280837 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/04,3.206580154666664 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/26,4.91699583504334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/03,2.700290525 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/27,7.371095249999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/11,10.038033340280837 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/04,3.206580154666664 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/26,4.91699583504334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/03,2.700290525 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/07/27,7.371095249999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/05,3.282943199999993 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/27,2.856711196538458 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/04,2.480831825000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/05,3.282943199999993 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/08/27,2.856711196538458 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/04,2.480831825000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/07,8.593190141666657 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/28,3.3832324247391625 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/21,2.7786287916666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/06,2.3562587740384604 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/29,5.26182652166666 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/07,8.593190141666657 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/28,3.3832324247391625 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/21,2.7786287916666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/06,2.3562587740384604 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/09/29,5.26182652166666 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/11/08,5.5639750001925 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/23,8.969938375809283 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/11/07,3.951983397435897 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/11/08,5.5639750001925 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/10/23,8.969938375809283 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/11/07,3.951983397435897 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/12/09,2.9072272500000014 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/12/09,2.9072272500000014 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/12/25,21.84966666666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2016/12/25,21.84966666666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/04,21.75304166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/04,21.75304166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/19,10.888574999785003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/03/08,12.46114242338083 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/20,14.718691666571669 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/19,10.888574999785003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/03/08,12.46114242338083 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/02/20,14.718691666571669 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/03/23,22.44243333333334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/04/09,16.22378125034249 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/03/23,22.44243333333334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/04/09,16.22378125034249 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/04/24,20.745441678166696 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/05/11,5.2687608386666565 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/04/24,20.745441678166696 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/05/11,5.2687608386666565 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/06/11,9.475441666521672 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/06/11,9.475441666521672 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/05,6.940391668306657 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/05,6.940391668306657 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/29,14.608937499235 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/30,4.040740024999993 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/29,14.608937499235 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/07/30,4.040740024999993 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/30,11.372770450072496 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/23,9.899762501425002 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/31,3.0959407700000003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/30,11.372770450072496 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/23,9.899762501425002 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/08/31,3.0959407700000003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/10,8.01054167946918 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/01,5.5951056207692265 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/09/24,8.044884090217504 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/02,2.3542066798076906 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/09/23,5.388525000720003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/10,8.01054167946918 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/01,5.5951056207692265 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/09/24,8.044884090217504 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/02,2.3542066798076906 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/09/23,5.388525000720003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/11,17.413575013895002 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/10,3.125900000000008 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/25,5.924721381999994 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/11,17.413575013895002 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/10,3.125900000000008 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/10/25,5.924721381999994 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/12/04,11.577030488671667 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2017/11/26,3.101700000000004 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/01/29,21.75304166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/05/05,10.723966731066673 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/06/07,6.138245500888336 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/05/29,6.4144145875783325 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/05/30,4.908975000217504 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/07/09,5.653600000312505 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/07/08,7.301266668579151 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/07/01,2.322925 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/06/22,2.502375830769229 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/08/10,3.383933299999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/08/09,2.8345682000000005 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/09/03,2.585402249999999 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/08/25,4.592604169099161 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/09/27,16.536399999999993 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/10/05,4.444398349666664 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/12/07,22.76205 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2018/12/23,10.250150000000014 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/02/09,14.174308333285827 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/02/10,9.526449999595007 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/04/23,7.950802276666661 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/05/08,6.074430693242494 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/04/22,2.0839816249999963 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/06/01,9.338725000370006 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/06/09,2.564924700000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/06/26,16.013033349528346 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/07/04,16.271650000072484 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/08/04,8.511335422989161 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/07/28,9.287787500637512 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/08/05,2.5423791750000007 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/07/27,5.309467108453336 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/09/05,4.204622719999995 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/08/29,3.807217426666661 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/09/06,5.507095464999995 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/09/21,3.709973483478332 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/10/08,5.693048810769224 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/10/23,6.593416657544172 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/12/11,2.3858159000000025 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2019/11/25,2.5813826682692302 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/02/21,22.451158333333343 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/02/20,10.65350833311834 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/04/01,5.289002359999997 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/05/02,8.510791673639154 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/04/25,8.252557573333334 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/05/03,4.707800019999998 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/05/27,4.591520302999991 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/06/11,8.933150000047508 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/05/26,7.758486367762507 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/07/05,8.804199995004996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/06/28,2.6651265166666662 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/07/06,2.3496655124999988 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/07/30,2.702668060000002 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/07,9.231929500000009 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/31,2.4177182000000013 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/22,9.269279600138336 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/09/08,3.318075000095005 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/30,4.749906820289995 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/08/23,4.707329550072496 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/10/09,5.356607627714278 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/10/10,12.007858338795836 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/11/10,11.252933982380943 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/10/25,13.596969586738314 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2020/12/29,21.66638333333335 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/01/29,22.47810000000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/02/06,12.108741666851667 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/01/30,21.66638333333335 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/03/02,22.47810000000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/04/03,12.227995312129163 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/03/27,9.779150000000014 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/04/04,21.97986666665417 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/05/06,6.213198483333319 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/06/06,15.074300018017508 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/06/07,3.187602250000003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/05/29,18.170141666301667 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/06/23,4.300107578846149 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/07/24,9.742008335863332 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/08/10,3.9175590901449935 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/07/25,2.501725000047497 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/08/25,4.961291667941671 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/09/11,12.161984100000002 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/08/26,16.54394791953666 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/09/26,10.829556254450008 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/06,4.349336365142497 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/09,7.607201518333325 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/05,6.032744240769224 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/10/29,2.4697883307692283 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/29,14.284533333333332 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/24,3.418494586721611 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/11/21,6.625925098666658 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2021/12/24,24.070899999999988 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/02/01,22.26459166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/01/25,22.47810000000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/04/06,11.39635208855834 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/03/30,22.26459166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/04/06,7.406258347980834 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/03/29,21.75304166666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/03/22,24.115272917104196 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/09,4.194085765333328 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/09,2.530763650000003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/08,8.261408342605824 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/01,2.843682780000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/04/30,3.794206066666663 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/04/23,5.025793189502499 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/26,8.327345841560833 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/25,6.174475002800002 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/05/24,5.161547732229164 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/07/04,20.269233332598343 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/06/29,4.705534079999994 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/07/03,7.462279166736677 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/06/26,23.18429394137917 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/06/25,14.54595000015499 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/10,8.35488333419834 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/08/24,8.195070831780836 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/08/29,10.98419849170332 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/08/28,3.357617154999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/09,4.801524999325003 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/30,15.079924999999983 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/29,3.291052963500832 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/22,4.706584866859158 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/09/21,4.100952250047502 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/31,8.31561249893251 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/26,11.650408339400842 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/11/09,3.387937686721612 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/11/08,3.6654862367216112 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/31,21.295625000352505 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/10/24,7.068450000579994 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/12/10,6.625840989999995 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/12/02,4.533876897883332 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2022/11/24,4.301711250000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/02/04,22.18061666666668 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/04/01,13.486358333238336 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/09,17.315933347133342 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/31,3.577180907999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/26,3.344076362999997 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/06/05,11.867258333380825 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/28,7.362825000142508 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/05/27,15.001483333453317 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/06/22,7.923418180144998 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/07/06,2.532797750000001 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/06/21,4.118633254807691 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/10,17.247816667816664 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/05,12.06146875412248 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/07/30,2.791802249999999 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/07/23,10.7071236112761 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/01,6.547762876904169 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/27,7.625412499977515 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/01,3.115718200072497 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/31,3.3108546099999963 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/24,6.29560000106 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/08/23,2.9765434107692283 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/28,10.427591701881658 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/23,8.815539194904169 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/10/03,6.548474999999996 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/10/02,4.757006959999995 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/09/25,19.10487083323834 -"Colby, Lake",9523433,-74.15360747248555,44.34300736212715,2023/11/03,5.326881859999994 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2014/12/29,12.38110833347083 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/01/22,23.94899999999999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/06,21.75304166666668 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/01/22,23.94899999999999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/06,21.75304166666668 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/03/11,11.921608333918332 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/23,22.351800000000008 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/22,11.596399999690007 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/03/11,11.921608333918332 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/23,22.351800000000008 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/02/22,11.596399999690007 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/04/03,10.314208333095849 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/04/03,10.314208333095849 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/05,24.582312500902507 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/04/28,6.041958332830834 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/06,9.68356667586666 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/05,24.582312500902507 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/04/28,6.041958332830834 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/06,9.68356667586666 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/06,4.495785178959048 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/30,9.838399987164996 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/07,13.42323750031 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/29,5.718175000072502 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/22,13.520233375883349 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/06,4.495785178959048 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/30,9.838399987164996 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/07,13.42323750031 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/29,5.718175000072502 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/05/22,13.520233375883349 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/07/08,15.750704165901668 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/22,7.353731664779165 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/07/08,15.750704165901668 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/06/22,7.353731664779165 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/09,3.9891265466666574 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/02,9.490350003397484 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/10,6.987450000360005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/07/25,11.562649999999978 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/09,3.9891265466666574 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/02,9.490350003397484 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/10,6.987450000360005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/07/25,11.562649999999978 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/03,8.647437498875014 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/25,3.434506062464161 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/11,2.320580075000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/03,8.647437498875014 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/08/25,3.434506062464161 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/11,2.320580075000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/26,3.427065059999994 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/10/04,4.496284099999999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/27,2.728406353434067 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/26,3.427065059999994 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/10/04,4.496284099999999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/09/27,2.728406353434067 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/05,2.9137750000000047 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/05,2.9137750000000047 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/29,5.237488640665007 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/22,7.620554499701902 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/30,12.60755833333332 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/29,5.237488640665007 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/22,7.620554499701902 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2015/11/30,12.60755833333332 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/01/24,21.675758333333352 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/01/24,21.675758333333352 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/02/26,11.807208333918332 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/02/26,11.807208333918332 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/05,8.619270316333324 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/03/29,10.998491666286686 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/05,8.619270316333324 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/03/29,10.998491666286686 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/07,11.00930835198584 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/30,4.186823493333325 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/21,7.778073500705834 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/29,18.12966250018999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/22,4.854400000144999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/07,11.00930835198584 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/30,4.186823493333325 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/21,7.778073500705834 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/29,18.12966250018999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/04/22,4.854400000144999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/23,4.42601669583 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/31,5.955939783184995 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/24,4.417135716688211 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/23,4.42601669583 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/31,5.955939783184995 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/05/24,4.417135716688211 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/03,5.94427500263751 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/06/24,2.8112159149999973 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/11,7.105854927147487 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/06/25,2.306333965000003 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/03,5.94427500263751 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/06/24,2.8112159149999973 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/11,7.105854927147487 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/06/25,2.306333965000003 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/11,14.79447502530001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/04,2.7799075553571417 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/26,4.536278163268574 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/03,3.5932983549999955 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/27,4.863185564999993 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/11,14.79447502530001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/04,2.7799075553571417 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/26,4.536278163268574 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/03,3.5932983549999955 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/07/27,4.863185564999993 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/05,3.6657886499999934 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/27,2.971082444666664 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/04,11.51022651666667 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/05,3.6657886499999934 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/08/27,2.971082444666664 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/04,11.51022651666667 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/07,3.502730318333329 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/28,12.631191696734168 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/21,2.742727881666665 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/06,2.515944180769228 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/29,3.563497729999995 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/07,3.502730318333329 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/28,12.631191696734168 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/21,2.742727881666665 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/06,2.515944180769228 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/09/29,3.563497729999995 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/11/08,5.594857634380944 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/23,7.203684735714282 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/11/07,2.8297849182692283 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/11/08,5.594857634380944 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/10/23,7.203684735714282 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/11/07,2.8297849182692283 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/10,6.921295829790852 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/09,2.9860000000000064 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/10,6.921295829790852 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/09,2.9860000000000064 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/01/02,22.34590833333334 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/25,13.032908333238336 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/01/02,22.34590833333334 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2016/12/25,13.032908333238336 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/04,11.011849999785005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/04,11.011849999785005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/03/08,15.164218750752507 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/27,13.158183333518329 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/20,15.013224999905008 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/03/08,15.164218750752507 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/27,13.158183333518329 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/02/20,15.013224999905008 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/03/23,22.30574166666668 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/03/23,22.30574166666668 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/04/24,7.454593943333331 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/05/11,2.2751316250000007 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/04/24,7.454593943333331 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/05/11,2.2751316250000007 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/06/11,4.6348617847598765 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/06/11,4.6348617847598765 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/05,2.8907409500000005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/05,2.8907409500000005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/29,14.485508344905824 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/30,3.1906915025 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/29,14.485508344905824 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/07/30,3.1906915025 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/08/30,3.711325763840829 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/08/23,2.90394848900083 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/08/30,3.711325763840829 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/08/23,2.90394848900083 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/10,2.8993885013333305 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/01,3.9450879666666583 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/09/24,8.82606514673917 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/02,2.557729311538461 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/09/23,4.703575000047502 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/10,2.8993885013333305 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/01,3.9450879666666583 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/09/24,8.82606514673917 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/02,2.557729311538461 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/09/23,4.703575000047502 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/11,13.579125701534442 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/10,12.56988333353332 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/25,11.75657500062499 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/11,13.579125701534442 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/10,12.56988333353332 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/10/25,11.75657500062499 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/12/04,3.5232479169616737 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/27,6.47189999605501 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2017/11/26,2.3429750000000014 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/05/05,4.957624999999996 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/05/29,7.289170828865831 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/05/30,2.8212901500000003 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/07/09,5.013121400072484 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/07/08,20.612241666666662 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/07/01,6.860675000790001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/06/22,2.852677999999999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/08/10,3.361686652435894 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/08/09,5.447700000072508 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/08/02,6.913225000072498 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/09/03,2.890925000000004 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/08/25,14.172999999354982 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/10/05,2.212665749999997 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/12/07,22.76205 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/12/08,21.791766666666685 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2018/11/22,2.646225000000004 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/02/01,21.919450000000012 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/01/25,10.97447499926001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/03/06,22.407050000000005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/02/26,21.794191666666684 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/04/23,4.4722803183333255 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/05/08,10.248308358633324 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/04/22,15.523548530366686 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/06/10,9.25617082901333 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/06/01,12.082274999324996 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/06/09,2.870702140000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/07/03,3.5939212249999968 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/07/04,14.45057500007248 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/08/04,7.53736666827167 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/07/28,8.510091859893324 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/08/05,3.583100000000008 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/07/27,3.5428962134058266 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/09/05,4.225165206666656 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/08/29,9.500841668614171 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/09/06,3.931754604999996 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/09/21,6.799525753333331 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/10/08,6.322887460769227 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/09/29,16.231391667466653 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/11/01,7.056070019005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/12/10,6.977724997747514 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/12/11,13.983250001470028 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2019/11/25,4.033919884615385 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/02/05,22.47810000000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/03/07,21.66638333333335 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/02/20,12.958024999737502 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/03/31,8.287804167424182 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/04/01,10.786731259077508 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/05/02,13.55175836783334 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/04/25,6.471734099999995 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/05/03,3.7187810616666663 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/05/27,2.93114850847833 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/06/04,6.517879173186666 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/05/26,3.005188600000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/06/28,4.2966125049300015 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/07/06,2.6545394490384604 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/06,7.612325001822499 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/07,5.592570454999995 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/22,5.382724251555829 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/09/08,2.775675000000005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/30,2.975377250000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/08/23,4.222504549999993 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/10/09,5.112884159999988 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/10/10,13.867183336983338 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/11/10,9.828253682380945 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/10/25,13.880110423709151 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2020/12/29,12.534783333470832 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/03/11,24.44116666666665 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/03/02,22.539900000000006 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/04/03,11.993329167576656 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/05/06,3.90519091 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/04/27,16.994258333503314 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/06/06,11.34746250024 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/06/07,2.754952250000004 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/07/09,13.065250000557496 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/06/23,3.856829591153842 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/08/02,7.854641660931674 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/08/10,7.663511360072498 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/09/10,6.831699992462509 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/08/25,4.620883334800838 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/09/11,2.7518272500000034 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/08/26,3.391277250000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/09/26,11.069783333333325 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/06,11.724441696786672 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/05,4.678221192307692 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/10/29,2.326449436126372 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/29,6.575774996900012 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/12/07,13.433624999784982 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/24,3.566154630769232 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/11/21,4.428997529999997 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2021/12/24,12.844333333333337 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/01/25,21.69402500000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/02/02,21.675758333333352 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/01/24,21.75304166666668 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/02/26,23.439241666666657 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/04/06,8.536808332953347 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/04/06,11.55854167196168 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/03/29,21.791766666666685 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/09,2.443945300000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/08,7.48044167816666 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/01,4.910146233333327 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/04/30,8.906833343683328 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/04/22,4.658131000072498 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/31,21.216616666761684 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/26,6.643409093990009 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/05/25,4.051002299999992 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/04,3.254697729999996 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/06/29,4.5605819000724885 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/11,14.978025000144976 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/03,8.490341678724151 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/08/05,2.806325000000004 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/28,7.46628400000001 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/07/27,4.282225000362495 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/09/10,8.168262876951673 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/08/24,3.7358795533775 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/08/29,13.295400000499995 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/08/28,2.5710977 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/09/30,9.595275000192482 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/09/29,3.089025000000005 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/10/31,9.434675002640004 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/10/26,15.619750000555 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/11/09,2.597719080769229 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/11/08,2.3463112000000006 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/12/10,4.044761089999998 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/12/02,15.784908333733329 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2022/11/24,3.982856819999999 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/04/10,12.30624999990499 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/04/09,12.872599999952495 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/04/02,11.492791666476672 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/09,15.039211668249154 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/11,4.909943184999996 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/04/25,3.396925000000006 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/31,2.8775324347391678 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/26,3.2022846949566657 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/06/05,12.784958333380825 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/28,5.217850000550004 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/05/27,22.28133333342836 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/06/22,2.873527889739167 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/07/06,4.431649999999992 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/06/21,3.1469148249999987 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/08/05,3.951138278823274 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/07/31,7.115450000434997 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/07/23,4.177721213333325 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/07/22,9.932800000214993 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/06,6.555164289047609 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/01,7.453836361012503 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/09,2.888625000000004 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/01,3.775975000144994 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/08/31,4.522197729999991 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/08/23,3.0550386499999966 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/10/03,16.975225009200003 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/28,12.595261805337133 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/23,3.6691128868116607 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/10/03,3.574986349999997 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/10/02,2.9869852999999997 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/09/25,17.370325000072484 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/11/03,9.729041671266662 -Rollins Pond,9523517,-74.4138535147157,44.31052126020853,2023/11/28,21.724299999375017 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/01/05,4.19891154679256 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2014/12/29,2.5551374999999994 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/02/07,22.663366666666672 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/02/07,22.663366666666672 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/03/11,11.177549999785006 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/02/23,22.47810000000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/03/11,11.177549999785006 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/02/23,22.47810000000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/04/03,12.225437507257489 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/04/03,12.225437507257489 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/05,9.146891673519177 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/06,6.412575000332489 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/05,9.146891673519177 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/06,6.412575000332489 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/06,4.6154076141518985 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/30,8.914416671314166 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/07,12.746649999784983 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/29,2.584706650000004 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/22,3.157554500000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/06,4.6154076141518985 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/30,8.914416671314166 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/07,12.746649999784983 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/29,2.584706650000004 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/05/22,3.157554500000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/07/08,19.990083333070825 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/30,4.125683456615713 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/07/08,19.990083333070825 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/06/30,4.125683456615713 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/09,3.6605605049999927 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/02,21.24009166694916 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/10,3.960768624999994 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/07/25,10.10475000023749 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/09,3.6605605049999927 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/02,21.24009166694916 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/10,3.960768624999994 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/07/25,10.10475000023749 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/25,3.280855154739163 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/11,2.647325000000005 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/02,14.93850000016751 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/26,5.933096213718329 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/25,3.280855154739163 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/11,2.647325000000005 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/02,14.93850000016751 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/08/26,5.933096213718329 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/05,9.167024993000007 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/26,5.143337869688639 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/04,2.30562354230769 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/27,2.5962105807692293 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/05,9.167024993000007 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/26,5.143337869688639 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/04,2.30562354230769 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/09/27,2.5962105807692293 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/29,3.003225249999998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/10/29,3.003225249999998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/12/08,3.228061216974359 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/29,15.81047510120003 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/22,2.9457462533333345 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/12/07,2.7858500000000053 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/30,2.7620612307692314 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/12/08,3.228061216974359 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/29,15.81047510120003 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/22,2.9457462533333345 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/12/07,2.7858500000000053 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2015/11/30,2.7620612307692314 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/01/25,11.764849999809998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/01/25,11.764849999809998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/02/26,11.592208332903336 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/03/05,9.278824999212508 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/02/26,11.592208332903336 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/03/05,9.278824999212508 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/05,6.486333338333331 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/03/29,5.628024996345013 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/05,6.486333338333331 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/03/29,5.628024996345013 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/30,3.7211327219999952 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/21,8.0738068246725 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/30,3.7211327219999952 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/04/21,8.0738068246725 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/05/23,14.028308344308336 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/05/31,6.573660420584405 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/05/23,14.028308344308336 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/05/31,6.573660420584405 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/03,8.873658347468325 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/06/24,4.442029530217495 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/11,3.578871854999991 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/06/25,2.835172389102562 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/03,8.873658347468325 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/06/24,4.442029530217495 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/11,3.578871854999991 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/06/25,2.835172389102562 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/11,9.05265000934499 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/04,4.04660818299999 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/26,4.021648495276668 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/03,2.9792756750000007 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/27,3.8479424466666607 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/11,9.05265000934499 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/04,4.04660818299999 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/26,4.021648495276668 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/03,2.9792756750000007 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/07/27,3.8479424466666607 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/05,3.3968499999999926 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/27,2.661475758333332 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/04,10.810118180095012 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/28,5.247281824934166 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/05,3.3968499999999926 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/27,2.661475758333332 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/04,10.810118180095012 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/08/28,5.247281824934166 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/07,4.333559745714277 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/28,2.867874841333331 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/21,2.880067421666664 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/06,2.147713549999997 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/29,4.632510539999991 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/07,4.333559745714277 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/28,2.867874841333331 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/21,2.880067421666664 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/06,2.147713549999997 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/09/29,4.632510539999991 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/08,3.094309109999999 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/23,3.6805235092316697 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/07,2.5215840182692286 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/08,3.094309109999999 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/10/23,3.6805235092316697 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/07,2.5215840182692286 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/12/09,16.653594711558327 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/23,6.782610156730758 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/12/09,16.653594711558327 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/11/23,6.782610156730758 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/01/11,11.189828344590824 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/01/02,9.9973499998675 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/12/25,4.353558777884613 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/01/11,11.189828344590824 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/01/02,9.9973499998675 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2016/12/25,4.353558777884613 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/04,21.75304166666668 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/04,21.75304166666668 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/19,8.701983332858347 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/03/08,17.841500005074998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/27,11.639408333718327 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/20,14.816216666571677 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/19,8.701983332858347 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/03/08,17.841500005074998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/27,11.639408333718327 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/02/20,14.816216666571677 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/03/23,22.304499999355013 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/03/23,22.304499999355013 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/04/24,8.191383336714168 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/04/24,8.191383336714168 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/06/11,7.538004160744167 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/05/27,3.79104917884615 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/06/11,7.538004160744167 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/05/27,3.79104917884615 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/05,2.464358975000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/06/28,6.64146923076923 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/05,2.464358975000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/06/28,6.64146923076923 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/29,17.499345832903323 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/22,7.919356664551682 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/30,3.384250356410254 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/29,17.499345832903323 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/22,7.919356664551682 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/07/30,3.384250356410254 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/08/30,4.010590910217495 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/08/23,10.404083344928338 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/07,20.44492499956998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/08/30,4.010590910217495 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/08/23,10.404083344928338 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/07,20.44492499956998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/10,11.721570833268345 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/01,3.2197892499999954 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/24,4.250123106666669 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/02,2.852022916895604 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/23,4.096279170219164 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/10,11.721570833268345 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/01,3.2197892499999954 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/24,4.250123106666669 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/02,2.852022916895604 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/09/23,4.096279170219164 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/11,4.804557450714279 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/10,3.1717500000475 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/25,2.7781772500000024 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/11,4.804557450714279 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/10,3.1717500000475 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/10/25,2.7781772500000024 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2017/11/27,9.75147500230001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/05/05,4.764919328422497 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/05/29,4.599025000385 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/05/30,3.976648830769221 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/07/09,4.292950002972503 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/07/08,13.079116665304172 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/06/22,7.739691683621654 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/08/10,3.092559209999997 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/08/09,3.049675000000005 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/09/03,2.9230317500000047 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/08/25,2.903927250000004 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/09/27,3.979320499999994 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/10/05,3.751721213333324 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/12/07,8.037072494362494 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/11/22,3.347175000095005 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/01/01,24.44116666666665 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2018/12/23,10.315350005967504 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/02/09,15.782599999999988 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/02/10,12.974258333238335 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/01/25,21.750616666666684 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/03/06,9.72751666666668 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/02/26,21.675758333333352 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/04/23,10.476272019798328 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/05/08,5.550009102300002 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/04/22,2.604831749999997 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/06/09,7.1154666737116505 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/06/26,14.610500016172503 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/07/28,7.959102285537499 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/08/05,3.2000023549999974 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/07/27,4.0072795000724994 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/08/29,3.4979431703624964 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/09/06,3.374591230769225 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/10/08,2.5442573365384638 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/09/29,4.473500000072502 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/10/24,3.2879399999999976 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/12/03,9.66349063332812 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/12/11,2.6135059557692286 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2019/11/25,3.241568653846156 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/02/29,21.75304166666668 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/04/01,10.352216669224171 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/04/25,3.0822916733333288 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/05/03,3.906496233333328 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/06/11,3.542850000000008 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/06/04,6.069833340258324 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/05/26,5.333821213405834 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/06/28,7.140775421051664 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/07/06,2.777184094999998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/07/30,3.317891191895605 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/08/07,3.931069149102561 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/08/31,2.9644435996794885 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/08/30,3.294404500119998 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/08/23,5.040800000217498 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/10/10,13.36300416666666 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/09/24,4.800950000985001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/11/03,6.663049998160008 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2020/12/29,2.94773052403846 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/02/06,13.556358333285834 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/01/30,21.867666666666683 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/03/27,6.217924995655014 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/03/26,3.827700000000005 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/05/06,2.625973125000004 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/06/07,5.472950000217498 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/05/29,13.057633333533316 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/06/23,3.5517185930769184 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/08/02,3.88825228012 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/07/25,7.868025000217496 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/09/11,4.298699999999991 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/08/26,3.5288841000724926 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/06,3.86964940033333 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/09,3.286437720769227 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/05,2.5812045000000023 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/10/29,2.779524448626372 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/24,2.412564555769228 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/11/21,2.5060208500000014 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/12/24,12.351041666666664 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2021/12/23,3.1877420240384606 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/01/25,22.663366666666672 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/02/02,21.83503333333335 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/02/26,23.439241666666657 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/02/26,22.23312500000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/04/06,9.16787210021833 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/03/29,21.88613333333335 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/03/22,16.70456742596585 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/05/09,3.3013925903333297 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/05/09,2.575232225000004 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/05/01,2.667336840000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/04/30,4.452300000000003 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/05/25,3.685847799999993 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/07/04,3.672739393405828 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/06/29,13.730583355880832 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/06/26,2.7923954250000027 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/06/25,5.691198225015707 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/07/28,3.225727250000006 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/07/27,4.126624999999994 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/08/29,6.240902270072497 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/08/28,2.4658703499999994 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/09,7.117749993875006 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/22,6.769464996367508 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/08,2.734352870000001 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/30,2.5965628932692306 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/29,3.2279067500725 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/22,7.090354500047498 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/09/21,2.876561000000002 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/31,3.6537506547391625 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/26,16.96032500075499 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/11/09,2.9355229486263723 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/11/08,2.417344080769229 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/11/01,22.15308333328585 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/10/31,4.367714778504997 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/12/10,2.828632250000002 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/12/02,3.951752963380836 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2022/11/24,2.3505729750000044 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/10,13.274883333333348 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/09,19.38867083549584 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/02,13.03784166657166 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/01,12.076900000142505 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/09,14.13881666666668 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/11,4.301648214515712 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/04/26,12.652175000145007 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/31,4.277203638289993 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/26,2.6143301447391667 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/06/05,12.88354166695166 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/05/28,5.729275000192497 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/06/22,8.3777613601925 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/07/07,10.361287500237491 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/07/06,4.861950000672495 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/06/21,3.147629500000002 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/10,16.141679166571656 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/05,2.4856234900733325 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/07/30,4.820131820192494 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/07/23,3.6329250000000046 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/01,6.981013630192499 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/09,3.2521954599999963 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/01,7.328684090842506 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/31,4.820284109999988 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/24,2.9203818499999983 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/08/23,2.43104535 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/28,9.201395834885838 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/23,5.609454167004169 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/10/02,3.6910712183333287 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/09/25,12.396933333380815 -Taylor Pond,9527491,-73.85660467534976,44.48529819669992,2023/11/03,2.794664787499999 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2014/12/29,8.73158473454897 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/06,4.726998869744163 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/06,4.726998869744163 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/30,6.0449968250050015 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/22,4.659329171299167 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/30,6.0449968250050015 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/05/22,4.659329171299167 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/08/02,17.33874999999999 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/08/02,17.33874999999999 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/03,6.721295817963339 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/11,3.3683725999999985 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/08/26,5.5253522500000045 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/03,6.721295817963339 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/11,3.3683725999999985 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/08/26,5.5253522500000045 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/10/05,4.319625009999992 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/27,3.066248261538458 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/10/05,4.319625009999992 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/09/27,3.066248261538458 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/11/22,4.964785229816849 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/11/30,4.644175000407498 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/11/22,4.964785229816849 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2015/11/30,4.644175000407498 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/03/29,9.603366696566688 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/03/29,9.603366696566688 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/04/30,8.368266670861672 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/04/30,8.368266670861672 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/05/24,18.369825001197523 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/05/24,18.369825001197523 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/03,6.110750003020006 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/11,4.259018179999995 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/06/25,5.284609089999998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/03,6.110750003020006 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/11,4.259018179999995 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/06/25,5.284609089999998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/08/04,12.85232500927251 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/27,5.320234092372504 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/08/04,12.85232500927251 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/07/27,5.320234092372504 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/05,3.146386359999998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/08/28,15.354000000309991 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/05,3.146386359999998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/08/28,15.354000000309991 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/10/07,3.192103806666664 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/21,3.2599553033333284 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/29,3.4473548107692262 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/10/07,3.192103806666664 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/21,3.2599553033333284 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/09/29,3.4473548107692262 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/11/08,5.004558363333327 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/10/23,3.330777259999997 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/11/08,5.004558363333327 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2016/10/23,3.330777259999997 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/03/08,2.9888272500000026 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/03/08,2.9888272500000026 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/04/09,15.061758349393337 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/04/09,15.061758349393337 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/06/04,14.219170833855838 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/05/27,4.550350230769222 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/06/04,14.219170833855838 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/05/27,4.550350230769222 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/06,17.90687916671417 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/06,17.90687916671417 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/07,10.911050004814983 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/22,22.717966666809165 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/30,2.419213550000001 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/07,10.911050004814983 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/22,22.717966666809165 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/07/30,2.419213550000001 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/23,6.4534500002399975 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/31,3.329375000000007 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/23,6.4534500002399975 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/08/31,3.329375000000007 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/10/10,5.717790831060836 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/09/24,5.334446972099169 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/10/02,3.0435946923076886 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/10/10,5.717790831060836 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/09/24,5.334446972099169 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/10/02,3.0435946923076886 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/11/11,3.982428058333328 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2017/11/11,3.982428058333328 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/05/30,7.214623507214167 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/07/09,4.56713563324917 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/07/01,13.681133333405828 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/08/10,6.783325000700001 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/09/03,5.817333715300825 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2018/10/05,2.4633589 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/02/10,10.991791666524175 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/03/06,22.447608333333346 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/02/26,13.572316666571666 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/05/09,6.880364995032501 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/04/23,10.842508337980826 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/06/26,6.759404766274998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/07/28,6.9911000120275055 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/08/05,4.66631212333333 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/09/06,4.441868179999995 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/10/08,4.605767349999994 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/11/01,3.5002417042452345 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/10/24,3.808471541666661 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/12/11,11.847485066015002 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2019/11/25,3.4295000000000027 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/02/05,23.720699999999987 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/04/01,5.187969269999996 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/04/25,6.841087128478332 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/05/03,5.292925999999994 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/05/27,6.059401513743335 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/06/04,7.728450000144999 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/07/06,2.8283001807692294 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/08/07,2.681985486538461 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/08/31,3.8124621233333262 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/10/10,13.549200001250007 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/09/24,5.282850000792508 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/11/03,6.071645824795848 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/01/06,10.120108333333354 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2020/12/29,11.65957086795333 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/03/11,10.55460833311834 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/05/06,4.937174999999994 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/06/07,6.441087502059991 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/05/22,11.49220000023749 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/06/23,4.504456819999993 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/08/02,6.981437498410008 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/08/10,16.658833347133342 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/07/25,7.574875000144996 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/09/11,15.11971666665166 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/08/26,8.940400000522502 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/11/06,6.247902281739165 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/11/09,4.077421972149165 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/10/29,2.350137030357141 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2021/12/24,12.02668333333333 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/01/25,24.072216666666648 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/02/02,21.88613333333335 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/01/25,22.23439166666668 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/03/30,9.578849998830025 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/03/23,6.015474995837515 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/03/22,8.170918754897498 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/05/09,8.406587876666666 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/05/09,4.893613639999993 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/05/01,3.349366834999999 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/04/23,4.55995417045416 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/06/10,2.676506749999998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/05/25,8.233966667984143 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/06/29,10.81972500529998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/07/04,2.8098022500475004 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/06/26,9.635182589717486 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/07/28,3.595753033478326 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/07/28,6.2833000000725 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/08/31,2.9262083116666635 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/08/29,8.198325001532483 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/10/09,6.38617499840501 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/10/04,18.26326666665165 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/10/08,2.842758249999997 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/09/30,5.909500000647503 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/09/22,2.6192817500000016 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2022/11/09,2.767524249999998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/02/27,22.507050000000007 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/04/10,11.802029174011665 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/04/26,10.672833337558329 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/05/26,7.917302270964998 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/06/05,18.91272499989248 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/05/28,3.754200000409994 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/07/04,3.874428200797493 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/06/21,5.177816669299167 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/08/05,7.060299986395003 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/07/23,14.596416671576684 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/09/01,8.517258333888343 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/08/22,2.7943809080724997 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/09/01,4.152961364999993 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/08/24,5.719700000072505 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/09/23,10.970379168729169 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/10/03,3.402343943333331 -Long Pond,9527543,-73.45261678767199,44.38506096713816,2023/11/28,7.540954500000005 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2014/12/29,11.646349999985 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/02/07,22.674233333333337 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/02/07,22.674233333333337 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/06,13.065075011499998 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/06,13.065075011499998 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/30,9.604854169349158 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/22,7.313434000000005 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/30,9.604854169349158 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/05/22,7.313434000000005 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/08/02,9.804225005612482 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/08/02,9.804225005612482 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/03,11.074868334568343 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/11,3.265725000000008 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/03,11.074868334568343 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/11,3.265725000000008 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/10/05,12.608850000145004 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/27,3.064226236538461 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/10/05,12.608850000145004 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/09/27,3.064226236538461 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/11/30,2.9013750000000056 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2015/11/30,2.9013750000000056 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/02/02,2.7883750000000047 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/02/02,2.7883750000000047 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/02/26,13.15727499932499 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/02/26,13.15727499932499 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/03/29,10.311691675914153 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/03/29,10.311691675914153 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/04/30,5.464421979039165 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/04/30,5.464421979039165 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/05/24,18.05396667126668 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/05/24,18.05396667126668 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/03,4.968592103842735 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/11,8.498920837310825 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/06/25,5.1397462135008345 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/03,4.968592103842735 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/11,8.498920837310825 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/06/25,5.1397462135008345 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/08/04,3.736761360434992 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/27,2.536599380000002 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/08/04,3.736761360434992 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/07/27,2.536599380000002 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/05,3.788190146884161 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/08/28,12.141387500237498 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/05,3.788190146884161 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/08/28,12.141387500237498 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/10/07,3.575496213333328 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/21,3.483499241666661 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/29,12.6703500008125 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/10/07,3.575496213333328 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/21,3.483499241666661 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/09/29,12.6703500008125 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/11/08,4.0839016603333285 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/10/23,6.580724996485008 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/11/08,4.0839016603333285 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2016/10/23,6.580724996485008 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/03/08,19.95060625020001 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/03/08,19.95060625020001 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/04/09,3.952181722499997 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/04/09,3.952181722499997 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/05/03,6.554745462609998 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/05/11,2.560302250000007 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/05/03,6.554745462609998 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/05/11,2.560302250000007 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/08/07,8.315769166384184 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/07/30,4.542733289999994 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/08/07,8.315769166384184 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/07/30,4.542733289999994 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/08/23,8.269347726884167 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/08/23,8.269347726884167 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/09/24,5.531534090047505 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/10/02,3.234875267490843 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/09/24,5.531534090047505 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/10/02,3.234875267490843 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/11/11,9.78208258830915 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2017/11/11,9.78208258830915 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/04/28,2.751425000000001 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/05/30,9.365266670201647 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/07/09,3.2989856137683296 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/07/01,9.63446666681166 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/08/10,6.315432578478334 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/09/03,5.62314583816999 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/10/05,2.504440825 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2018/11/22,13.828008333838351 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/02/10,11.263166666571676 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/03/06,22.47810000000001 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/02/26,20.867908333285857 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/04/23,4.714983335848332 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/08/05,3.761381819999995 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/08/29,6.54321895393918 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/09/06,12.926008333318316 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/10/08,3.5729615307692253 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/10/24,5.736238639999999 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/12/11,5.0117795 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2019/11/25,15.070241670116678 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/02/05,22.50608333333334 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/03/08,22.30029999935501 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/04/01,10.126006271797497 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/04/25,7.234231825072496 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/05/03,3.418400000000001 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/05/27,3.681853030652495 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/07/06,3.6837286999999934 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/08/07,14.992474999769982 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/09/08,4.863705304028333 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/08/23,4.226211360072495 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/10/10,14.92342500345 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2020/09/24,7.263739776907499 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/05/06,5.094699999999994 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/06/07,7.0736750002175 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/06/23,5.126775000192492 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/08/10,4.800825000502509 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/07/25,2.7578750000000047 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/09/11,3.2183918719999958 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/08/26,6.111675000310002 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/11/06,4.3338636473475 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/11/09,4.779923498333325 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/11/04,4.1558250001675 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/11/04,14.045250000144984 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/10/29,2.51660438076923 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/12/24,12.02668333333333 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2021/12/24,10.633891666666685 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/02/02,21.67155833333335 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/03/30,27.2744999999525 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/03/22,24.28491668046668 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/05/09,3.568165751405831 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/05/09,5.499063679999993 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/05/01,5.2802077799999925 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/06/10,3.1890750000000048 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/05/25,9.768741667936649 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/06/29,3.5892954499999963 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/07/04,5.864900000362496 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/06/26,4.855335729518211 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/07/28,4.173186399999991 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/07/28,3.7947840999999936 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/08/31,3.031647749999996 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/08/31,3.479685444871791 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/08/29,5.262175000312505 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/09,10.045434167431669 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/04,2.943924781538461 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/04,3.2856416739743577 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/08,2.5353023900000013 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/09/30,13.828841666666651 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/09/22,2.737002250000006 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/10/26,8.006777499464995 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2022/11/09,2.8627707057692287 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/02/21,10.65365833311834 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/04/10,12.232416666571655 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/04/26,5.402034474323332 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/05/26,6.456611360407501 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/05/28,15.11436666681167 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/07/04,3.64406061210166 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/07/04,3.9587000102899914 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/05,7.886033529722499 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/07/31,5.278875000185003 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/07/23,3.3328234633333333 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/01,10.405681709047622 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/27,6.63104999172501 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/22,9.459429177141663 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/22,8.808766670574164 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/09,4.095834099999997 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/01,3.844520449999997 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/08/24,5.406568200072496 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/28,11.2326500001625 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/09/23,3.7547908750724974 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/10/03,3.5134916733333266 -Lincoln Pond,9527715,-73.57446854060645,44.141312520551686,2023/11/28,3.1768250000000022 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2014/12/29,3.921702250000005 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/02/23,22.47810000000001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/02/23,22.47810000000001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/04/28,8.929083332130842 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/05/06,4.890774999999999 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/04/28,8.929083332130842 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/05/06,4.890774999999999 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/06/23,3.533900000119992 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/06/23,3.533900000119992 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/02,6.386825003265005 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/10,12.6109250002375 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/02,6.386825003265005 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/10,12.6109250002375 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/03,16.116912500745 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/11,2.64704504 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/26,4.466658401602558 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/03,16.116912500745 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/11,2.64704504 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/08/26,4.466658401602558 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/10/05,3.0890272699999963 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/27,3.172218972115383 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/10/05,3.0890272699999963 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/09/27,3.172218972115383 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/06,5.718099999210011 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/06,5.718099999210011 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/22,8.884570832673333 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/30,6.81587466153845 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/22,8.884570832673333 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2015/11/30,6.81587466153845 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/10,22.337341666666678 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/02,2.6597795199999994 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/10,22.337341666666678 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/02,2.6597795199999994 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/26,11.38622291732419 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/02/26,11.38622291732419 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/03/29,7.44453334622584 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/03/29,7.44453334622584 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/04/30,5.132426518668333 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/05/08,5.526102270747498 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/04/30,5.132426518668333 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/05/08,5.526102270747498 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/03,12.94536250690001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/11,4.181100000072495 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/06/25,4.016950044999996 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/03,12.94536250690001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/11,4.181100000072495 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/06/25,4.016950044999996 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/08/04,3.4156401740583293 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/27,3.736475571153848 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/08/04,3.4156401740583293 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/07/27,3.736475571153848 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/05,4.249207563333327 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/08/28,4.271700000797497 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/05,4.249207563333327 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/08/28,4.271700000797497 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/10/07,5.102493072380945 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/21,3.185629403333332 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/29,3.420134260769225 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/10/07,5.102493072380945 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/21,3.185629403333332 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/09/29,3.420134260769225 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/11/08,4.069668328666664 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/10/23,3.229423488695829 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/11/08,4.069668328666664 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/10/23,3.229423488695829 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/12/10,9.109504167926666 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/12/10,9.109504167926666 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/12/26,23.10539166666666 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2016/12/26,23.10539166666666 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/02/28,6.476999996240011 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/03/08,2.7584522500000066 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/02/28,6.476999996240011 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/03/08,2.7584522500000066 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/04/09,2.627274125000001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/04/09,2.627274125000001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/05/03,8.91911667236667 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/05/03,8.91911667236667 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/07,5.428911360965002 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/07/30,2.9206623798076925 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/07,5.428911360965002 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/07/30,2.9206623798076925 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/09/08,4.184623222226903 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/23,5.208024996187505 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/31,6.247000001160003 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/09/08,4.184623222226903 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/23,5.208024996187505 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/08/31,6.247000001160003 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/10/10,4.4510500133050055 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/09/24,4.087539393550829 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/10/02,2.957065235576921 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/10/10,4.4510500133050055 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/09/24,4.087539393550829 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/10/02,2.957065235576921 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/11/11,4.353155334999993 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2017/11/11,4.353155334999993 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/04/28,2.5906750000000005 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/05/30,9.51420492579249 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/07/09,4.817825000407499 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/07/01,6.910900759028327 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/08/10,3.312374999999994 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/08/26,7.299474988035004 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/09/03,4.79747502499999 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/09/27,3.4222772901449985 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/10/05,2.8566426851648345 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/12/08,3.612778230769231 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2018/11/22,4.1070179999999965 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/04/23,14.476441694266668 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/06/10,19.712362499617477 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/06/26,4.341509860072492 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/07/28,6.163750001297501 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/08/05,3.357493955769228 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/08/29,7.060715833093329 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/09/06,3.8942442307692233 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/09/30,3.3638431799999955 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/11/09,4.574916674834168 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/10/24,3.030890940000001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/12/03,9.864745847900824 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/12/11,3.5209400961538484 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2019/11/25,3.494306750072499 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/02/05,6.396699996885012 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/02/29,6.875024999785001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/04/01,3.5341366307692272 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/04/25,5.472565915072497 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/05/03,4.2080795 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/05/27,14.41580833352334 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/06/04,11.03395835226666 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/07/06,4.885681109615383 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/08/08,2.9713992466666665 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/07/30,8.260055497940822 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/08/07,2.838279350000002 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/08/31,2.4232613699999974 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/09/08,10.306400000237494 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/08/23,4.510159099999992 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/10/11,2.3500666634058334 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/10/10,5.800175000405004 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/09/24,12.504270833595836 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/10/27,9.875275000000014 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2020/12/29,18.53020833247335 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/01/22,11.434191665791666 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/03/04,9.012333333190824 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/04/05,9.590836369699993 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/05/07,9.53522337571428 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/05/06,5.0032000024899945 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/06/07,15.908079939027514 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/07/10,3.116599999999997 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/06/24,3.4464058948717917 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/06/23,5.637824742307687 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/08/11,7.402717273854986 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/08/02,4.841876515870834 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/07/26,5.050884101522495 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/09/03,3.189051992536629 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/09/11,3.389425000000008 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/08/26,4.407518200072492 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/11/06,18.157925016385025 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/11/09,5.153358341739159 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2021/10/29,3.141617754807692 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/01/25,11.518008333190842 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/03/23,6.411174994245013 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/03/22,14.690358342723366 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/09,6.871571966666665 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/09,3.197184189999997 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/01,2.7499201400000004 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/26,6.872752660433333 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/06/10,7.317575000434994 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/06/02,3.369404913333326 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/05/25,5.623521215013327 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/07/11,3.6396431799999966 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/06/29,3.549053786811664 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/06/26,5.789275000284991 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/08/02,6.549658321908343 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/07/28,3.2688127279999977 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/07/28,8.19159756180345 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/08/31,6.344171981782494 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/08/29,4.176724999999996 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/10/09,3.079736350000001 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/10/04,7.514941657901672 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/10/08,9.350225001007493 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/11/09,2.7281833999999985 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2022/12/27,6.748851278846139 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/02/27,10.305458333333352 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/04/07,3.634762143405829 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/04/10,3.351121458205126 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/04/02,2.3787081025000005 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/04/26,3.439074246739163 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/05/26,8.165186360240002 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/06/05,5.856025000214994 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/05/28,7.511659090572507 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/06/21,4.159799999999997 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/08/05,6.876379166976675 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/07/31,18.1779250597138 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/07/23,6.468425000240006 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/09/01,8.3702272700475 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/08/22,4.371773495217493 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/09/01,2.11294788576923 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/10/03,3.489420464999992 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/09/25,11.355174999999976 -Glen Lake,10313060,-73.6731709430236,43.36361475208498,2023/11/28,3.094322625 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2014/12/26,11.286546528015265 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/02/27,21.919450000000012 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/02/27,21.919450000000012 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/10,10.000790060970004 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/04/24,9.278700003215 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/02,4.986988278897498 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/02,4.776234420894993 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/04/25,12.473608370133343 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/10,10.000790060970004 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/04/24,9.278700003215 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/02,4.986988278897498 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/05/02,4.776234420894993 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/04/25,12.473608370133343 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/11,8.653337499262513 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/03,11.603650007640011 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/03,13.551400011772522 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/11,8.653337499262513 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/03,11.603650007640011 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/06/03,13.551400011772522 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/05,16.9720874992875 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/05,17.06460416595417 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/05,16.9720874992875 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/05,17.06460416595417 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/07,9.327174999682512 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/29,22.62150833357084 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/22,8.80960398738417 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/06,12.25019999999999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/06,12.591058333333324 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/30,9.110108351780823 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/07,9.327174999682512 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/29,22.62150833357084 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/22,8.80960398738417 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/06,12.25019999999999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/06,12.591058333333324 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/07/30,9.110108351780823 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/08,12.872047361111097 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/30,13.741506530125273 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/23,8.789400000300006 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/07,3.5084000000000053 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/07,3.037599999999998 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/31,10.29350753 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/22,25.08106667126667 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/22,26.119350004600005 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/08,12.872047361111097 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/30,13.741506530125273 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/23,8.789400000300006 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/07,3.5084000000000053 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/07,3.037599999999998 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/31,10.29350753 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/22,25.08106667126667 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/08/22,26.119350004600005 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/10/10,13.240339861158605 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/24,13.001958348688335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/23,15.285434089999978 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/23,14.510184090047485 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/10/10,13.240339861158605 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/24,13.001958348688335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/23,15.285434089999978 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/09/23,14.510184090047485 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/11/02,6.270042799054165 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/10/26,11.37108522064896 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/11/03,4.171003184615383 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/11/02,6.270042799054165 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/10/26,11.37108522064896 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2015/11/03,4.171003184615383 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/01/06,9.0208000004075 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/01/06,9.0208000004075 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/03/26,5.78434129927833 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/03/26,5.78434129927833 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/04/27,3.799827450769228 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/04/27,3.799827450769228 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/05/28,9.84467406221166 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/05/28,9.84467406221166 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/08,6.303799992555011 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/29,8.701983332678344 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/22,7.422450002085001 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/07,2.795502250000006 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/07,2.698075000000004 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/30,3.739584109999996 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/21,6.627708342580829 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/21,6.835541680466661 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/08,6.303799992555011 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/29,8.701983332678344 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/22,7.422450002085001 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/07,2.795502250000006 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/07,2.698075000000004 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/30,3.739584109999996 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/21,6.627708342580829 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/06/21,6.835541680466661 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/09,12.985410428369171 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/08,5.86962499999999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/08,9.495675000119997 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/23,12.23340416699915 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/23,12.740662500237484 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/09,12.985410428369171 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/08,5.86962499999999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/08,9.495675000119997 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/23,12.23340416699915 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/07/23,12.740662500237484 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/25,7.094349993430009 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/09,13.335992423665816 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/09,14.352141667046649 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/24,6.699335607685836 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/24,7.0683624970125 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/25,7.094349993430009 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/09,13.335992423665816 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/09,14.352141667046649 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/24,6.699335607685836 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/08/24,7.0683624970125 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/10/04,13.06468239820511 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/25,16.683741666809166 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/25,15.75497500018998 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/10/04,13.06468239820511 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/25,16.683741666809166 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/09/25,15.75497500018998 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/11/04,8.674813647187513 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/10/28,14.312572041393349 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/11/04,8.674813647187513 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/10/28,14.312572041393349 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/12/07,10.22763333311834 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/12/07,10.22763333311834 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/01/08,21.77565833333335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/12/23,21.67155833333335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/01/08,21.77565833333335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2016/12/23,21.67155833333335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/05,7.14442084735333 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/02/24,5.712324994947512 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/04,5.704153076923071 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/04,5.874766676923072 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/05,7.14442084735333 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/02/24,5.712324994947512 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/04,5.704153076923071 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/04,5.874766676923072 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/29,3.8283750000000074 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/03/29,3.8283750000000074 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/08,8.873266666334173 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/07,7.199611364634999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/07,5.462466674936662 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/08,8.873266666334173 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/07,7.199611364634999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/07,5.462466674936662 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/08,5.729400000500002 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/08,7.377916667429166 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/01,3.374252250000006 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/23,16.222275000720018 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/23,16.366025000420017 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/08,5.729400000500002 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/08,7.377916667429166 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/01,3.374252250000006 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/23,16.222275000720018 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/05/23,16.366025000420017 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/07/03,15.41640834943336 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/24,2.3991157500000027 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/24,4.4681885 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/07/03,15.41640834943336 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/24,2.3991157500000027 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/06/24,4.4681885 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/08/03,12.99164583526334 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/08/03,12.99164583526334 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/04,10.100166300934998 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/05,8.465224999955002 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/04,10.100166300934998 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/05,8.465224999955002 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/07,14.442525000379987 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/21,10.53009166973416 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/07,14.442525000379987 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/09/21,10.53009166973416 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/31,3.548147000344403 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/22,19.11509166800668 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/11/08,7.233387955641023 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/31,3.548147000344403 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/10/22,19.11509166800668 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/11/08,7.233387955641023 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2017/11/24,6.18815452 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/01/03,22.373925000000007 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/02/27,13.260333333095836 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/04/01,12.901683333570835 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/03/23,21.66638333333335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/05/02,3.9285624955374976 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/05/27,7.315041653326672 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/06/11,16.493475000310017 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/06/11,10.670012500914993 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/07/06,3.73553846153846 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/08/06,3.875104169561667 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/08/23,2.8957999999999977 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/10/09,11.915689582358334 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/09/23,31.324958335633355 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/10/10,12.070070480047486 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2018/11/11,10.810471910512812 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/01/06,2.9428000000250063 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/03/11,14.073725000657516 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/04/03,5.123654161851667 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/03/26,10.726116666924169 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/05/06,5.931214561999991 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/07,6.013522692307695 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/08,20.03596666661916 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/01,10.775281442346666 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/22,11.79855000294501 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/09,21.233383333238315 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/30,17.51852500031002 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/30,14.594491669426676 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/06/23,3.788715909999991 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/02,19.62277083333334 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/24,18.985761666809168 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/10,4.524188461585959 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/01,2.7205772500000065 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/01,12.986625000522492 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/07/25,10.807575002202489 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/09/10,20.88194333830584 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/09/03,8.103037506780003 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/08/25,5.686405308739169 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/09/11,4.561810439999997 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/10/05,23.540266669256667 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/09/27,11.58876818999998 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/11/06,16.613213618343607 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/10/28,16.71663112093362 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/10/29,4.013831829999996 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/12/08,6.248424994532512 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/11/30,8.258725001222487 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/12/24,11.467600001095024 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/12/23,3.845475000000005 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2019/12/23,3.1694000000000058 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/04/06,10.20872821199999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/08,4.444538629999992 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/01,7.9232833357283425 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/09,3.506845804102558 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/05/31,8.67456249988001 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/05/31,8.186808333510845 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/05/24,11.32959167356668 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/10,12.330375002010005 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/03,6.1457526577633335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/24,4.842291667044173 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/02,10.735466668329163 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/02,10.053741668234158 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/06/25,3.13947725 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/08/11,10.507837499317509 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/26,3.331628331470833 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/08/03,12.303733333333325 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/08/03,14.275766666951668 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/07/27,4.067000000072498 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/09/04,7.59767728999999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/09/04,4.997322789999996 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/09/28,7.695499999347513 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/09/21,22.09971166935166 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/10/06,10.601864797647496 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/10/06,13.117666666856657 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/11/08,11.206499027825265 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/10/23,10.588563752577503 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2020/10/31,8.657799998052495 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/01/11,6.461670432219162 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/01/10,2.693819230769235 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/02/11,21.867666666666683 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/02/11,21.867666666666683 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/04/09,8.349749998464995 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/05/11,3.527175000000005 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/05/02,4.229034013473334 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/05/02,4.601622800686665 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/06/04,2.772471982609164 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/05/27,5.432500000652493 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/07/05,19.08779166685668 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/07/05,19.106025000095 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/06/28,4.537675000047495 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/07,17.077605834630816 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/07/22,11.535112361783607 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/06,6.463411443270834 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/06,5.594126566927498 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/23,16.59359777807277 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/09/07,22.25543334023333 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/09/07,22.898108340233332 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/22,17.160908335728347 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/08/22,7.666000000095008 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/10/02,12.366475007069992 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/11/11,7.25249582736333 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/11/10,5.411487335333331 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/11/10,3.631933941666664 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/11/07,6.100051526153839 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/12/04,2.884875000000004 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2021/12/04,3.133994230769232 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/02/07,21.66638333333335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/01/29,10.568349999785006 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/01/22,21.66638333333335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/03/03,12.727616666189167 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/04/04,9.103983333623336 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/04/28,5.861750018447501 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/10,9.81627918255167 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/29,9.25662878347834 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/24,3.800010606739164 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/30,4.1036295 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/29,2.5688044999999984 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/05/29,2.749050000000001 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/02,12.502762499592498 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/27,4.10869851681988 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/09,12.908894705280836 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/08,12.22501458429084 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/08,12.542183334665838 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/01,4.640716672159166 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/30,8.178369558000002 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/30,4.764811365072493 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/23,6.416155308405833 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/22,6.572137495507508 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/06/22,6.507321587095005 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/05,11.562800006157504 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/10,16.968149999987503 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/09,3.2723000000000035 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/02,3.229665749999999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/07/25,2.616977250000005 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/09/02,13.566533349680851 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/09/02,13.236383345080853 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/25,14.00127500345 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/08/25,16.459225 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/09/25,24.44116666666665 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/05,23.182517916666665 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/04,11.326125 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/04,11.342775000000008 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/11/10,17.010642705948598 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/29,28.327374587933367 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/24,15.649022361158591 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/10/29,9.59061136333333 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/11/22,3.421150000000008 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/11/21,6.301390083918648 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2022/11/21,9.586389789743588 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/02/26,3.886574504615378 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/04/10,5.323584097347499 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/03/30,7.535631846153841 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/09,6.9045810617866685 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/08,3.9308583335233305 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/08,8.666805314519996 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/29,20.88090625016748 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/24,11.020845833453336 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/06/02,5.950950002632506 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/06/01,12.492458335728347 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/06/01,8.036175756761676 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/25,3.761293180144997 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/05/24,19.24534166648416 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/07/11,6.453505304611664 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/07/11,5.947345831710831 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/07/04,7.726747789999996 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/03,17.728856250127482 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/04,6.117520826545834 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/04,8.48581249999751 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/07/28,4.205606081739162 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/30,6.006558330308349 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/06,6.333909042307684 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/05,3.3701442307692298 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/05,3.5028552899999976 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/29,5.645708333333343 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/28,4.112711389999999 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/08/28,4.378212961538458 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/21,6.725449994320012 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/29,3.751900000000002 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/22,4.530430472072493 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/21,21.74790833333333 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/09/21,19.90625833333335 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/10/23,24.471000912300013 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/11/01,3.4439750000000062 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/10/24,6.376262301999994 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/10/23,21.03311666708668 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/10/23,16.422725000769994 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/12/03,3.856412897029165 -Chautauqua Lake,15444647,-79.40432126838091,42.16966707314758,2023/11/25,4.424783248333326 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/05,21.856800000000018 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2014/12/29,12.405250000137496 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/07,22.373925000000007 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/29,22.26459166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/22,22.451158333333343 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/06,12.957299999737502 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/07,22.373925000000007 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/29,22.26459166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/01/22,22.451158333333343 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/06,12.957299999737502 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/23,22.348225000000006 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/22,11.197308333718336 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/23,22.348225000000006 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/02/22,11.197308333718336 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/05,7.921226541357504 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/06,8.206435004672485 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/05,7.921226541357504 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/06,8.206435004672485 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/06/06,6.818933333283338 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/30,20.031933333333345 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/29,3.080276370000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/22,4.103170000072498 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/06/06,6.818933333283338 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/30,20.031933333333345 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/29,3.080276370000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/05/22,4.103170000072498 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/09,7.760620832110838 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/10,14.219858333743332 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/01,3.5608500000000065 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/07/25,13.547158333333316 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/09,7.760620832110838 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/10,14.219858333743332 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/01,3.5608500000000065 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/07/25,13.547158333333316 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/25,3.583862896884167 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/11,2.171776975000005 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/08/25,3.583862896884167 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/11,2.171776975000005 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/26,5.04398786968864 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/10/04,5.947186751620836 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/27,3.482560193910252 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/26,5.04398786968864 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/10/04,5.947186751620836 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/09/27,3.482560193910252 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/05,3.542850000000008 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/05,3.542850000000008 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/12/08,5.96427499733001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/29,2.986405318954169 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/22,6.548664408261671 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/30,22.57349999952501 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/21,14.399966668466655 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/12/08,5.96427499733001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/29,2.986405318954169 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/22,6.548664408261671 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/30,22.57349999952501 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2015/11/21,14.399966668466655 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/01/08,12.54129166665166 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/01/08,12.54129166665166 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/02/01,9.037275000155011 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/02/01,9.037275000155011 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/03/04,11.613400000385 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/02/26,22.34590833333334 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/03/04,11.613400000385 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/02/26,22.34590833333334 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/05,18.251058402333356 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/03/29,10.059283335775826 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/05,18.251058402333356 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/03/29,10.059283335775826 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/30,3.528780451999998 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/21,7.994201148030839 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/29,2.7204517500000027 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/30,3.528780451999998 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/21,7.994201148030839 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/04/29,2.7204517500000027 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/23,7.825841666284171 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/31,2.706302250000003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/24,4.098499999999999 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/23,7.825841666284171 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/31,2.706302250000003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/05/24,4.098499999999999 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/03,4.538475809229399 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/06/24,19.781787500955 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/11,3.2698909549999997 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/06/25,3.059166994102562 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/03,4.538475809229399 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/06/24,19.781787500955 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/11,3.2698909549999997 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/06/25,3.059166994102562 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/11,12.941100064512488 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/04,4.354818199999985 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/03,3.0345356266666634 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/27,2.3714340500000053 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/11,12.941100064512488 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/04,4.354818199999985 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/03,3.0345356266666634 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/07/27,2.3714340500000053 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/05,2.936349999999998 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/27,3.478435606666666 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/04,11.255225000000005 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/05,2.936349999999998 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/08/27,3.478435606666666 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/04,11.255225000000005 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/07,6.378955341047611 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/28,6.29684621833333 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/21,2.690305923000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/06,2.66479180576923 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/29,4.015441591666657 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/07,6.378955341047611 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/28,6.29684621833333 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/21,2.690305923000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/06,2.66479180576923 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/09/29,4.015441591666657 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/11/08,10.138313644999997 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/23,6.359279166041671 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/11/07,3.091314354807692 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/11/08,10.138313644999997 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/10/23,6.359279166041671 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2016/11/07,3.091314354807692 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/01/11,9.959149999762497 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/01/11,9.959149999762497 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/03,22.30574166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/04,21.75304166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/03,22.30574166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/04,21.75304166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/19,11.749383333143326 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/03/08,12.527740000500003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/27,10.633216667251672 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/20,14.858841666571674 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/19,11.749383333143326 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/03/08,12.527740000500003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/27,10.633216667251672 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/02/20,14.858841666571674 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/03/23,22.26459166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/03/23,22.26459166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/04/24,6.993071224999997 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/04/24,6.993071224999997 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/06/11,7.966312497707507 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/05/27,3.4972987692307664 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/06/11,7.966312497707507 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/05/27,3.4972987692307664 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/05,2.474673601126374 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/06/28,7.47675000007249 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/05,2.474673601126374 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/06/28,7.47675000007249 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/29,5.046246223485833 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/22,17.97181666609417 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/30,2.462399850000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/29,5.046246223485833 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/22,17.97181666609417 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/07/30,2.462399850000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/30,3.7521181799999943 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/23,12.823187502552516 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/31,3.294002250000006 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/30,3.7521181799999943 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/23,12.823187502552516 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/08/31,3.294002250000006 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/10,4.000060596666659 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/01,3.2966236319999944 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/09/24,5.424823483333332 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/02,3.5347138335622685 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/09/23,18.248504166906667 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/10,4.000060596666659 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/01,3.2966236319999944 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/09/24,5.424823483333332 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/02,3.5347138335622685 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/09/23,18.248504166906667 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/11,10.189154439047613 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/10,2.9389 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/25,13.163408333533326 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/11,10.189154439047613 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/10,2.9389 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/10/25,13.163408333533326 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/12/04,12.315880315 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/27,5.743299996085007 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2017/11/26,2.7111612500000035 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/05/05,5.680133335823324 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/05/29,8.616616664111671 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/05/30,2.645410000000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/07/09,2.846252310072499 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/06/30,12.118075000347494 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/06/22,6.28530833812332 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/08/10,3.731745343333324 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/09/03,3.162100000000005 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/08/25,4.066050006899996 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/09/27,8.862717917611683 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/10/05,2.5697264932692288 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/12/07,12.642135016895006 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2018/11/22,18.96637500040001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/02/10,14.897291670069167 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/01/25,21.66638333333335 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/03/06,22.752450000000003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/04/23,11.112491699854171 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/05/08,3.706777281357496 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/04/22,4.252423533333329 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/06/10,13.85515833328582 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/06/09,2.3964952500000023 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/06/26,13.945136742605836 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/08/04,4.445044057819881 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/07/28,13.943997992359156 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/08/05,2.562502355769232 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/09/05,3.023790007999997 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/09/06,2.24534535 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/09/21,8.321584090072502 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/10/08,3.878312233974356 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/09/29,2.9860862000000004 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/11/08,6.1553499962525136 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/11/01,6.263949997945009 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/10/23,9.92667405420416 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/11/09,15.27850000039999 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/12/11,14.733929180969174 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2019/11/25,3.2775750000000063 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/02/05,22.76205 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/03/08,22.451158333333343 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/02/21,22.67296666666667 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/03/07,21.67155833333335 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/02/20,21.867666666666683 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/04/01,3.633652389423078 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/05/02,18.18991670346668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/04/25,8.647227275000006 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/05/03,3.287476203333332 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/04/24,10.660591694366662 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/05/27,5.865171213405835 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/06/11,3.545500000000008 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/05/26,4.869411249999999 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/07/05,5.5861911316825 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/07/06,2.6579791000000013 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/06,4.674146232342501 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/07,3.12492494326923 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/31,6.718089997610005 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/09/08,3.285577250047502 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/30,3.223050000000008 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/08/23,3.5258772500000037 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/10/09,4.59107955999999 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/10/10,5.518708333333348 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/10/01,3.382043125 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/09/24,3.7323772500725 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/11/10,10.09614686238094 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2020/10/25,7.293176710414161 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/01/29,22.76205 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/03/02,22.451158333333343 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/04/11,17.80643333553332 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/04/04,23.106891671409176 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/04/28,8.772489580828335 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/05/06,4.099227250119999 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/06/06,5.086779769697503 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/06/07,3.3134067500000004 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/05/29,12.477783333333328 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/08/02,3.2957538249735694 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/07/24,14.19574169433917 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/08/10,3.3271772999999967 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/08/25,10.332279176274158 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/09/02,3.612300000000007 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/08/26,4.328286216346156 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/09/26,3.4746591049999958 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/11/06,6.833024999770009 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/11/05,4.37675929326923 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/10/29,3.489962903434064 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/11/29,5.812152902380945 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/12/07,2.9297149999999976 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/11/24,3.1062315298076904 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/12/24,11.205441666666678 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2021/12/24,9.47913333353335 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/02/01,22.26459166666668 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/01/25,23.612166666666656 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/02/26,22.658500000000007 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/04/06,9.48137291667418 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/03/30,22.451158333333343 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/04/06,15.428164972138354 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/03/29,21.48859166666669 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/03/22,17.86544791683418 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/09,3.678982736999996 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/09,2.5659322000000038 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/08,9.006853033333336 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/01,3.00434625 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/04/30,5.062733342533328 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/04/23,19.908674999952485 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/31,12.842120834988334 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/25,2.8936840500000023 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/05/24,6.202337503552501 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/06/29,3.1047651723666663 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/07/04,2.617125000000004 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/07/03,8.256500001924984 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/06/26,3.801706819999996 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/06/25,3.04834226 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/08/07,11.279366689954168 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/07/28,3.5699749999999955 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/07/27,3.5941862500000004 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/09/10,5.6727791669291765 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/08/29,10.834358333910837 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/08/28,4.238973493333329 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/10/08,19.873233332988335 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/09/30,3.5582132085622677 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/09/21,2.670605000000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/10/31,5.685929173066674 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/11/09,2.92460385576923 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/11/08,2.39273625535714 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/10/31,4.176079169381665 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/10/23,17.81566666647416 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/12/10,3.589861350000003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/12/02,3.4020555807692303 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/11/24,5.2126886 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2022/12/27,22.68484166666667 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/02/21,12.769374999984992 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/04/10,13.37012500000002 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/04/09,12.63627708357084 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/04/02,12.668024999952491 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/04/01,14.725249999905008 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/09,10.7938500031925 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/11,5.97086591000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/31,2.892712727999999 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/26,3.8111075783333286 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/06/05,15.109510608048346 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/28,3.623621213333324 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/05/27,10.232000000072489 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/06/22,3.5239363650724944 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/06,2.1540725750000003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/10,7.911927270312504 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/05,6.597000004255001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/31,2.347875000000002 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/30,3.563577250000003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/23,3.433706820000003 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/07/22,4.913975000119993 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/01,5.676734091132505 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/09,4.110292426739163 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/01,15.270308335848346 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/31,7.114775000000006 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/24,2.199329325000001 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/08/23,3.1473673798076938 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/28,6.789974994735012 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/10/03,5.790477249999994 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/10/02,4.784685606666663 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/09/25,3.444077289999994 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/11/03,4.792725069999997 -Upper Chateaugay Lake,15447706,-73.96741792514455,44.7406704784821,2023/11/28,3.491325000120001 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/01/05,21.88613333333335 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2014/12/29,13.042208333190835 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/02/06,12.522983333470831 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/02/06,12.522983333470831 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/02/22,12.19241666652417 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/02/22,12.19241666652417 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/05,8.496776132082495 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/06,8.988100760430827 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/05,8.496776132082495 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/06,8.988100760430827 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/06,6.820208331135835 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/30,7.671737504385005 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/07,13.29163333333332 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/29,2.7362361500000025 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/22,2.4662512500000013 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/06,6.820208331135835 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/30,7.671737504385005 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/07,13.29163333333332 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/29,2.7362361500000025 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/05/22,2.4662512500000013 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/23,13.55910000016751 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/06/23,13.55910000016751 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/09,7.834662508985007 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/07/24,19.99798333307082 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/10,3.5460977719999947 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/01,3.4191750000000054 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/07/25,14.796918339415834 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/09,7.834662508985007 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/07/24,19.99798333307082 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/10,3.5460977719999947 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/08/01,3.4191750000000054 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/07/25,14.796918339415834 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/10,8.680599991264994 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/03,10.905241668764177 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/11,3.830322699999998 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/02,12.689950000262506 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/10,8.680599991264994 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/03,10.905241668764177 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/11,3.830322699999998 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/02,12.689950000262506 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/10/05,5.852549993245005 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/26,3.184133326666664 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/10/04,4.697190989999997 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/27,2.8796070647435896 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/10/05,5.852549993245005 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/26,3.184133326666664 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/10/04,4.697190989999997 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/09/27,2.8796070647435896 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/05,11.126977250072487 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/05,11.126977250072487 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/29,6.25047499430501 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/22,13.907241672074164 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/21,19.217766667056665 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/29,6.25047499430501 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/22,13.907241672074164 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2015/11/21,19.217766667056665 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/02/01,15.3169791672092 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/02/01,15.3169791672092 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/02/26,22.26459166666668 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/02/26,22.26459166666668 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/05,10.169458335370846 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/03/29,7.597618829214998 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/05,10.169458335370846 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/03/29,7.597618829214998 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/07,4.451364481470235 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/30,6.355174248380829 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/21,14.80872500460002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/29,3.9701250093833305 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/07,4.451364481470235 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/30,6.355174248380829 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/21,14.80872500460002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/04/29,3.9701250093833305 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/23,8.697533333188337 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/31,4.633529168894167 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/24,13.51847501380002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/23,8.697533333188337 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/31,4.633529168894167 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/05/24,13.51847501380002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/03,12.649941678166677 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/06/24,11.937612502795002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/11,3.8251223249999935 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/06/25,4.332425000000007 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/03,12.649941678166677 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/06/24,11.937612502795002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/11,3.8251223249999935 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/06/25,4.332425000000007 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/11,14.020283342653324 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/04,13.413991666904176 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/03,3.0264768865384624 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/27,3.4299000469999954 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/11,14.020283342653324 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/04,13.413991666904176 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/03,3.0264768865384624 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/07/27,3.4299000469999954 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/05,4.380804549999996 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/27,3.87690757333333 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/04,5.629777279999996 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/05,4.380804549999996 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/08/27,3.87690757333333 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/04,5.629777279999996 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/07,5.726869693405842 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/28,6.44496060666667 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/21,7.082477275652504 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/06,2.796409075 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/29,3.5682212333333267 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/07,5.726869693405842 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/28,6.44496060666667 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/21,7.082477275652504 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/06,2.796409075 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/09/29,3.5682212333333267 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/08,3.957408450478336 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/23,6.257824997545007 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/07,2.5091150057692304 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/08,3.957408450478336 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/10/23,6.257824997545007 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/07,2.5091150057692304 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/23,2.803925000000006 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/11/23,2.803925000000006 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/12/25,21.791766666666685 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2016/12/25,21.791766666666685 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/02/04,22.05378333333335 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/02/04,22.05378333333335 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/02/28,18.509400002162497 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/03/08,12.341965004645008 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/02/28,18.509400002162497 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/03/08,12.341965004645008 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/04/24,10.353174999999975 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/04/24,10.353174999999975 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/06/11,9.147999997325003 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/05/27,2.66132725 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/06/11,9.147999997325003 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/05/27,2.66132725 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/05,2.4212450000000034 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/05,2.4212450000000034 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/29,5.021225015560001 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/22,8.940518948816663 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/30,3.4791954699999947 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/29,5.021225015560001 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/22,8.940518948816663 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/07/30,3.4791954699999947 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/08/30,10.09896969666667 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/08/23,2.28979696681167 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/08/30,10.09896969666667 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/08/23,2.28979696681167 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/10,7.7637060567391645 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/01,7.961157583333335 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/09/24,6.212788259014173 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/02,3.681376386538457 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/09/23,4.575358337990831 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/10,7.7637060567391645 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/01,7.961157583333335 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/09/24,6.212788259014173 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/02,3.681376386538457 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/09/23,4.575358337990831 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/11/11,6.134040910095004 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/11/10,2.981075000000005 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/25,14.507633333933322 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/11/11,6.134040910095004 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/11/10,2.981075000000005 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/10/25,14.507633333933322 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2017/12/04,10.501019592380942 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/05/05,3.623602671066664 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/04/28,5.770077815384609 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/06/07,9.289174987214995 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/05/29,8.431524997707506 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/05/30,5.250000002299995 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/07/09,6.682325000407505 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/06/30,11.7759250000725 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/07/08,4.917996991025834 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/07/01,12.32692500043499 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/06/22,2.093695374999997 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/08/10,3.7812060616666594 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/08/09,11.74141668851668 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/08/02,14.174841669039145 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/09/03,4.365774999999994 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/08/25,5.049560606666663 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/09/27,7.841545823328338 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/10/05,4.946917239999995 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/12/07,22.34590833333334 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2018/11/22,21.919450000000012 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/02/09,14.89319166661916 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/01/25,21.794191666666684 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/02/26,21.51594999973752 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/04/23,5.210796250007504 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/05/08,5.149325404925829 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/04/22,3.126769230769229 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/06/10,10.463374998867494 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/06/09,3.462661379999994 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/07/03,18.0013000012925 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/06/26,8.257079173351666 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/08/04,8.992595461949168 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/07/28,9.975417855567851 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/08/05,2.427554563333333 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/07/27,6.161768189999999 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/09/05,8.714292040000004 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/08/29,6.598121966884171 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/09/06,7.01368182 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/09/21,4.514756820000006 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/10/08,3.0171727249999987 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/09/29,4.052537123333325 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/10/23,18.35486470691084 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/11/09,14.647250000399993 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2019/12/11,17.01482500285752 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/03/08,11.94520833391833 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/02/21,23.228724999999997 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/02/29,21.791766666666685 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/02/20,21.791766666666685 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/05/02,12.176808346608349 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/04/25,10.748702275095004 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/05/03,4.963618943333329 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/04/24,5.189408336298327 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/05/27,8.562426513768335 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/06/11,4.786352250047496 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/05/26,3.830224999999993 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/07/05,5.556078632920002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/07/06,2.374401762500001 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/06,9.373039598733342 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/07/30,2.720706860000001 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/07,2.9375947224358976 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/31,3.911573490217492 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/22,2.754726546811666 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/09/08,8.612175000217501 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/08/30,3.3080192307692307 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/10/09,4.569532727072498 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/10/10,16.109425003597497 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/10/01,12.025433333333336 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/09/24,18.58087500177501 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/11/10,8.442114404999991 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/10/25,5.836420864790828 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2020/12/29,21.75304166666668 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/02/06,12.10808333331833 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/03/02,22.309808333333343 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/04/04,9.516524998352509 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/05/06,3.8882681250475017 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/06/06,5.072211375890003 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/06/07,6.1168000003600085 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/05/29,6.375881454456664 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/06/23,3.3103050499999984 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/07/24,15.25260000072 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/08/10,7.606100003067509 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/07/25,2.762425000000004 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/08/25,12.0504837494775 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/09/11,2.781774729999999 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/08/26,3.9873727999999926 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/09/26,5.679244696739167 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/11/06,3.302681821362498 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/11/05,4.011750000000004 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/10/29,2.7598026057692304 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/11/29,6.511934559396943 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/12/07,4.582825000072492 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/11/24,2.647398918269228 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/12/24,12.276149999999996 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/12/24,14.472633333333349 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2021/12/23,17.29277917647916 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/01/24,21.867666666666683 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/02/26,23.02285 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/02/26,13.112766666851662 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/04/06,7.8832333326308515 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/03/30,22.451158333333343 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/04/06,10.200431249440012 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/03/29,21.750616666666684 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/03/22,13.117916666381673 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/09,8.714770476666665 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/09,2.589593550000004 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/08,5.599450002300002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/01,2.780337250000001 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/04/30,4.3905439470641605 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/04/23,21.776716666271664 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/31,18.277358335800827 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/06/10,4.436156066786668 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/25,3.6926381999999935 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/05/24,14.106424999784988 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/04,17.799466691966668 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/06/29,3.3899045601449966 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/04,10.155408341620822 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/03,7.250608332713342 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/06/26,4.565899999999998 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/06/25,2.6945672500000013 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/08/07,14.148466696039158 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/28,3.0602382730769238 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/07/27,6.657908337020827 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/09/10,7.491450002595001 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/08/24,6.417210607918334 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/08/28,3.793357379999997 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/10/08,3.309152250120003 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/09/30,3.09253729903846 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/09/21,5.07962725007249 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/10/31,4.601311800103566 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/11/09,2.4039799749999986 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/11/08,4.606542274999996 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/10/31,5.18134584477583 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/10/23,4.143452281284997 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/12/10,11.9034250006 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/12/02,7.343886224999997 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2022/11/24,4.286086216346156 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/02/21,21.88613333333335 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/04/01,10.118483332975844 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/09,10.453533334048338 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/11,6.2640420447250085 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/04/25,14.636883333140826 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/31,8.103477270312503 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/26,7.893318556786668 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/06/05,8.524558334483327 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/28,4.105477275000002 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/05/27,18.514975000000003 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/06/22,7.659543180144998 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/07/06,4.8742704899999945 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/06/21,3.2867567500000066 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/10,21.254626669184187 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/05,4.338825000072493 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/07/31,3.2240360230769234 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/07/23,3.3403984633808363 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/07/22,2.481675000000004 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/06,8.06410378673916 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/01,6.751709090842509 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/09,5.3329469737541615 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/01,14.914875000072511 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/31,4.350262871666659 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/24,3.972270489999992 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/08/23,2.947204950000001 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/28,12.176789182751664 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/10/03,5.193406072294997 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/10/02,10.725041668966648 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/09/25,6.537214394203331 -Lower Chateaugay Lake,15448036,-74.01802245346931,44.81823808741741,2023/11/03,5.671408386666661 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2014/12/29,13.829549999905014 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/01/22,22.373925000000007 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/01/22,22.373925000000007 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/03/11,12.26709166645166 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/02/23,22.64890000000001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/02/22,22.69252500000001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/03/11,12.26709166645166 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/02/23,22.64890000000001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/02/22,22.69252500000001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/05,9.77937501075 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/06,5.983983333548323 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/05,9.77937501075 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/06,5.983983333548323 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/06,7.69718333295084 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/30,8.76492274172084 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/07,13.01719999998499 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/29,3.9689000001449934 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/06,7.69718333295084 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/30,8.76492274172084 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/07,13.01719999998499 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/05/29,3.9689000001449934 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/22,11.341799997662504 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/06/22,11.341799997662504 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/10,4.042199999999991 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/01,17.799700000137513 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/10,4.042199999999991 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/01,17.799700000137513 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/03,5.866420821995839 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/25,2.7718000002375 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/11,5.852025000744999 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/02,8.640425000289996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/03,5.866420821995839 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/08/25,2.7718000002375 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/11,5.852025000744999 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/02,8.640425000289996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/10/05,6.439174999280007 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/26,3.3038446866666638 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/10/04,3.472145717490841 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/27,2.886768967307692 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/10/05,6.439174999280007 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/26,3.3038446866666638 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/10/04,3.472145717490841 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/09/27,2.886768967307692 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/05,12.35728333333332 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/05,12.35728333333332 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/29,6.942124997760015 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/22,3.0446736183333347 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/21,5.509724248788335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/29,6.942124997760015 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/22,3.0446736183333347 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2015/11/21,5.509724248788335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/01/08,21.77565833333335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/01/08,21.77565833333335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/05,10.153011370000002 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/03/29,13.405025844530828 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/05,10.153011370000002 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/03/29,13.405025844530828 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/07,13.81681673478 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/30,16.47429173586669 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/21,8.015640156666663 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/29,6.627154551974999 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/07,13.81681673478 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/30,16.47429173586669 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/21,8.015640156666663 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/04/29,6.627154551974999 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/23,5.630319992127506 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/31,7.9817928028066705 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/24,8.762483335895817 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/23,5.630319992127506 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/31,7.9817928028066705 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/05/24,8.762483335895817 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/03,6.086675000577507 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/06/24,4.615967439917503 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/11,3.0297000999999995 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/06/25,6.726343179999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/03,6.086675000577507 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/06/24,4.615967439917503 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/11,3.0297000999999995 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/06/25,6.726343179999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/11,6.74533409057751 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/04,3.4964722642475574 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/26,5.997960611566664 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/03,2.3050224900000025 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/27,2.328655175000003 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/11,6.74533409057751 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/04,3.4964722642475574 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/26,5.997960611566664 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/03,2.3050224900000025 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/07/27,2.328655175000003 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/05,4.952063630289993 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/27,11.37940208390335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/04,3.052002279999998 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/05,4.952063630289993 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/08/27,11.37940208390335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/04,3.052002279999998 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/07,8.87420670904762 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/28,16.3894000000475 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/21,5.441625000477502 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/06,4.808971530769228 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/29,5.082689541999996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/07,8.87420670904762 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/28,16.3894000000475 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/21,5.441625000477502 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/06,4.808971530769228 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/09/29,5.082689541999996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/11/08,3.8629395522899994 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/23,10.1430347500711 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/11/07,2.351724880769228 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/11/08,3.8629395522899994 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/10/23,10.1430347500711 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/11/07,2.351724880769228 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/12/25,21.919450000000012 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2016/12/25,21.919450000000012 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/03/08,11.775849999999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/02/20,16.18829999999999 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/03/08,11.775849999999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/02/20,16.18829999999999 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/03/23,22.348225000000006 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/03/23,22.348225000000006 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/04/24,12.440534101541672 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/04/24,12.440534101541672 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/06/11,7.266170825688332 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/06/11,7.266170825688332 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/05,2.567101350000001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/05,2.567101350000001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/29,5.56239698969417 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/06,6.294653029150828 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/30,3.656368749999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/29,5.56239698969417 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/06,6.294653029150828 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/07/30,3.656368749999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/30,4.908700000217494 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/23,9.109660660128338 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/31,5.340924999999996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/30,4.908700000217494 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/23,9.109660660128338 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/08/31,5.340924999999996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/10,7.953713640072492 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/01,3.224562886666661 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/09/24,4.996509092300004 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/02,4.021867630769226 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/09/23,7.854050002734991 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/10,7.953713640072492 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/01,3.224562886666661 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/09/24,4.996509092300004 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/02,4.021867630769226 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/09/23,7.854050002734991 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/11/11,8.215487005714287 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/11/10,2.935150000000007 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/25,7.199583326666662 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/11/11,8.215487005714287 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/11/10,2.935150000000007 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/10/25,7.199583326666662 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/12/04,3.796908951846071 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2017/12/28,21.867666666666683 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/05/05,6.868208341430824 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/06/07,7.779349986277493 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/05/29,8.270674999427506 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/05/30,3.1519364999999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/07/09,3.5382068351449982 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/07/08,7.3178875035574995 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/07/01,9.004750000289993 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/06/22,2.4808555557692293 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/08/10,3.84561060666666 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/08/09,3.267050000145 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/09/03,3.545602250047504 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/08/25,6.1954674266666645 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/09/27,9.768187500502515 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/10/05,3.3508264 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/11/22,21.66638333333335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2018/12/23,12.219650000000003 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/02/10,13.050608333238332 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/01/25,21.67155833333335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/02/26,22.09913333333335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/04/23,9.122782588451658 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/05/08,6.691841676056655 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/04/22,3.026475 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/06/10,16.467883333333326 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/06/09,3.6106719999999934 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/07/03,20.10680833285335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/08/04,14.66552500697249 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/07/28,6.965266666596665 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/08/05,3.0173001499999974 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/07/27,7.799525011324995 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/09/05,3.442521966666661 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/08/29,14.221466789679162 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/09/06,4.328873483333328 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/09/21,7.17232196671417 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/10/08,3.04324565 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/09/29,4.153698870334166 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/11/01,10.208566677939162 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/11/09,4.451897754807692 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2019/11/25,14.680441669941686 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/02/05,22.539900000000006 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/02/21,22.00959166666668 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/03/07,22.113474999737512 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/02/29,21.848400000000016 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/02/20,21.88613333333335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/05/02,8.994762504170001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/04/25,4.663336367419998 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/05/03,5.527304549999992 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/04/24,6.261271218836669 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/05/27,2.687160604058332 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/06/11,2.562875000000001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/05/26,3.924274999999992 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/07/06,2.86338099 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/06,4.1238037933333285 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/07/30,3.6017000007649984 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/07,3.3077826764651985 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/07/29,6.653625001502496 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/31,3.1589643934058302 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/30,4.454025000047497 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/08/23,12.226225000199982 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/10/09,3.8070721353333306 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/09/23,13.317175000164998 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/10/10,13.810000005850004 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/10/01,9.284600000382497 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/09/24,10.23959166896666 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/11/10,10.05453095238094 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/10/25,14.40671731885356 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2020/12/29,21.856800000000018 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/01/29,23.486291666666656 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/02/06,11.634999999984997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/03/11,11.51895833333334 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/03/02,22.26459166666668 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/04/03,13.935933333238331 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/03/26,23.13685075673918 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/05/06,3.166525000000002 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/06/06,14.555864999620006 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/06/07,15.384175016195025 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/05/29,7.667766209609168 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/06/23,3.8044545 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/08/02,6.958845824553346 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/07/24,15.43035 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/08/10,7.621143180335001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/07/25,7.889125000290002 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/08/25,5.318333334780833 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/09/11,3.4345636249999933 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/08/26,4.525559099999993 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/09/26,3.5196098485508283 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/10/04,13.32843333333332 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/11/06,3.8882158849999966 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/11/05,12.285375000189989 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/10/29,2.2379232249999976 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/11/24,5.339447961538463 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/12/24,11.289925000000006 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/12/24,3.2449250000000056 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2021/12/23,16.13326666657166 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/02/26,23.228724999999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/02/26,11.162191667051667 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/04/06,11.502375001210034 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/03/30,22.34590833333334 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/04/06,7.828112498245 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/03/30,22.274983333333346 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/03/29,21.66638333333335 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/03/22,12.705312500780009 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/09,3.645312439999996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/08,6.540178033333337 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/01,3.632534858333329 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/04/30,6.759991670924158 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/04/23,17.81424166693165 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/31,10.4851875050775 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/25,3.966395504999996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/05/24,4.79294811049583 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/07/04,19.711325000060015 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/06/29,3.1018681899999967 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/07/03,5.9232147813449965 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/06/26,3.963931820145002 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/06/25,4.9138568351733305 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/08/07,3.167739409275833 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/07/28,2.8241590000000003 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/07/27,16.018275000262477 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/09/10,8.331509093145007 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/08/24,2.6167356 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/08/28,5.065872016666661 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/09/22,11.803937511367517 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/09/30,2.332905205769228 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/09/21,3.378300000047499 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/10/31,3.5012524986450004 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/11/09,2.567498224999998 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/11/08,2.725680791666666 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/10/24,7.621275000362498 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/10/23,12.158016666866654 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/12/10,4.745703033333324 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/12/02,20.62124166741168 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/11/24,3.4442000000000035 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2022/12/27,22.14189166666668 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/02/04,22.24565000000001 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/04/10,10.152799999904987 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/04/09,10.317408333238326 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/04/01,18.307631250332506 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/09,16.536358333355835 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/11,10.136916669014152 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/04/25,5.164158332713331 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/31,6.806640146786666 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/26,2.974425605004166 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/06/05,17.63957000005999 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/28,3.9612500001449966 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/05/27,20.00123333295082 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/06/22,3.0582740888699997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/07/06,3.0857749999999964 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/06/21,2.559299999999996 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/10,14.655766675986673 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/05,3.202755308333329 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/07/30,7.197860606956666 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/07/23,3.509527249999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/07/22,2.7990112499999977 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/06,6.301826513598336 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/01,17.84446666685918 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/09,5.114054930014998 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/01,19.608233333405853 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/31,4.845799999999997 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/24,7.050825000432504 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/08/23,2.630320324999999 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/10/03,9.783837502600004 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/28,11.834814593218326 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/10/03,5.943333337933337 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/10/02,8.953591675866662 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/09/25,22.007333335705844 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/11/03,4.234676354999995 -Lake Titus,15448110,-74.28210541104859,44.724953399356416,2023/11/28,4.239324999999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/01/05,21.838800000000013 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2014/12/29,21.66638333333335 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/03/10,21.67155833333335 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/02/22,21.84966666666668 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/03/10,21.67155833333335 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/02/22,21.84966666666668 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/04/03,13.267133333190833 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/04/03,13.267133333190833 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/05,11.218287513272504 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/06,8.45521000016748 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/05,11.218287513272504 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/06,8.45521000016748 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/06/06,24.35793750131501 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/29,2.5374975883333333 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/06/06,24.35793750131501 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/05/29,2.5374975883333333 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/08,8.662645830893348 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/06/22,4.74978870007249 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/08,8.662645830893348 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/06/22,4.74978870007249 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/24,12.114174996055 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/10,2.4735521 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/01,12.623350000047497 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/25,12.272050000239997 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/24,12.114174996055 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/10,2.4735521 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/01,12.623350000047497 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/07/25,12.272050000239997 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/25,5.997408754685 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/11,3.176329500000002 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/08/25,5.997408754685 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/11,3.176329500000002 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/10/05,5.891299992815005 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/26,3.399236434999993 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/10/04,2.432613500000002 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/27,2.2884999499999976 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/10/05,5.891299992815005 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/26,3.399236434999993 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/10/04,2.432613500000002 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/09/27,2.2884999499999976 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/11/29,8.618899995565007 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/11/22,7.98636874199 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/11/29,8.618899995565007 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2015/11/22,7.98636874199 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/01/08,22.231758333333342 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/01/08,22.231758333333342 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/02/01,5.57389999820501 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/02/01,5.57389999820501 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/02/26,22.674233333333337 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/02/26,22.674233333333337 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/03/29,13.977339584673324 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/03/29,13.977339584673324 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/07,5.052439661516068 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/30,5.094004559999994 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/21,7.25557879166667 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/29,6.049746973848317 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/07,5.052439661516068 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/30,5.094004559999994 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/21,7.25557879166667 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/04/29,6.049746973848317 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/23,6.702878009361779 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/31,5.17857614707333 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/24,13.668508333733314 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/23,6.702878009361779 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/31,5.17857614707333 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/05/24,13.668508333733314 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/03,3.3572981915384594 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/06/24,20.107658333580844 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/11,2.8325817150000017 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/06/25,2.518743700000003 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/03,3.3572981915384594 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/06/24,20.107658333580844 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/11,2.8325817150000017 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/06/25,2.518743700000003 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/04,3.849510607076658 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/03,9.835175000072503 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/27,3.111123854999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/04,3.849510607076658 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/03,9.835175000072503 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/07/27,3.111123854999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/05,3.753054599999992 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/27,3.600017426666663 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/04,3.9553136200474968 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/28,3.4455250000000057 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/05,3.753054599999992 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/27,3.600017426666663 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/04,3.9553136200474968 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/08/28,3.4455250000000057 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/10/07,3.3542151516666605 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/28,6.736325753333332 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/21,4.229261389999992 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/10/06,2.244065849999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/29,2.4785430500000016 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/10/07,3.3542151516666605 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/28,6.736325753333332 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/21,4.229261389999992 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/10/06,2.244065849999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/09/29,2.4785430500000016 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/11/08,9.722350626333329 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/11/07,2.448482730769228 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/11/08,9.722350626333329 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/11/07,2.448482730769228 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/12/25,21.791766666666685 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2016/12/25,21.791766666666685 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/04,22.05378333333335 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/04,22.05378333333335 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/19,14.87969166661916 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/03/08,14.737474999905006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/20,20.365858333238364 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/19,14.87969166661916 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/03/08,14.737474999905006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/02/20,20.365858333238364 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/03/23,22.348225000000006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/03/23,22.348225000000006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/04/24,8.634483336714164 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/04/24,8.634483336714164 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/06/11,8.878470825520829 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/06/11,8.878470825520829 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/06,8.622150000235006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/05,2.3958726000000024 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/06/28,4.257189186803462 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/06,8.622150000235006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/05,2.3958726000000024 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/06/28,4.257189186803462 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/07,13.3080875173325 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/29,12.875725002444987 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/22,16.27432916657165 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/06,3.113681750047501 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/30,2.9678981599999976 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/07,13.3080875173325 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/29,12.875725002444987 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/22,16.27432916657165 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/06,3.113681750047501 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/07/30,2.9678981599999976 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/30,3.4686750001449957 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/23,5.978024998527509 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/30,3.4686750001449957 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/08/23,5.978024998527509 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/10,3.3771749549999943 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/01,4.348181869999992 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/09/24,6.306700000000009 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/02,2.3845735423076904 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/09/23,13.634412500047508 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/10,3.3771749549999943 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/01,4.348181869999992 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/09/24,6.306700000000009 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/02,2.3845735423076904 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/09/23,13.634412500047508 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/11/11,6.7269431823474966 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/11/10,13.190349999999976 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/25,4.770136349999994 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/11/11,6.7269431823474966 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/11/10,13.190349999999976 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/10/25,4.770136349999994 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2017/12/04,10.139585417819198 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/05/05,4.451725000072497 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/05/29,4.518677692979876 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/05/30,5.001100000217496 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/07/09,3.335875763913332 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/07/08,13.008962500072496 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/07/01,6.974550000867497 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/06/22,6.908375000000006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/08/10,3.008793974999999 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/08/09,3.530054500047502 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/09/03,2.975575000000006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/08/25,4.021280313333328 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/10/05,2.142904499999997 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/12/07,22.76205 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2018/12/23,9.24768333311834 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/02/09,14.010749999952496 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/02/10,10.982666666476678 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/02/01,21.867666666666683 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/03/06,11.472424999785003 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/02/26,21.675758333333352 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/04/23,7.9934283694958435 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/05/08,5.562555331818327 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/04/22,8.369443755357496 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/06/10,16.82089999961748 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/06/09,9.10666834258082 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/07/03,8.890000000047504 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/06/26,7.414319548972494 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/08/04,15.070741692039157 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/08/05,3.716310180769225 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/07/27,3.3262340700000004 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/09/05,3.442219696666659 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/08/29,4.359795454999988 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/09/06,4.288777299999994 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/09/21,7.315812876666663 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/10/08,2.8840725500000004 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/09/29,11.284000000410002 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/10/23,11.60722167497666 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/11/09,2.3584750000000008 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/12/11,12.549683333118324 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2019/11/25,4.468776408653848 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/02/05,22.47810000000001 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/03/08,22.451158333333343 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/02/21,22.451158333333343 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/02/29,21.848400000000016 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/02/20,21.67155833333335 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/03/31,5.317474996497513 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/05/02,13.138025018400006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/04/25,3.7759477499999936 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/05/03,3.659871203333328 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/04/24,4.888125000072499 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/05/27,7.587941673781675 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/06/04,6.687775000362496 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/05/26,4.026503199999994 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/07/05,13.119982204252496 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/07/06,2.3761020750000013 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/08/06,8.039725002612505 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/08/07,2.521986100000001 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/07/29,11.81195833288833 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/08/31,4.09649622061417 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/09/08,10.944375000362497 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/08/23,3.768548200144992 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/10/09,4.67648415999999 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/10/10,8.49837500014249 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/09/24,9.23717500467249 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/11/10,8.439021233333326 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/10/25,8.522867800096664 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2020/12/29,12.923783333518326 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/01/29,24.072216666666648 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/03/02,22.30574166666668 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/04/03,13.071639999857505 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/04/04,11.094675000124994 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/03/26,16.926920836153336 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/05/06,2.416402250000004 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/06/06,8.37125416955416 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/06/07,2.645229499999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/05/29,6.0716341059975 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/06/23,7.59945000029 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/08/02,7.35140833911583 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/07/24,10.054274999199995 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/08/10,4.047379545167496 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/08/25,6.156825001279997 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/09/11,3.453090099999995 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/08/26,3.4083945 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/09/26,8.175806066666668 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/10/04,13.408749999984984 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/11/06,6.471774995610009 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/11/05,2.565300000000001 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/10/29,2.298842911538458 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/12/07,21.66638333333335 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/11/24,2.702046430769229 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2021/12/24,11.377766666666671 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/02/26,22.304175000000008 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/06,11.02021666786418 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/06,17.127570835733337 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/03/29,21.675758333333352 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/03/22,20.40315833323837 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/09,4.0281157613333285 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/09,2.671639100000001 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/08,7.329175002300004 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/01,3.4249337333333325 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/30,7.9563583356333245 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/23,14.785966666856664 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/04/22,3.751533673076919 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/31,14.865066682839169 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/25,3.130093139999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/05/24,13.372666667286664 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/06/29,3.6911962138883303 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/07/11,11.289058330753337 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/07/03,7.473044166834174 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/06/26,3.1762875633333283 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/06/25,2.7630641375000007 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/09/10,15.80760444453943 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/08/24,2.396145475357144 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/08/28,2.721365850000002 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/09/30,2.654285805769229 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/09/21,5.151350000289996 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/10/31,4.845540003972505 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/11/09,2.382014392307689 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/11/08,2.3912452000000006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/10/31,11.899991667066656 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/10/23,3.7893916686641655 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/12/02,2.436477250000004 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/11/24,3.3672000000000013 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2022/12/27,22.22352500000001 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/02/04,22.25651666666668 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/10,11.792783333238326 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/09,12.328683333238324 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/02,11.570958333238329 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/01,11.083958333333342 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/09,16.232700002322495 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/11,12.206441687366665 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/04/25,2.770925000000006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/31,7.342702270290002 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/26,3.1077453163333315 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/06/05,18.449916666666677 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/06/04,2.7320567500000044 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/28,3.208095459999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/05/27,17.635925000405 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/06/22,2.6883309081450006 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/06,3.785528430769223 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/10,16.67333333369584 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/05,4.010743199999991 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/31,2.678254499999998 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/30,12.112250005339996 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/23,3.400625000000007 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/07/22,2.3141250000000024 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/06,3.538666678333328 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/01,7.402631057414166 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/09,5.022950760135831 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/01,5.989775000482501 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/31,4.231944701666658 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/24,3.6534250899999936 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/08/23,3.132081750000001 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/28,12.998456279092496 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/10/03,2.9570652500000008 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/10/02,10.076200001222478 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/09/25,7.669534090167506 -Ragged Lake,15448120,-74.06939806123899,44.71957833811909,2023/11/03,3.352955724999997 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/01/05,21.75304166666668 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/01/29,22.26459166666668 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/01/29,22.26459166666668 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/02/23,22.404625000000006 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/02/23,22.404625000000006 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/05,13.825700048132513 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/06,7.491575000072487 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/05,13.825700048132513 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/06,7.491575000072487 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/06/06,4.493331420332616 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/22,4.665133340233328 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/06/06,4.493331420332616 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/05/22,4.665133340233328 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/06/22,5.872513634692503 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/06/22,5.872513634692503 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/07/24,21.17782499991001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/10,13.69757499999999 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/01,7.343752249999999 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/07/25,5.622100000915 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/07/24,21.17782499991001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/10,13.69757499999999 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/01,7.343752249999999 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/07/25,5.622100000915 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/03,6.731470826748344 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/25,6.961043749145001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/11,2.714419375000001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/02,8.6881250005075 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/03,6.731470826748344 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/08/25,6.961043749145001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/11,2.714419375000001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/02,8.6881250005075 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/10/05,14.579800014065007 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/26,4.802355318021972 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/10/04,3.492747589999999 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/27,3.3150828659340648 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/10/05,14.579800014065007 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/26,4.802355318021972 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/10/04,3.492747589999999 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/09/27,3.3150828659340648 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/05,2.9427000000000043 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/05,2.9427000000000043 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/29,6.912529539999991 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/22,10.832025040722504 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/29,6.912529539999991 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2015/11/22,10.832025040722504 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/01/08,21.66638333333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/01/08,21.66638333333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/01/24,21.77565833333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/01/24,21.77565833333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/03/05,21.66638333333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/03/05,21.66638333333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/05,9.543703367495828 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/05,9.543703367495828 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/07,6.4820625848677365 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/30,7.510977284999996 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/21,5.828899871333327 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/29,4.3989750000724985 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/07,6.4820625848677365 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/30,7.510977284999996 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/21,5.828899871333327 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/04/29,4.3989750000724985 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/23,9.069577795104156 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/31,8.157745079814168 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/24,4.580462767999991 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/23,9.069577795104156 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/31,8.157745079814168 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/05/24,4.580462767999991 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/03,8.903124999952501 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/06/24,4.462929172969169 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/11,3.6882295 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/06/25,6.483725000095001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/03,8.903124999952501 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/06/24,4.462929172969169 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/11,3.6882295 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/06/25,6.483725000095001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/11,9.988700017087492 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/04,3.920863461610956 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/03,2.5996770000000016 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/27,3.4115093307692264 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/11,9.988700017087492 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/04,3.920863461610956 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/03,2.5996770000000016 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/07/27,3.4115093307692264 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/05,4.967063649999994 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/27,7.233075001512499 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/04,8.879825000047509 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/28,3.1078772500000054 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/05,4.967063649999994 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/27,7.233075001512499 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/04,8.879825000047509 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/08/28,3.1078772500000054 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/07,6.578618943333331 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/28,18.482783344833333 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/21,13.45065833810084 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/06,3.682190711538464 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/29,3.4317908249999967 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/07,6.578618943333331 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/28,18.482783344833333 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/21,13.45065833810084 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/06,3.682190711538464 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/09/29,3.4317908249999967 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/11/08,4.089137168333327 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/23,9.377987780100264 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/11/07,2.5646629932692293 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/11/08,4.089137168333327 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/10/23,9.377987780100264 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/11/07,2.5646629932692293 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/12/09,21.77565833333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/12/09,21.77565833333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/12/25,21.867666666666683 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2016/12/25,21.867666666666683 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/03/08,14.767999999905005 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/02/20,15.281924999905009 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/03/08,14.767999999905005 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/02/20,15.281924999905009 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/04/24,13.79220836093334 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/05/11,2.943456749999998 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/04/25,4.439024999999994 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/04/24,13.79220836093334 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/05/11,2.943456749999998 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/04/25,4.439024999999994 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/06/11,6.991391661371665 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/06/11,6.991391661371665 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/06,8.989962492272497 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/05,2.369974950000001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/06,8.989962492272497 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/05,2.369974950000001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/29,9.090268758879995 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/22,15.960200002157483 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/06,6.022500449999998 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/30,3.0021557625 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/29,9.090268758879995 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/22,15.960200002157483 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/06,6.022500449999998 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/07/30,3.0021557625 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/30,3.7802090901449934 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/23,2.728455319178332 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/30,3.7802090901449934 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/08/23,2.728455319178332 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/10,7.971746241739168 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/01,2.903069706666664 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/09/24,7.200445450000011 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/02,2.81975068076923 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/09/23,5.376150000000004 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/10,7.971746241739168 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/01,2.903069706666664 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/09/24,7.200445450000011 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/02,2.81975068076923 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/09/23,5.376150000000004 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/11/11,9.790816666666682 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/11/10,3.3725795000000023 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/25,9.588052299999989 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/11/11,9.790816666666682 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/11/10,3.3725795000000023 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/10/25,9.588052299999989 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2017/12/28,21.867666666666683 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/01/29,7.912525000185003 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/05/05,8.267033341383325 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/04/28,8.062224999690011 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/05/29,4.717170878030711 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/05/30,4.5260749999999925 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/07/09,3.4251969768841635 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/06/30,18.395041666666668 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/07/01,8.408508333930826 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/06/22,2.35512495 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/08/10,4.068326506666656 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/08/09,10.978775000000008 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/08/02,12.565174999354983 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/08/25,6.411904535 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/10/05,3.255261300000001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/12/07,22.00959166666668 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2018/11/22,22.884825000000006 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/02/10,11.219341666571676 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/01/25,23.1518 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/03/06,11.242141667251673 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/02/26,12.8044749997375 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/04/23,12.800300018137497 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/05/08,4.789525000072498 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/04/22,11.09538335912834 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/06/10,19.154608332673323 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/06/01,10.474875000000008 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/06/09,2.7721770500000016 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/07/03,13.031690000265 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/08/04,8.846146217760836 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/08/05,4.656959089999992 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/07/27,4.04140000014499 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/09/05,3.650718953333328 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/08/29,3.1421000001425 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/09/06,2.4242974500000027 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/09/21,7.860257573333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/10/08,5.483104539999995 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/09/29,4.176358336238332 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/11/01,4.070962499195004 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/10/23,6.200770828140841 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/11/09,3.4461000000000066 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2019/11/25,8.183725173940273 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/02/05,22.674233333333337 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/02/21,11.721891665591665 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/02/29,21.88613333333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/02/20,22.09913333333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/04/01,17.356950000405007 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/05/02,8.142097739999999 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/04/25,7.410812130047496 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/05/03,6.454591672101651 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/05/27,5.08358334776084 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/06/11,4.306038461610962 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/06/04,11.966775004599985 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/05/26,3.4257249999999977 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/07/06,3.8245634913333264 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/06,18.125191673566672 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/07/30,4.393292053372503 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/07,13.08865833311832 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/31,14.487937500095002 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/22,10.272308345195825 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/08/23,13.43462500023999 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/10/09,7.649732588333337 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/09/23,7.828387504432504 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/10/10,11.623625002347492 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/11/10,9.698578682380957 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/10/25,18.217508335798343 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2020/12/29,21.856800000000018 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/01/29,22.47810000000001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/02/06,21.867666666666683 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/01/30,21.848400000000016 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/03/11,24.44116666666665 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/03/02,22.26459166666668 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/04/03,12.452514585775823 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/03/26,8.797249999894994 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/05/06,5.311034100000001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/06/06,12.447400004839992 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/06/07,3.934796213333323 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/05/29,3.854279169889164 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/06/23,2.6561727500000014 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/07/24,15.627058333570824 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/08/10,9.072509090382503 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/07/25,8.729500000362497 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/08/25,12.224342082573342 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/09/11,4.539868194999992 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/08/26,2.767002250000005 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/09/26,12.366783377033345 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/11/06,5.7735727102174925 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/10/28,6.122974997115009 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/11/05,3.532950000000008 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/10/29,2.491256097664833 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/11/24,2.296481749999998 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/12/24,24.44116666666665 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/01/08,21.856800000000018 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2021/12/23,21.88613333333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/02/01,22.404625000000006 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/01/24,21.866400000000016 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/02/26,22.171183333333342 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/04/06,8.853849999667514 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/04/06,20.9342750115 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/03/29,21.66638333333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/09,3.368942574999998 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/08,3.719699102999996 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/01,3.911130184666661 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/04/30,5.509741672479157 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/31,6.380058335343332 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/26,8.327774990202494 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/06/10,4.1223317500475005 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/25,3.7382363499999935 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/05/24,5.647904167886664 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/04,20.102374999569975 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/06/29,3.446763639999997 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/11,17.247049999835006 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/03,5.982651895009169 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/06/26,3.8324940999999946 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/06/25,2.949912525 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/08/07,8.580225000072506 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/08/05,2.628700000047498 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/28,3.205309 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/07/27,3.550520316333326 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/10,21.52523333390332 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/08/28,2.7828158500000004 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/22,3.959689398333328 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/30,2.562363055769228 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/29,3.4692249999999984 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/09/21,3.792224999999998 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/10/31,13.167216700641667 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/10/26,20.56347500074 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/11/09,3.571699267857142 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/11/08,3.1352500001925 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/10/24,2.7730884400000004 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/12/10,15.490647725 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/12/02,16.558941666836656 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/11/24,21.77565833333335 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2022/12/27,22.29457500000001 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/02/04,22.25651666666668 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/10,10.435258333238323 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/09,10.72284166657166 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/02,13.03784166657166 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/01,12.702083333285827 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/09,13.826791666666672 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/11,10.29313333598082 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/04/25,13.094174999999984 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/31,9.107427270072504 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/26,3.520159694884165 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/06/05,12.785591669039164 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/28,4.574235606666669 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/05/27,22.494925 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/06/22,3.452786979739165 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/07/06,7.051625000120011 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/06/21,7.374259000000004 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/10,14.495175000072477 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/05,4.149186350144992 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/07/31,2.6980750000000047 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/07/30,3.1510658750000027 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/07/23,3.378229604999995 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/06,9.19701515333333 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/01,18.48010000014501 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/09,12.179216666976664 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/01,3.928275000797494 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/31,4.352992436666658 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/24,4.034993690144994 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/08/23,2.2979249499999987 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/10/03,12.240220001099994 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/28,10.085304167569165 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/10/03,11.929600000192504 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/10/02,11.977925000072505 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/09/25,6.0737750006275055 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/11/03,3.8399333416666663 -Deer River Flow,15454560,-74.30096478388923,44.65057226894574,2023/11/28,3.163709 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/01/05,21.791766666666685 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/03/10,21.791766666666685 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/02/22,21.750616666666684 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/03/10,21.791766666666685 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/02/22,21.750616666666684 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/05,12.45480000000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/06,4.5456000000725005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/05,12.45480000000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/06,4.5456000000725005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/06/06,8.173762497707507 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/30,3.639150000502498 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/29,2.7148022500000053 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/06/06,8.173762497707507 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/30,3.639150000502498 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/05/29,2.7148022500000053 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/08,10.699200000045 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/06/22,7.131264999427498 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/08,10.699200000045 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/06/22,7.131264999427498 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/09,3.385687943333332 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/02,15.210666666604157 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/24,17.38614166666666 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/10,3.0808636000000003 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/01,3.5260750000000045 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/25,4.439577250000005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/09,3.385687943333332 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/02,15.210666666604157 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/24,17.38614166666666 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/10,3.0808636000000003 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/01,3.5260750000000045 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/07/25,4.439577250000005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/25,8.636852324297497 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/11,3.645799330769224 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/08/25,8.636852324297497 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/11,3.645799330769224 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/10/05,12.657298116705832 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/26,3.807830079999993 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/10/04,2.6238272000000022 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/27,2.7287189182692297 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/10/05,12.657298116705832 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/26,3.807830079999993 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/10/04,2.6238272000000022 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/09/27,2.7287189182692297 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/05,13.83038333361833 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/05,13.83038333361833 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/12/08,14.834906250145009 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/29,9.690940032380944 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/22,10.91728638146249 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/21,13.169708333533327 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/12/08,14.834906250145009 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/29,9.690940032380944 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/22,10.91728638146249 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2015/11/21,13.169708333533327 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/01/24,21.675758333333352 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/01/24,21.675758333333352 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/03/05,12.946783333238336 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/03/05,12.946783333238336 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/05,3.5957641009999946 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/03/29,7.456875002585007 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/05,3.5957641009999946 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/03/29,7.456875002585007 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/07,3.957191042005237 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/30,4.6013431899999935 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/21,7.295234107372498 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/29,12.709250000262497 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/22,3.3329432 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/07,3.957191042005237 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/30,4.6013431899999935 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/21,7.295234107372498 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/29,12.709250000262497 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/04/22,3.3329432 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/23,9.181915027541065 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/31,3.854029174721665 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/24,3.1351613500000006 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/23,9.181915027541065 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/31,3.854029174721665 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/05/24,3.1351613500000006 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/03,6.828753035778338 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/06/24,5.185723105708335 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/11,2.9544044999999994 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/06/25,2.5010821057692305 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/03,6.828753035778338 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/06/24,5.185723105708335 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/11,2.9544044999999994 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/06/25,2.5010821057692305 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/11,3.121815935434997 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/04,3.0071606 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/26,7.700802089428326 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/03,2.838329490000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/27,3.0642398524999988 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/11,3.121815935434997 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/04,3.0071606 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/26,7.700802089428326 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/03,2.838329490000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/07/27,3.0642398524999988 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/05,3.621745278205126 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/27,2.710195576831504 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/04,2.5600068000000005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/05,3.621745278205126 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/08/27,2.710195576831504 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/04,2.5600068000000005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/07,3.20720016366666 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/28,8.441850010000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/21,3.0950932100724997 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/06,2.64751220576923 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/29,3.0579453749999965 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/07,3.20720016366666 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/28,8.441850010000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/21,3.0950932100724997 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/06,2.64751220576923 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/09/29,3.0579453749999965 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/11/08,5.635722037714279 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/23,6.75339999754501 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/11/07,3.081192874038461 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/11/08,5.635722037714279 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/10/23,6.75339999754501 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/11/07,3.081192874038461 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/10,5.651925000200007 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/09,2.523602250000003 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/10,5.651925000200007 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/09,2.523602250000003 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/25,12.900258332855833 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2016/12/25,12.900258332855833 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/03,10.000733333118344 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/03,10.000733333118344 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/28,10.936099999762494 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/19,9.275500001384998 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/03/08,11.488879166619164 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/20,15.410674999905009 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/28,10.936099999762494 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/19,9.275500001384998 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/03/08,11.488879166619164 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/02/20,15.410674999905009 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/03/23,22.26459166666668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/03/23,22.26459166666668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/04/24,6.956681066666662 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/05/11,2.2238045000000017 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/04/24,6.956681066666662 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/05/11,2.2238045000000017 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/06/11,5.599670296361668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/05/27,4.722952300119992 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/06/11,5.599670296361668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/05/27,4.722952300119992 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/06,7.859700001567503 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/05,4.434150000000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/06,7.859700001567503 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/05,4.434150000000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/29,7.965943754232499 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/22,16.567933334090828 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/30,2.7672458807692317 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/29,7.965943754232499 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/22,16.567933334090828 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/07/30,2.7672458807692317 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/08/30,3.8105590999999897 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/08/23,8.76955416618917 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/08/30,3.8105590999999897 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/08/23,8.76955416618917 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/10,8.158414428478329 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/01,3.961719766666657 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/09/24,7.956796213405837 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/02,2.8313349182692304 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/09/23,4.4619500000724965 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/10,8.158414428478329 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/01,3.961719766666657 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/09/24,7.956796213405837 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/02,2.8313349182692304 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/09/23,4.4619500000724965 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/11/11,3.9429236119999977 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/11/10,2.6611081500000013 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/25,3.471138500000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/11/11,3.9429236119999977 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/11/10,2.6611081500000013 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/10/25,3.471138500000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/12/04,3.1575729167116715 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2017/12/28,21.856800000000018 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/04/11,21.955966666666672 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/05/05,10.876550000000003 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/04/28,9.64982499911 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/05/29,4.3341481226241685 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/05/30,3.826324999999997 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/07/09,4.655434306666652 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/06/30,8.147912494099996 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/07/08,11.815741667239164 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/06/22,3.226705293269231 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/08/10,3.2314918748717947 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/08/09,2.57305225 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/09/03,2.8804045000000054 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/08/25,6.592233336830828 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/10/05,2.492458455769229 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/12/07,5.511074997590006 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2018/11/22,3.0284750000000047 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/02/10,13.133333333070832 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/02/26,22.09913333333335 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/04/23,6.0451083367616665 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/05/08,7.532108337980821 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/04/22,4.334647724999999 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/06/10,18.492550000000005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/06/01,12.253099999784997 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/06/09,2.5821134500000005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/07/03,4.794433376942745 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/07/04,11.002508333380815 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/08/04,13.978116682239158 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/07/28,6.886895830413352 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/08/05,2.6109636500000017 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/07/27,4.998825000072492 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/09/05,5.111924537435891 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/09/06,3.081625094102564 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/09/21,7.159514393333332 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/10/08,2.62335675 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/09/29,3.820069706394166 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/11/08,5.022474998900014 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/10/23,8.315595830098344 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/11/09,5.453150000290001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/12/11,12.32407501027 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2019/11/25,3.788761745192306 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/02/05,22.373925000000007 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/03/08,14.598508333333328 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/03/07,21.675758333333352 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/02/29,21.919450000000012 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/02/20,21.88613333333335 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/04/01,3.0635000000000074 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/05/02,18.99106669426668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/04/25,5.295545479999994 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/05/03,4.382650029999994 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/05/27,3.3427589513333285 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/06/11,2.650825000000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/06/04,2.7428750000000046 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/05/26,2.7499845000000023 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/07/05,12.04829999843 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/06/28,8.12553374849252 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/07/06,2.5314088500000027 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/06,3.1357211749999987 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/07/30,3.140104049102563 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/07,3.129749485576923 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/31,2.8332411333333334 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/22,3.712139026483334 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/30,4.592900000047496 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/08/23,2.619646975000003 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/10/09,4.637943259999991 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/09/23,5.185137915304171 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/10/10,11.61524166839166 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/09/24,14.668150000214991 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/11/10,4.709064449380947 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/11/03,15.003512918461688 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/10/25,11.219225021950008 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2020/12/29,4.263645316346154 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/01/29,22.76205 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/03/02,22.407050000000005 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/04/03,15.278816692256678 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/03/26,16.720314584303356 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/05/06,4.987425000167497 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/06/06,14.444575018400004 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/06/07,14.12027500033748 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/05/29,5.199393567762493 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/06/23,3.3236213919230746 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/07/24,17.01762083319081 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/08/10,6.304909090094998 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/07/25,9.010750000072498 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/08/25,12.821691671894175 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/09/11,3.6151295000000023 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/08/26,3.926917446153847 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/09/26,6.776202270000002 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/06,6.06889999452001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/10/28,7.02442499863501 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/05,2.278487750000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/10/29,3.3357689423076926 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/29,5.621211819230762 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/24,2.935757668269229 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/11/21,2.543417625000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2021/12/24,11.465750000000003 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/02/01,22.47810000000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/01/25,22.539900000000006 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/02/26,22.18061666666668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/06,6.820245829410835 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/06,12.73514356694751 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/03/29,21.791766666666685 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/03/22,15.652589583500838 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/09,2.4893498000000007 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/08,5.503125000072495 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/01,2.80638684 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/30,10.982475 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/23,3.5806272500000045 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/04/22,4.397421218525834 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/31,10.762862500407488 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/26,12.254783338410828 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/25,2.8701545000000004 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/05/24,5.432500000434991 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/04,3.41114394391333 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/06/29,3.3080137399999963 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/04,2.801855250047502 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/03,7.035004169219154 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/06/26,4.3081 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/06/25,2.426074790000001 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/28,3.302819762948717 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/07/27,2.709652250000006 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/09/10,2.5907469666666687 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/08/24,9.954943714883576 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/08/28,7.4866290000000015 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/09/22,6.755205304874165 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/08,3.117025000000008 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/09/30,3.522746669871796 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/09/21,3.3556772500000016 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/31,6.531304168676669 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/26,10.003125000000018 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/11/09,3.252110274038462 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/11/08,2.126279374999997 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/24,3.1282512826923043 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/10/23,11.058525000199984 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/12/10,2.3725952999999995 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/12/02,2.7067317499999985 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/11/24,3.33065558076923 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2022/12/27,3.702315267307691 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/02/04,22.29766666666668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/04/10,23.92948125059002 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/04/09,10.675524999904992 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/04/02,11.619433333238328 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/09,16.88396666666668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/11,11.38140000689999 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/31,3.098575614666665 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/26,3.438389997999997 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/06/05,12.689866669039176 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/06/04,3.019200000000002 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/28,4.005381820072502 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/05/27,22.51129166666668 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/06/22,3.053173483623332 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/07/06,2.1692529133333345 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/06/21,4.481936269999999 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/05,3.7088948634058263 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/07/30,3.806275000000007 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/07/22,3.0872407499999976 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/06,3.675693933333327 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/01,7.370586361012504 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/27,7.620137499762515 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/09,12.762199999999984 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/01,5.905700000505002 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/31,4.231437123333324 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/24,7.234934091207507 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/08/23,2.677760705769231 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/10/03,6.817208322860843 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/28,11.607539593455826 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/10/03,5.597948978256548 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/10/02,3.0743049649999987 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/09/25,7.787575000650011 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/11/03,3.490358316666664 -Meacham Lake,15454662,-74.28649555536026,44.56193194856396,2023/11/28,3.0202987499999976 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/01/05,11.057450000000006 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2014/12/29,11.017841667051671 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/01/29,22.351800000000008 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/01/29,22.351800000000008 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/03/11,22.32207499935501 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/03/10,21.791766666666685 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/02/22,21.75304166666668 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/03/11,22.32207499935501 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/03/10,21.791766666666685 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/02/22,21.75304166666668 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/05,10.968912507814997 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/06,11.88355835180584 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/05,10.968912507814997 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/06,11.88355835180584 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/06,8.26571083218834 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/30,13.395733334875851 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/07,16.510650000784988 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/29,18.375458333333324 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/22,2.979929500000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/06,8.26571083218834 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/30,13.395733334875851 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/07,16.510650000784988 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/29,18.375458333333324 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/05/22,2.979929500000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/22,13.545304168146664 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/06/22,13.545304168146664 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/09,14.606716691966678 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/07/24,3.932960618344164 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/10,2.356701825 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/01,10.312183367833333 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/07/25,5.738175000962498 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/09,14.606716691966678 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/07/24,3.932960618344164 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/10,2.356701825 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/01,10.312183367833333 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/07/25,5.738175000962498 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/03,7.860195824323338 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/25,7.262990146929168 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/11,3.525050000000008 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/02,6.703104925097491 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/03,7.860195824323338 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/08/25,7.262990146929168 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/11,3.525050000000008 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/02,6.703104925097491 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/10/05,7.812250000025 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/26,3.4302150599999948 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/10/04,4.0878000082425 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/27,2.3203726298076903 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/10/05,7.812250000025 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/26,3.4302150599999948 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/10/04,4.0878000082425 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/09/27,2.3203726298076903 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/05,2.570954500000003 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/05,2.570954500000003 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/12/08,6.716999995810012 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/29,14.714058337858344 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/22,11.67775750215002 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/12/08,6.716999995810012 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/29,14.714058337858344 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2015/11/22,11.67775750215002 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/01/08,21.66638333333335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/01/08,21.66638333333335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/01/24,21.67155833333335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/01/24,21.67155833333335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/02/26,22.674233333333337 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/03/05,13.309949999522496 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/02/26,22.674233333333337 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/03/05,13.309949999522496 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/05,7.530805159666667 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/03/29,7.915448332500853 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/05,7.530805159666667 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/03/29,7.915448332500853 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/07,7.606969716666663 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/30,3.6252697016666606 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/21,3.767356076666661 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/29,5.986835000047491 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/07,7.606969716666663 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/30,3.6252697016666606 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/21,3.767356076666661 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/04/29,5.986835000047491 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/23,13.206808345028335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/31,4.953121622940001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/24,5.7565041754791695 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/23,13.206808345028335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/31,4.953121622940001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/05/24,5.7565041754791695 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/03,3.524504609999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/06/24,4.033578798478327 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/11,3.643300000072492 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/06/25,2.257429425000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/03,3.524504609999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/06/24,4.033578798478327 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/11,3.643300000072492 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/06/25,2.257429425000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/11,4.960156073333325 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/04,3.9329090999999927 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/03,2.290601937500002 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/27,4.486051424999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/11,4.960156073333325 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/04,3.9329090999999927 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/03,2.290601937500002 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/07/27,4.486051424999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/05,3.250828699999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/27,3.44103723230769 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/04,9.62052500000002 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/28,2.525825000000004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/05,3.250828699999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/27,3.44103723230769 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/04,9.62052500000002 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/08/28,2.525825000000004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/07,8.310976506666659 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/28,16.03504166666668 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/21,2.9735581949999976 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/06,2.428223680769228 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/29,6.1550568799999965 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/07,8.310976506666659 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/28,16.03504166666668 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/21,2.9735581949999976 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/06,2.428223680769228 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/09/29,6.1550568799999965 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/11/08,4.408873360714278 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/23,3.475876168556069 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/11/07,2.516858393269229 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/11/08,4.408873360714278 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/10/23,3.475876168556069 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/11/07,2.516858393269229 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/12/10,22.674233333333337 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2016/12/10,22.674233333333337 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/02/19,22.373925000000007 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/02/20,13.897549999904998 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/02/19,22.373925000000007 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/02/20,13.897549999904998 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/03/23,22.26459166666668 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/03/23,22.26459166666668 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/04/24,8.171667431666664 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/05/11,2.701145400000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/04/25,21.66638333333335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/04/24,8.171667431666664 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/05/11,2.701145400000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/04/25,21.66638333333335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/06/11,7.2432219681033265 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/06/11,7.2432219681033265 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/05,3.06785815 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/06/28,20.922900000094977 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/05,3.06785815 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/06/28,20.922900000094977 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/29,3.906802275144993 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/30,2.284365625000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/29,3.906802275144993 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/07/30,2.284365625000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/08/30,3.411372750072498 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/08/31,4.544275000072492 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/08/30,3.411372750072498 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/08/31,4.544275000072492 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/10,8.77674697166667 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/01,4.229433985714279 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/09/24,3.131076506739161 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/02,2.3675030673076893 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/09/23,7.0320500001424975 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/10,8.77674697166667 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/01,4.229433985714279 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/09/24,3.131076506739161 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/02,2.3675030673076893 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/09/23,7.0320500001424975 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/11/11,3.360429688666664 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/11/10,22.86025833287333 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/25,5.79219398333333 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/11/11,3.360429688666664 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/11/10,22.86025833287333 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/10/25,5.79219398333333 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2017/12/04,8.228681666009187 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/05/05,10.592008370133335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/04/28,10.81438333319084 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/05/29,4.861888415869281 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/05/30,3.5634250000724963 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/07/09,5.638199246811669 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/06/30,14.510758333568356 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/07/08,13.643112500072498 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/07/01,7.696500000384989 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/06/22,2.668403650000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/08/10,3.442867349999995 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/08/09,3.4392250000000057 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/09/03,3.2488294999999976 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/08/25,5.513021917999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/09/27,8.161387494080007 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/10/05,3.307518574999999 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2018/11/22,21.663008333333355 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/02/10,11.250041666571674 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/01/25,11.815449999857504 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/02/26,21.75304166666668 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/04/23,13.33462642020998 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/05/08,3.92267501 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/04/22,10.771849472698332 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/06/09,2.7320468000000004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/07/03,13.229208335730853 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/08/04,16.82495000000003 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/08/05,2.0140634375000004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/07/27,8.956550000000007 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/09/05,3.490862876666659 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/08/29,7.649037502274996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/09/06,4.139754534999995 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/09/21,6.82338939333333 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/10/08,5.619472749999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/09/29,12.830516666666655 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/11/01,10.154830836023349 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/10/23,7.81501665985667 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2019/12/11,17.444566666359197 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/02/21,22.539900000000006 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/03/07,21.88613333333335 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/03/31,7.115966665931674 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/04/01,4.215385855769229 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/05/02,13.844950032200018 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/04/25,5.455550014999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/05/03,4.8935309179999935 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/04/24,4.263116674195829 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/05/27,3.4830841000724924 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/05/26,3.306899413333326 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/07/05,17.09589166647666 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/07/06,3.976350549999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/06,20.99460833364333 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/07,2.354091227500002 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/31,2.5214220000000007 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/22,4.218876180493215 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/08/23,8.474302270072503 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/10/09,4.9753341599999885 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/09/23,12.989816767226673 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/10/10,13.06975833363334 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/11/10,4.85803565771428 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2020/10/25,11.11151917164665 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/01/29,23.026316666666663 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/02/06,11.346783333238342 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/03/02,22.47810000000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/05/06,3.489620894999997 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/06/06,11.231612500239995 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/06/07,4.174741666666663 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/05/29,22.30125000060001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/06/23,2.7913999999999985 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/08/02,4.118214997605006 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/07/24,12.232775000855009 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/08/10,8.234802270000007 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/07/25,5.649700000047493 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/08/25,4.719433334775837 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/09/11,3.417224999999998 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/08/26,3.786031749999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/11/06,4.4644863904541685 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/11/05,2.4181702900000004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/10/29,2.343973555769228 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/11/24,7.41681446153847 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/11/21,3.1838604899999963 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/12/24,23.59424999999999 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2021/12/23,2.9757022500475028 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/02/26,22.863891666666667 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/04/06,9.294599999915022 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/04/06,13.4331062533325 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/03/29,21.750616666666684 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/09,4.860225019999991 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/09,3.138232625 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/08,10.735891679544157 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/01,3.0212981 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/04/30,4.754734100000001 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/04/23,21.647991666836656 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/26,15.437845832903326 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/25,4.409090909999992 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/05/24,6.097250000574999 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/07/04,13.539025016432497 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/06/29,4.58618864999999 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/07/04,2.740502250000006 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/07/03,11.81992500012 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/06/26,4.025637123333326 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/06/25,4.239982593333329 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/08/07,4.304886494241074 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/07/28,3.176943288076922 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/10,11.207793180675004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/08/24,16.28699583418835 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/08/28,3.030180929395602 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/22,6.759599991450012 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/10/08,2.991025000000004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/30,2.223374824999998 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/29,3.447641461538461 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/09/21,5.96115 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/10/31,5.796926785557734 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/11/09,2.662090960164835 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/11/08,2.033106699999996 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/10/24,6.151550001484988 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/12/10,2.9409816500000017 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/12/02,7.479525001059987 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/11/24,4.84262725 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2022/12/27,11.101125000385004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/02/04,22.274983333333346 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/04/10,12.534783333285825 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/04/09,11.430683333238326 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/04/02,11.403958333238329 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/04/01,20.392008333238365 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/09,13.785308333333344 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/11,17.371166666666667 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/31,3.922828638217494 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/26,3.3302922679999964 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/06/05,17.468295834903337 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/28,6.411875000190004 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/05/27,10.131300000332498 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/06/22,2.949237728362498 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/07/06,4.081093199999994 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/06/21,3.364081749999999 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/10,17.31904999985749 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/05,2.762384853333332 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/07/31,6.997650000362497 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/07/22,3.3834000000000075 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/06,7.658624243333334 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/01,7.103287877196666 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/27,6.639424992800013 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/09,13.685000000399986 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/01,4.977404169711664 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/31,3.8838795699999946 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/24,14.49500000095499 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/08/23,2.267522699999998 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/28,14.145695918743336 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/23,6.553339780465 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/10/03,14.57385000007249 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/10/02,4.216899002499993 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/09/25,26.282841666666663 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/11/03,5.498056859999991 -Osgood Pond,15457234,-74.23690064837724,44.45110087854607,2023/11/28,3.013704500000005 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2014/12/29,10.426750759054164 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/07,22.348225000000006 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/06,21.88613333333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/07,22.348225000000006 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/06,21.88613333333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/03/02,22.373925000000007 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/23,22.373925000000007 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/03/10,21.67155833333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/22,10.747641666451672 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/03/02,22.373925000000007 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/23,22.373925000000007 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/03/10,21.67155833333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/02/22,10.747641666451672 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/05,7.609974999785006 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/06,13.55215001828253 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/05,7.609974999785006 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/06,13.55215001828253 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/06,7.757137495462502 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/30,7.813799995162506 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/07,17.36050833333331 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/29,20.345658331683357 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/22,2.584754500047502 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/06,7.757137495462502 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/30,7.813799995162506 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/07,17.36050833333331 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/29,20.345658331683357 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/05/22,2.584754500047502 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/08,9.029724990850005 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/22,5.108039847117731 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/08,9.029724990850005 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/06/22,5.108039847117731 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/09,2.465490199999999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/24,12.102525001560004 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/10,3.563298299999992 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/01,5.407575000072497 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/25,13.710516676659164 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/09,2.465490199999999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/24,12.102525001560004 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/10,3.563298299999992 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/08/01,5.407575000072497 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/07/25,13.710516676659164 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/03,6.39878561113667 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/11,3.22620675 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/02,13.142750000072509 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/03,6.39878561113667 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/11,3.22620675 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/02,13.142750000072509 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/10/05,4.575633939664165 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/26,3.724368169999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/10/04,5.485723297789051 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/27,6.184982398205121 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/10/05,4.575633939664165 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/26,3.724368169999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/10/04,5.485723297789051 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/09/27,6.184982398205121 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/05,7.163550000072502 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/05,7.163550000072502 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/12/08,3.787542436811665 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/29,4.784276526856669 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/22,3.469739162129163 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/12/07,3.556582500095004 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/12/08,3.787542436811665 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/29,4.784276526856669 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/11/22,3.469739162129163 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2015/12/07,3.556582500095004 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/02/26,22.659766666666677 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/03/05,10.223024999427508 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/02/26,22.659766666666677 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/03/05,10.223024999427508 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/05,10.193359099999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/05,10.193359099999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/07,7.094090275659408 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/30,3.3029403103333324 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/21,7.508739399999999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/29,10.385050000072509 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/22,3.654444230769232 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/07,7.094090275659408 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/30,3.3029403103333324 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/21,7.508739399999999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/29,10.385050000072509 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/04/22,3.654444230769232 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/23,4.198083333638333 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/31,6.254208346981663 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/24,2.6449978399999985 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/23,4.198083333638333 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/31,6.254208346981663 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/05/24,2.6449978399999985 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/03,3.930406822635 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/06/24,5.998444703167503 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/11,4.344250001014995 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/06/25,3.471310414102561 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/03,3.930406822635 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/06/24,5.998444703167503 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/11,4.344250001014995 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/06/25,3.471310414102561 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/11,5.18512500503 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/04,2.702109089999999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/03,3.678072880769225 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/27,4.549761530769223 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/11,5.18512500503 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/04,2.702109089999999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/03,3.678072880769225 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/07/27,4.549761530769223 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/05,2.954624099999996 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/27,2.928171505769229 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/04,11.532408333380843 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/28,8.354425000217496 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/05,2.954624099999996 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/27,2.928171505769229 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/04,11.532408333380843 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/08/28,8.354425000217496 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/07,8.77610973904761 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/28,10.297808329405832 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/21,3.31398759433333 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/06,4.928448747435897 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/29,5.166505600769227 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/07,8.77610973904761 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/28,10.297808329405832 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/21,3.31398759433333 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/06,4.928448747435897 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/09/29,5.166505600769227 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/11/08,8.78026057855082 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/23,10.583880245877726 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/11/07,3.135874855769229 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/11/08,8.78026057855082 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/10/23,10.583880245877726 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/11/07,3.135874855769229 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/12/10,9.233066666201692 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/12/10,9.233066666201692 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/01/02,22.407050000000005 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/12/25,21.75304166666668 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/01/02,22.407050000000005 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2016/12/25,21.75304166666668 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/04,21.919450000000012 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/04,21.919450000000012 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/19,21.091983333190857 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/03/08,15.753575000952512 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/20,15.013224999905008 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/19,21.091983333190857 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/03/08,15.753575000952512 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/02/20,15.013224999905008 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/03/23,22.26459166666668 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/03/23,22.26459166666668 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/04/24,14.09923333563335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/05/11,14.327441667151666 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/04/24,14.09923333563335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/05/11,14.327441667151666 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/06/11,7.695116663299173 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/05/27,3.0667272500000053 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/06/11,7.695116663299173 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/05/27,3.0667272500000053 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/05,3.3817854499999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/06/28,12.424699999999987 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/05,3.3817854499999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/06/28,12.424699999999987 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/29,7.715475000120008 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/22,8.644860833428346 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/30,2.588198193269231 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/29,7.715475000120008 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/22,8.644860833428346 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/07/30,2.588198193269231 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/08/30,3.558693189999998 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/08/31,3.2601500000000025 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/08/30,3.558693189999998 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/08/31,3.2601500000000025 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/10,23.18283821063944 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/01,3.838935001999991 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/09/24,4.849825758966674 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/02,3.5776532846153817 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/09/23,5.411210606666674 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/10,23.18283821063944 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/01,3.838935001999991 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/09/24,4.849825758966674 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/02,3.5776532846153817 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/09/23,5.411210606666674 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/11,8.642750645714266 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/10,2.8206500000000028 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/25,4.378574999999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/11,8.642750645714266 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/10,2.8206500000000028 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/10/25,4.378574999999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/12/04,4.723897161857508 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2017/11/27,6.103374996270009 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/05/05,4.543712128133326 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/06/07,7.135004169701671 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/05/29,5.839011966015835 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/05/30,5.7847250001925055 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/07/09,3.752145454999991 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/06/30,8.232774999355 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/07/08,6.001789409394167 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/07/01,6.127184092096661 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/06/22,2.2724021 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/08/10,3.364770599999996 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/08/09,7.375100000000009 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/09/03,3.239850000000009 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/08/25,3.2334475783333265 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/10/05,4.64751531533333 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/11/22,21.66638333333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2018/12/23,10.504633333333349 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/02/09,14.01151666834416 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/02/10,12.60705416803166 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/01/25,21.838800000000013 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/03/06,11.543858332658331 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/04/23,8.147416669441661 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/05/08,9.884116675866656 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/04/22,6.295050000000003 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/06/01,10.627750000585008 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/06/09,2.326054200000002 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/07/03,6.111484662045001 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/06/26,4.663450000120001 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/08/04,13.824775000287516 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/07/28,6.132810626428335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/08/05,3.4364945549999946 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/07/27,4.828225000144995 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/09/05,3.105556056666664 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/08/29,8.710701437306074 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/09/06,4.522543174999996 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/09/21,14.33848333568084 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/10/08,3.916411399999999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/10/23,5.433603408295004 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/12/11,9.182729166101687 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2019/11/25,3.923425000000007 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/02/05,22.337341666666678 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/03/08,22.451158333333343 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/02/21,22.658500000000007 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/03/07,21.88613333333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/02/29,21.867666666666683 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/03/31,6.464266666666672 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/05/02,7.191916673254164 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/04/25,8.685191663333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/05/03,3.337825000000005 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/04/24,4.12470833928583 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/05/27,4.178736212999994 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/05/26,3.0744809199999974 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/07/05,5.104251902456666 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/06/28,2.6671500003799986 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/07/06,2.533392686538461 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/06,4.107564885522383 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/07,5.27652725 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/31,2.0693249999999983 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/22,3.255795475144998 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/30,2.7914998200000007 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/08/23,5.318668189999994 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/10/09,9.489249132380936 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/09/23,6.73737083173334 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/10/10,6.722004167121659 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/11/10,3.844028188956664 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/10/25,10.905013335130825 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2020/12/29,21.88613333333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/01/29,11.78734166666667 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/02/06,12.698233335743344 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/01/30,21.88613333333335 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/03/02,22.404625000000006 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/04/03,22.451158333333343 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/03/27,22.337341666666678 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/05/06,3.008205500000001 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/06/06,9.706400386179173 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/06/07,9.87170000815 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/05/29,12.358375000072476 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/06/23,2.5584022500000048 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/08/02,6.819855846683338 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/08/10,8.959278410047512 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/07/25,2.6241250000000007 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/08/25,4.736658334800837 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/09/11,13.31345833393333 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/08/26,4.315290679999999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/09/26,2.9800418519999994 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/06,6.250659090287496 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/05,2.392807237500001 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/10/29,5.000316072435894 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/29,8.515999999792527 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/24,3.2653337365384614 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/11/21,5.520825971999996 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/12/24,24.312499999999982 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/01/08,21.867666666666683 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2021/12/23,4.237997754807693 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/02/01,22.404625000000006 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/01/25,21.57554166666668 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/02/26,22.538633333333337 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/03/30,22.26459166666668 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/04/06,25.411258342533323 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/09,3.343156834999998 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/09,3.1554500566666643 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/08,10.170658348520826 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/01,4.545382369999996 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/04/30,6.621225000000005 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/04/23,12.80714166666666 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/04/22,2.8022250000000044 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/26,17.963524999999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/25,4.003406825047501 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/05/24,5.424595455120001 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/07/04,9.56955000093001 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/06/29,4.417949256666656 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/07/04,3.8563257133808366 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/07/03,2.8513250000475034 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/06/26,3.505470454999992 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/06/25,5.670200001109999 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/07/28,12.460800002284987 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/09/10,9.820612499974988 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/08/24,6.759531663191669 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/08/28,3.4806537399999997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/09/22,3.5041451862852373 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/10/08,3.743913461538464 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/09/30,4.595576388 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/09/21,12.434508333118329 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/10/31,13.843345834600846 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/11/09,3.153206030769229 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/11/08,2.4139362249999965 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/10/24,5.629425000694995 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/12/10,3.760012674999995 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/12/02,6.974700001687487 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/11/24,3.6991399999999977 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2022/12/27,11.991949999642504 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/02/04,22.14189166666668 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/04/10,12.173216666571658 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/04/09,12.03556666657166 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/09,16.75658333793333 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/11,17.11885000230003 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/31,3.051495316333333 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/26,2.8440559129999987 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/06/05,15.866883335705836 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/28,3.409921213333326 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/05/27,10.868683335133325 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/06/22,6.664360606739163 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/07/06,2.518281650000002 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/06/21,3.5264303133333272 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/08/05,2.802248488695832 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/07/31,8.035522561683454 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/07/23,6.997161111491106 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/07/22,2.8607500000000003 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/06,7.364035603405832 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/01,6.8171090906975085 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/09,18.21079166662165 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/01,15.472591669109176 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/08/31,3.4952218899999923 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/08/24,5.243225002474997 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/08/23,2.42667253653846 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/28,12.914391742606677 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/23,4.339150001127501 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/10/03,5.178517171802384 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/10/02,5.084952249999994 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/09/25,15.087825000004983 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/11/03,4.696272155333332 -Lower Saint Regis Lake,15457296,-74.27126537193631,44.41592976984775,2023/11/28,19.115966667036652 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/01/05,8.924749999907512 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/04/03,9.974241666429185 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/04/03,9.974241666429185 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/05,5.110129650113568 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/06,4.640275000144997 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/05,5.110129650113568 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/06,4.640275000144997 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/06/06,13.813016685066671 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/29,4.6109990000000005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/06/06,13.813016685066671 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/05/29,4.6109990000000005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/07/08,7.576174993260004 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/06/22,4.0998030333333215 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/07/08,7.576174993260004 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/06/22,4.0998030333333215 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/09,8.899545848858333 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/01,4.798975 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/09,8.899545848858333 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/01,4.798975 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/25,3.826390994593399 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/08/25,3.826390994593399 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/09/26,3.3791241599999955 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/10/04,13.306583333570831 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/09/26,3.3791241599999955 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/10/04,13.306583333570831 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/11/29,2.859902439102563 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/11/21,16.61256666745166 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/11/29,2.859902439102563 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2015/11/21,16.61256666745166 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/01/24,21.675758333333352 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/01/24,21.675758333333352 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/03/04,11.482333333318334 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/03/04,11.482333333318334 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/04/05,3.484573200999997 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/04/05,3.484573200999997 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/07,7.360921599741669 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/04/21,3.609143209999996 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/07,7.360921599741669 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/04/21,3.609143209999996 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/23,5.453004794591069 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/31,4.569025002299995 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/23,5.453004794591069 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/05/31,4.569025002299995 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/06/24,7.752374246931667 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/06/24,7.752374246931667 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/11,8.581900000385001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/07/26,4.799037564226071 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/03,4.281181819999997 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/11,8.581900000385001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/07/26,4.799037564226071 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/03,4.281181819999997 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/27,3.953953068333321 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/04,9.953892426666677 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/08/27,3.953953068333321 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/04,9.953892426666677 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/07,3.810322616333329 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/28,9.33135417213166 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/21,3.397615054999994 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/06,2.7636705057692303 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/07,3.810322616333329 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/28,9.33135417213166 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/09/21,3.397615054999994 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/06,2.7636705057692303 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/11/08,6.980953033478336 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/23,8.138979435714285 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/11/07,2.4079318932692293 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/11/08,6.980953033478336 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/10/23,8.138979435714285 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/11/07,2.4079318932692293 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/12/09,3.267050000000005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2016/12/09,3.267050000000005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/01/11,12.633908333143332 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/01/11,12.633908333143332 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/02/03,24.072216666666648 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/02/03,24.072216666666648 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/03/23,22.26459166666668 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/03/23,22.26459166666668 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/04/24,13.020558363233343 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/04/24,13.020558363233343 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/06/11,4.9819636882948775 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/06/11,4.9819636882948775 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/07/05,2.832163600000001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/07/05,2.832163600000001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/07/29,14.49829168513917 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/07/29,14.49829168513917 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/08/30,3.906624999999994 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/08/23,15.526913814168337 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/08/30,3.906624999999994 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/08/23,15.526913814168337 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/10,8.935751148212491 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/01,3.4440901566666597 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/09/24,8.743844310000005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/09/23,8.794383333915816 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/10,8.935751148212491 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/01,3.4440901566666597 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/09/24,8.743844310000005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/09/23,8.794383333915816 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/11/11,9.126702084038357 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/11/10,4.269757177884613 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/25,3.137340750000001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/11/11,9.126702084038357 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/11/10,4.269757177884613 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/10/25,3.137340750000001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2017/12/04,9.450633333695864 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/01/29,12.00544166685166 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/03/26,22.120274999785007 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/05/05,11.229963627300007 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/05/29,8.616688640145005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/05/30,2.9332984750000004 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/07/09,4.13313869999999 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/06/30,15.741337499617504 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/07/08,5.060131820047503 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/06/22,2.8989372682692305 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/08/10,2.6511120500000005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/08/09,2.6859022500000056 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/08/25,4.154599999999995 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2018/12/07,22.539900000000006 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/04/23,10.454196980328328 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/05/08,3.0884068199999986 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/04/22,3.1830500000000086 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/06/10,14.306141667549143 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/06/09,2.9072227 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/07/03,18.637433365580844 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/08/04,15.204216680611667 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/07/28,6.175899996915008 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/07/27,3.807354600072496 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/09/05,3.733681086666658 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/08/29,16.914543941686677 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/09/21,3.5656060716666644 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/09/29,18.34194166642165 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2019/10/23,16.518654168101683 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/02/21,22.76205 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/03/07,12.891649999569996 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/02/20,22.373083333333344 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/03/31,5.692427078668341 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/02,4.627339249666664 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/04/25,6.395811375047494 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/10,2.510275000000002 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/03,5.302044557999993 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/04/24,12.617100000384989 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/27,3.693012891666661 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/05/26,3.606474999999989 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/07/05,19.767316665901657 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/08/06,3.502825014999993 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/07/30,3.754794908333325 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/08/31,4.207837498845001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/08/22,3.175989872999996 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/08/30,2.6341874200000013 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/10/09,4.866293189999993 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/11/10,8.635058356666656 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2020/10/25,5.330884810856073 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/01/29,23.02285 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/03/02,22.674233333333337 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/04/03,15.687900016100013 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/06/06,10.501175000285007 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/05/29,13.443433333533312 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/08/02,3.351784105072497 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/09/10,8.064499988454994 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/08/25,17.338283342678334 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/09/26,14.919608347133336 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/06,4.507811365100002 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/10/28,6.769899997990008 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/05,3.234494230769233 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/29,22.64890000000001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/24,2.4889507673076894 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/11/21,3.362111212499997 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2021/12/24,24.44116666666665 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/01/08,21.848400000000016 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/01/25,22.407050000000005 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/04/06,13.353164585828344 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/04/06,14.894300025634989 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/03/29,21.791766666666685 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/05/08,6.186582956657487 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/05/01,4.152340823333327 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/04/30,4.316450000145 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/04/22,3.6264250000000064 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/05/31,19.81600833323833 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/05/24,2.749427250000001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/07/04,3.2051022703624965 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/06/29,3.41464394577333 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/07/03,3.489674999999996 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/06/25,2.5781915275000014 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/08/07,3.6215409099999936 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/09/10,3.886359091377496 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/08/28,2.346161324999999 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/09/21,5.135167432856663 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/10/31,6.684699993445013 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/10/26,21.181508333228336 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/11/08,2.349798680769228 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2022/12/10,2.553929350000001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/02/04,22.23312500000001 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/04/01,15.526410417419177 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/09,17.520539587933346 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/11,5.593300000072504 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/31,3.119840003072498 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/26,3.905050000072494 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/06/04,5.427000000452492 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/05/27,17.768825001317495 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/06/22,2.576597730145 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/07/06,4.475032583333327 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/08/05,5.034000003594997 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/07/30,6.541977275120002 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/07/22,4.656574999999998 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/09/06,3.442527275144992 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/09/01,10.708218180627505 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/08/31,3.788727339999993 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/08/23,2.770609813333333 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/10/03,13.49406666690668 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/09/28,12.40099514255548 -Joe Indian Pond,15465683,-74.72506933806528,44.48515441102068,2023/10/02,2.73526935 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2014/12/29,13.440699999952502 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/01/22,23.54250833333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/01/22,23.54250833333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/02/22,22.376383333333347 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/02/22,22.376383333333347 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/04/03,9.39795833316585 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/04/03,9.39795833316585 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/06,4.279850000264999 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/06,4.464100000312499 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/06,4.279850000264999 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/06,4.464100000312499 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/06,8.51288583218834 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/30,8.224591652741665 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/07,13.02705833333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/07,12.591599999999982 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/29,4.668500000094998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/22,7.594518342533327 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/22,11.743735028750002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/06,8.51288583218834 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/30,8.224591652741665 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/07,13.02705833333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/06/07,12.591599999999982 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/29,4.668500000094998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/22,7.594518342533327 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/05/22,11.743735028750002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/07/08,4.319116403168217 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/07/08,4.319116403168217 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/09,7.138396971666665 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/10,18.576658333613334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/10,3.2988522500000066 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/09,7.138396971666665 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/10,18.576658333613334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/10,3.2988522500000066 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/25,7.048361668584168 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/11,2.6858750000000056 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/11,3.2824022500000067 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/02,9.341950000217498 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/26,2.5334250000000025 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/26,2.6900250000000057 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/25,7.048361668584168 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/11,2.6858750000000056 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/11,3.2824022500000067 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/02,9.341950000217498 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/26,2.5334250000000025 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/08/26,2.6900250000000057 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/10/05,7.755624998635011 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/26,3.008574261666663 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/10/04,3.821614884414879 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/27,3.040997912728936 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/27,3.066235411767397 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/10/05,7.755624998635011 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/26,3.008574261666663 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/10/04,3.821614884414879 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/27,3.040997912728936 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/09/27,3.066235411767397 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/05,2.085442999999997 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/05,2.085442999999997 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/29,15.150725039190004 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/22,4.057794567692308 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/30,20.800941666836675 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/30,21.136491666836672 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/21,20.13986250018499 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/29,15.150725039190004 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/22,4.057794567692308 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/30,20.800941666836675 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/30,21.136491666836672 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2015/11/21,20.13986250018499 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/01/08,12.887449999569997 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/01/08,12.887449999569997 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/01/24,21.791766666666685 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/01/24,21.791766666666685 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/02/26,22.47810000000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/03/05,12.575958333470831 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/03/05,12.522983333470831 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/02/26,22.47810000000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/03/05,12.575958333470831 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/03/05,12.522983333470831 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/05,13.35783561063334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/05,13.35783561063334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/07,7.490341671889171 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/30,6.914265929999992 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/21,17.840012148000035 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/07,7.490341671889171 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/30,6.914265929999992 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/04/21,17.840012148000035 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/23,5.4794099911000025 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/31,4.572740171253333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/24,4.910550000264993 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/24,4.752746400144994 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/23,5.4794099911000025 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/31,4.572740171253333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/24,4.910550000264993 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/05/24,4.752746400144994 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/03,5.771310611468334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/24,8.515458334685837 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/11,13.549733333333318 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/11,14.299108333523316 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/25,2.730301685769228 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/25,2.930897795741759 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/03,5.771310611468334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/24,8.515458334685837 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/11,13.549733333333318 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/11,14.299108333523316 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/25,2.730301685769228 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/06/25,2.930897795741759 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/11,6.446818180457507 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/04,3.0134840999999994 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/03,2.323178299999999 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/27,3.124146155 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/27,3.285391537371793 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/11,6.446818180457507 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/04,3.0134840999999994 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/03,2.323178299999999 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/27,3.124146155 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/07/27,3.285391537371793 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/05,5.046521713919409 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/27,3.4064021264058293 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/04,2.529179500000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/28,13.28337500021499 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/28,12.238575000429998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/05,5.046521713919409 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/27,3.4064021264058293 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/04,2.529179500000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/28,13.28337500021499 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/08/28,12.238575000429998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/07,3.44092349833333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/28,2.656077136333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/21,2.890220159666665 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/06,2.430213411538459 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/29,4.777425000144995 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/29,4.171275000144998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/07,3.44092349833333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/28,2.656077136333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/21,2.890220159666665 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/06,2.430213411538459 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/29,4.777425000144995 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/09/29,4.171275000144998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/11/08,5.943912025714284 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/23,4.80238867271428 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/11/07,2.648908293269231 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/11/08,5.943912025714284 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/10/23,4.80238867271428 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2016/11/07,2.648908293269231 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/01/02,22.34590833333334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/01/02,22.34590833333334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/04,12.549683333118324 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/04,21.36779166666669 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/04,12.549683333118324 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/04,21.36779166666669 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/08,14.182399999905003 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/08,15.153037500000016 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/27,12.249049999905004 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/20,20.247183333238368 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/08,14.182399999905003 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/08,15.153037500000016 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/27,12.249049999905004 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/02/20,20.247183333238368 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/23,22.26459166666668 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/04/09,12.776891666404168 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/03/23,22.26459166666668 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/04/09,12.776891666404168 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/04/24,12.16456666673916 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/05/11,2.34536563 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/05/11,2.4139707500000003 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/04/24,12.16456666673916 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/05/11,2.34536563 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/05/11,2.4139707500000003 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/06/11,9.18362082726333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/06/11,9.18362082726333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/05,2.2833635999999995 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/05,2.2833635999999995 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/07,7.221321247832513 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/29,12.746708346223336 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/30,3.771827530769227 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/30,2.7263787500000016 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/07,7.221321247832513 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/29,12.746708346223336 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/30,3.771827530769227 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/07/30,2.7263787500000016 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/30,4.463707576949165 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/23,8.198956253529992 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/30,4.463707576949165 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/08/23,8.198956253529992 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/01,4.434513719999993 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/09/24,6.0763272701450015 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/02,2.663874516895604 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/02,2.715553649038461 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/09/23,5.790500000720001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/01,4.434513719999993 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/09/24,6.0763272701450015 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/02,2.663874516895604 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/02,2.715553649038461 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/09/23,5.790500000720001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/11,8.454083222380943 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/10,2.762302250000006 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/25,5.576956879999996 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/11,8.454083222380943 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/10,2.762302250000006 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/10/25,5.576956879999996 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/12/04,8.660199999725018 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2017/11/26,3.338100000000007 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/05/05,3.89413411 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/04/28,12.916191668871663 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/04/28,12.822841666571668 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/05/29,4.114163970808213 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/05/30,3.949699644102555 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/05/30,3.830873513333324 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/07/09,4.517191899999987 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/07/08,13.43515833333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/06/22,5.003957205422498 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/08/10,3.845524863333329 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/08/09,10.98232500663749 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/09/03,4.469127250000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/09/03,6.290277249999999 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/08/25,3.972800000000002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/10/05,2.847169500000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/10/05,3.228598169999996 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/12/08,21.794191666666684 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/11/22,21.67155833333335 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/11/22,21.66638333333335 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2018/12/23,9.899933333333344 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/02/09,22.309808333333343 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/03/06,11.875275000000004 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/02/26,21.856800000000018 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/02/26,21.867666666666683 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/04/23,7.11805832754834 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/05/08,5.584025002727493 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/04/22,2.1675384499999963 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/06/01,9.900379166629191 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/06/09,4.171294440084879 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/07/03,6.4258229220966685 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/08/04,9.230887501942496 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/08/05,8.452452270000002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/08/05,2.7605337000000016 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/07/27,2.783175000047501 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/05,5.154123037435888 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/08/29,2.757281067029165 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/06,2.4045976 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/06,2.682679380357143 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/30,11.428949998729996 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/21,7.159514393333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/10/08,3.724665122307686 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/10/08,2.534352243269232 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/09/29,18.683374999325004 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/08,7.014799997377512 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/01,8.166273333128352 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/10/23,4.653738671363336 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/09,3.763400000000002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/25,18.173689584275856 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2019/11/25,18.627191666476687 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/02/05,22.64890000000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/03/08,22.44243333333334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/03/07,21.675758333333352 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/02/20,13.0309500002375 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/04/01,4.48311838326923 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/04/01,4.222968383269231 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/02,13.08780837650835 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/03,3.408032759999997 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/03,2.493077475000004 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/27,3.4918272800724925 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/06/04,5.491084092311661 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/06/04,4.605410236491666 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/05/26,3.461534858333331 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/07/05,17.155400000047486 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/07/06,2.74710890576923 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/07/06,2.907530985576924 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/06,4.482549626734167 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/07/30,5.096965912975003 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/07,4.125204500000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/07,3.905537242307688 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/22,10.169850011859989 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/30,2.834275000000005 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/23,4.404025014999995 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/08/23,2.5848609500000026 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/10/09,5.697267332380947 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/09/23,7.268402308162507 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/10/10,4.620449999999994 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/10/10,7.871100000072497 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/09/24,8.450725000192486 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/09/24,9.774575000192485 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/11/10,8.848746233333323 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/10/25,7.421227497544997 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2020/12/29,21.75304166666668 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/01/29,22.351800000000008 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/02/06,21.867666666666683 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/01/30,21.856800000000018 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/01/30,21.867666666666683 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/03/02,22.404625000000006 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/04/03,22.44243333333334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/04/04,14.12927500248999 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/04/04,14.361258338123328 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/05/06,2.632758124999999 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/05/06,2.378634500000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/04/27,5.921374999354998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/05/29,5.3047291697441645 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/09,12.103908333148336 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/09,11.594489583488336 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/06/23,3.3497134896153824 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/06/23,4.285339470384611 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/24,16.867370833190826 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/10,8.825059090239998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/10,4.167234464102555 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/25,6.073712415769223 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/07/25,5.626069698380829 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/25,12.938700001244994 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/09/11,3.819525000000007 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/09/11,3.1609750000000023 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/26,3.2625750000000022 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/08/26,3.162729500000002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/09/26,5.359971213333337 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/11/06,7.1389999947825125 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/10/28,3.4125493804058338 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/11/05,3.658330480769232 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/10/29,2.5568953057692294 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/10/29,2.842237393498167 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/12/07,12.778591666651662 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/11/24,2.433516830769227 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/11/21,2.3336134500000005 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/12/24,23.94223333333332 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2021/12/23,21.750616666666684 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/01/25,21.961558333333347 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/01/25,21.966733333333345 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/02/26,22.351358333238345 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/02/26,22.62578333333334 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/04/06,8.985950001112528 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/04/06,4.316966692307691 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/03/29,21.66638333333335 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/03/22,14.547949999905002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/09,2.8299952625 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/09,2.2326640750000006 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/08,5.269650002299995 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/01,3.0277174983333333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/01,3.5170030733333304 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/04/30,7.522116672416661 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/25,3.4729681999999986 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/25,4.937099999999996 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/05/24,5.10523560717416 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/07/04,3.3294969666666607 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/06/29,5.4297000020749975 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/07/03,10.464333334495818 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/06/26,3.341032563333328 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/06/26,3.3654113499999943 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/07,8.290050003417507 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/05,13.737800000234987 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/05,13.350850005027487 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/07/28,2.6530655400000023 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/07/28,3.247923768846152 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/10,7.192747347511675 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/24,3.534646981666663 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/29,13.202758333743333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/29,12.07675833364333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/08/28,3.498599999999997 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/22,6.514724998685 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/30,12.619308333333327 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/30,12.24008333338083 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/09/21,5.059421972270829 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/10/31,7.056166657686675 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/11/09,2.4355317053571413 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/11/09,3.634363173076925 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/11/08,1.991156699999996 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/10/24,18.434391666796667 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/10/24,12.517033334118327 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/12/10,2.493829450000001 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2022/11/24,3.0459522500475016 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/02/04,22.14189166666668 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/01/28,21.961558333333347 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/04/10,12.467783333285825 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/04/10,12.487183333285826 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/04/09,14.318808333285828 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/04/02,12.952408333238324 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/09,10.0732562887225 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/31,5.197725000217491 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/26,3.140899088362498 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/06/05,8.668325001159992 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/06/05,7.705100000869994 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/06/04,3.948138461538461 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/28,7.315550000770002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/28,12.920291669136672 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/05/27,16.251271591834158 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/06/22,3.033839998217497 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/06,6.763823497151665 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/08/10,6.597784100989998 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/31,8.034125000457497 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/31,9.969450000362492 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/30,12.822975000457491 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/23,4.028358336666656 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/23,4.425451070769224 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/07/22,3.1353795000475024 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/06,8.58893485333333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/01,3.50133333173916 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/01,3.324949999999995 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/01,6.318875000120008 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/08/31,5.459575000000002 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/08/23,2.0655317500000003 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/10/03,6.68820530833333 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/28,13.425625038197476 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/23,7.398947690000004 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/10/03,4.598275009999992 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/10/03,3.767856834999992 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/10/02,3.646039824999997 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/25,12.32932499953999 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/09/25,12.519875000359992 -Horseshoe Lake,15466147,-74.62095613840577,44.13152921275337,2023/11/03,4.132514777864998 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2014/12/29,16.27039999999999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2014/12/29,12.076526589997505 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/01/29,22.348225000000006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/01/22,24.070899999999988 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/01/29,22.348225000000006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/01/22,24.070899999999988 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/02/23,22.539900000000006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/02/23,22.539900000000006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/04/03,9.729766666286686 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/04/03,9.729766666286686 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/04/28,5.025509993767502 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/06,8.869250002419985 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/06,8.420200000312478 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/04/28,5.025509993767502 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/06,8.869250002419985 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/06,8.420200000312478 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/06/06,5.730724995100005 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/30,4.12582500153 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/29,4.233925001199999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/22,4.408078033333333 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/22,6.653825000217498 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/06/06,5.730724995100005 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/30,4.12582500153 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/29,4.233925001199999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/22,4.408078033333333 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/05/22,6.653825000217498 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/07/08,13.445191667246675 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/06/22,3.7671889058417287 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/07/08,13.445191667246675 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/06/22,3.7671889058417287 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/09,4.175519706666659 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/02,22.59170833288833 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/07/24,4.115435611884161 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/09,4.175519706666659 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/02,22.59170833288833 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/07/24,4.115435611884161 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/25,7.809312529952503 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/11,3.0058817500000017 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/11,3.5893217500000025 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/02,8.136850000047499 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/08/25,7.809312529952503 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/11,3.0058817500000017 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/11,3.5893217500000025 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/02,8.136850000047499 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/10/05,9.162349989209998 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/26,3.49486287666666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/10/04,5.999475000504997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/27,2.129304349999998 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/27,2.7042776923076906 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/10/05,9.162349989209998 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/26,3.49486287666666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/10/04,5.999475000504997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/27,2.129304349999998 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/09/27,2.7042776923076906 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/05,2.1151179749999973 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/05,2.1151179749999973 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/29,5.368806664314167 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/22,7.177612499335006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/12/07,2.8990750000000047 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/30,2.711442999999999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/30,3.351404178846151 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/21,4.099924999999996 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/29,5.368806664314167 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/22,7.177612499335006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/12/07,2.8990750000000047 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/30,2.711442999999999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/30,3.351404178846151 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2015/11/21,4.099924999999996 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/01/24,21.66638333333335 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/01/24,21.66638333333335 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/02/26,11.283166665591668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/03/05,14.066449999952503 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/03/05,13.707641666619168 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/02/26,11.283166665591668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/03/05,14.066449999952503 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/03/05,13.707641666619168 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/05,8.529828922377776 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/05,8.529828922377776 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/30,3.2050636849999967 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/21,6.729638654999997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/29,4.265433341563332 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/22,3.330775000095005 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/22,2.870925000000005 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/30,3.2050636849999967 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/21,6.729638654999997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/29,4.265433341563332 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/22,3.330775000095005 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/04/22,2.870925000000005 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/23,5.245100013327508 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/31,5.193680311825 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/24,6.746479170014162 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/24,8.282304171296666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/23,5.245100013327508 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/31,5.193680311825 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/24,6.746479170014162 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/05/24,8.282304171296666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/03,6.238058354415839 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/24,5.972421982609169 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/11,11.228250000047488 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/11,9.360000000452484 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/25,2.936857524999996 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/25,2.435026530769231 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/03,6.238058354415839 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/24,5.972421982609169 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/11,11.228250000047488 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/11,9.360000000452484 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/25,2.936857524999996 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/06/25,2.435026530769231 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/11,5.975433335335839 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/04,3.1634968279999978 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/26,12.497579175099172 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/03,3.4940295 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/27,3.921138399999996 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/27,4.2683716307692245 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/11,5.975433335335839 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/04,3.1634968279999978 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/26,12.497579175099172 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/03,3.4940295 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/27,3.921138399999996 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/07/27,4.2683716307692245 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/05,3.233352299999994 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/27,3.023227275072498 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/04,5.827628786739162 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/05,3.233352299999994 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/08/27,3.023227275072498 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/04,5.827628786739162 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/07,3.40158713833333 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/28,5.005587131126668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/21,3.328915156666662 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/06,2.0689839749999983 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/29,7.8679026581199825 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/29,7.758017049474149 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/07,3.40158713833333 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/28,5.005587131126668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/21,3.328915156666662 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/06,2.0689839749999983 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/29,7.8679026581199825 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/09/29,7.758017049474149 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/11/08,3.959937286999997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/23,3.8229636373475 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/11/07,2.509923580769229 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/11/08,3.959937286999997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/10/23,3.8229636373475 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/11/07,2.509923580769229 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/10,3.8183944664102554 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/10,3.8183944664102554 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/26,23.94899999999999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/25,21.838800000000013 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/26,23.94899999999999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2016/12/25,21.838800000000013 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/04,21.838800000000013 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/04,21.75304166666668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/04,21.838800000000013 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/04,21.75304166666668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/08,14.588399999905008 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/08,14.786749999905007 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/27,12.997199999522495 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/20,20.58400833323836 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/08,14.588399999905008 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/08,14.786749999905007 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/27,12.997199999522495 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/02/20,20.58400833323836 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/08,22.451158333333343 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/23,22.451158333333343 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/09,20.64008333323836 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/09,20.452083333143367 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/08,22.451158333333343 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/03/23,22.451158333333343 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/09,20.64008333323836 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/09,20.452083333143367 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/10,18.85319791781666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/24,12.160008333333328 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/11,2.651061675000003 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/11,3.0958172875 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/10,18.85319791781666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/04/24,12.160008333333328 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/11,2.651061675000003 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/05/11,3.0958172875 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/06/11,7.65996082346583 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/06/03,9.282275000554993 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/06/11,7.65996082346583 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/06/03,9.282275000554993 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/05,2.562649850000001 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/05,2.562649850000001 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/29,6.9850297711275 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/08/06,6.057371213405829 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/30,3.238702875 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/30,2.962019337500001 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/29,6.9850297711275 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/08/06,6.057371213405829 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/30,3.238702875 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/07/30,2.962019337500001 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/01,2.63733092 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/09/24,3.9775772702899994 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/02,2.3663974750000003 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/02,2.1936049182692283 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/09/23,5.528850000719995 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/01,2.63733092 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/09/24,3.9775772702899994 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/02,2.3663974750000003 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/02,2.1936049182692283 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/09/23,5.528850000719995 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/11,7.191419582380944 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/10,15.590641666651656 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/25,5.290712503759997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/11,7.191419582380944 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/10,15.590641666651656 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/10/25,5.290712503759997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/12/04,12.16614833546585 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2017/11/26,15.268925000189975 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/01/29,10.505741666666689 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/05/05,8.970876674501655 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/04/28,13.48480833323834 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/04/28,13.503608333238342 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/05/29,6.558350000455006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/05/30,3.75872499999999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/05/30,3.615419230769224 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/07/09,3.669900763840827 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/07/08,14.50140833333332 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/07/01,11.458900000237488 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/07/01,10.290575000167491 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/06/22,2.390890800000001 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/08/10,3.272713699999993 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/08/09,4.978496480769225 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/09/03,4.028249999999997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/09/03,2.7556795000000034 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/08/25,12.869824999784983 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/10/05,2.28868235 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/10/05,2.9524385532051256 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/12/07,22.26459166666668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/11/22,3.3641750000950053 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2018/11/22,8.190225000144995 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/02/09,14.045916668344162 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/03/06,22.76205 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/02/26,21.919450000000012 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/02/26,21.919450000000012 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/04/30,12.021231315887498 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/04/23,5.552773275101666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/05/08,8.195826678214162 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/04/22,12.981084886470002 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/06/01,11.28098333373334 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/06/09,2.5898795000000026 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/06/26,2.937187867391666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/08/04,5.303675002099999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/08/05,3.633309099999993 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/08/05,2.8667517500000024 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/05,3.640996966666659 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/06,2.8342998 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/06,3.01915695 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/30,5.4315000040024985 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/21,6.962161360072499 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/10/08,3.9444957307692254 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/10/08,3.8425343807692256 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/09/29,6.01097916956916 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/11/08,6.22299999668501 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/10/23,4.165715162180836 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/12/11,4.951148494096667 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/12/11,4.119220836485831 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/11/25,2.776863043269232 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2019/11/25,3.633563220192307 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/04/01,11.733233333238324 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/04/01,12.09344999990499 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/02,6.844103048333332 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/04/25,4.857583335873333 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/03,3.84552673333333 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/03,2.862023669999999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/27,3.447364395144994 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/06/04,5.413354925774997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/06/04,4.103825001497492 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/05/26,3.5732022799999976 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/07/05,16.32148333506081 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/07/06,2.5214467250000023 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/07/06,3.0309139851648363 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/06,3.2214174418116643 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/07,4.421618199999992 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/07,4.131446530769221 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/22,3.250842441666661 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/30,2.6946522500000056 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/23,4.429614393333328 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/08/23,3.563789303846153 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/10/09,3.9428085303333256 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/09/23,6.224764182544171 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/10/10,3.552725000000007 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/10/10,3.4848000000000057 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/09/24,10.693983333788324 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/09/24,11.13228333594582 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/11/10,4.742721269380947 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/10/25,10.309629168989163 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/12/29,21.75304166666668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2020/12/29,21.75304166666668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/02/06,21.66638333333335 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/01/30,21.867666666666683 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/01/30,21.856800000000018 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/03/02,22.26459166666668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/04/03,22.44243333333334 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/05/06,2.596920925000004 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/05/06,2.375870650000003 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/05/29,4.80831364171 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/07/24,15.133783333523333 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/10,4.248050000337493 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/10,4.246934090674994 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/07/25,7.607389680769225 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/07/25,6.488772727179477 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/09/10,2.834560832165831 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/25,4.444233334728337 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/09/11,3.614375000144999 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/09/11,2.841175000000004 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/26,6.796400000762504 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/08/26,4.467078330769224 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/09/26,5.2652931800475 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/11/06,5.130510452927743 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/10/28,8.651696734820277 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/11/05,3.0278750000000048 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/10/29,2.371873287499997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/10/29,2.4517626682692297 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/12/07,2.735950000000004 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/11/24,2.2150771999999974 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/11/21,3.9015171749999946 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2021/12/24,23.455858333333325 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/02/02,22.30160833333335 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/02/02,22.109708333285848 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/02/26,22.23312500000001 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/04/06,8.530674999667518 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/04/06,13.597370872360814 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/03/29,21.791766666666685 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/09,2.5348230500000017 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/09,2.680007350000001 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/08,3.218536370000003 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/01,4.758859853333325 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/01,2.6565526500000027 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/04/30,4.343875000000002 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/31,17.020741666619166 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/26,13.189225016245008 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/26,12.848566680611674 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/25,6.892775000457497 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/05/25,4.9199295504824985 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/04,6.171482580337505 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/06/29,9.2881500136025 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/11,15.661816667619172 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/03,8.507083346030823 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/07,3.851738269409166 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/28,3.8870750000000056 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/07/28,2.7883250000475 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/10,6.851104169446666 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/24,3.72635486410256 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/29,4.439350001352496 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/29,4.406625001062495 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/08/28,3.874654500000002 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/22,10.372058333118344 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/30,3.647629171204162 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/30,4.117579169864163 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/22,2.9221457 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/22,3.463507701923074 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/09/21,5.667400000502494 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/10/31,6.760699993630012 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/11/09,2.4157883499999984 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/11/09,2.6441695736263737 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/11/08,2.044699849999997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/10/31,22.29289166645668 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/10/24,18.141833333318324 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/12/10,2.2593567500000007 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/12/02,3.618879500000001 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2022/11/24,4.431525 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/02/21,11.240208333870848 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/02/21,11.478883333918338 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/04/10,10.87549166657166 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/04/10,10.87549166657166 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/04/09,14.017733333238334 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/04/02,12.7532499997375 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/09,10.519091722764164 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/31,7.6487022703125 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/26,2.621639234739167 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/06/05,8.673938258123316 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/06/05,6.013000000859995 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/28,13.823233333598337 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/28,3.883759100192492 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/05/27,19.889291668944164 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/06/22,3.020880908290002 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/06,2.9279249999999952 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/10,17.245160607998336 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/05,6.561824991570007 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/30,3.770147730507496 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/23,2.599299999999997 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/23,3.4737734633808377 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/07/22,2.843477250000006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/06,8.15577878340583 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/01,7.840695450192499 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/27,4.732745821410839 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/01,4.834152275167489 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/01,4.932800000457493 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/31,2.570721025000002 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/08/23,2.0784142883333345 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/10/03,16.75633560666669 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/28,12.568003630374871 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/23,3.5948356079716657 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/10/03,4.741985606739172 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/10/03,5.203135606666673 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/10/02,3.1015127549999977 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/25,19.44594166652417 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/09/25,7.987141667171671 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/11/03,4.017815079999994 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/11/28,3.063400000000006 -Lake Madeleine,15466173,-74.46480208985183,44.124839929524725,2023/11/28,3.114275000000008 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2014/12/29,7.903240093148605 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2014/12/29,7.751918121740277 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/01/29,22.26459166666668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/01/22,23.333575 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/01/29,22.26459166666668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/01/22,23.333575 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/02/23,22.674233333333337 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/02/22,10.824866666666676 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/02/23,22.674233333333337 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/02/22,10.824866666666676 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/04/03,10.517741666381689 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/04/03,10.517741666381689 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/06,9.94424166903915 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/06,8.243466666884146 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/06,9.94424166903915 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/06,8.243466666884146 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/06,4.816118445955232 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/07,14.322924999999982 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/07,14.19924999999998 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/29,4.321384838333325 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/22,4.482000000047503 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/22,11.851558370133342 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/06,4.816118445955232 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/07,14.322924999999982 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/06/07,14.19924999999998 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/29,4.321384838333325 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/22,4.482000000047503 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/05/22,11.851558370133342 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/08,5.241070845108336 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/08,5.241070845108336 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/08/09,4.107194706666657 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/24,16.212383332950832 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/25,18.34541666645166 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/25,16.128499999760002 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/08/09,4.107194706666657 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/24,16.212383332950832 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/25,18.34541666645166 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/07/25,16.128499999760002 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/08/25,11.846697934561664 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/11,3.660196799999993 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/11,3.966146149999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/02,3.5032750000000075 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/08/25,11.846697934561664 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/11,3.660196799999993 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/11,3.966146149999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/02,3.5032750000000075 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/05,6.535395821968342 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/26,2.8471924416666643 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/04,5.564420459602491 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/27,2.711525466895605 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/27,2.588572605769229 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/05,6.535395821968342 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/26,2.8471924416666643 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/04,5.564420459602491 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/27,2.711525466895605 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/09/27,2.588572605769229 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/05,2.247874849999997 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/29,21.967658333333347 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/05,2.247874849999997 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/10/29,21.967658333333347 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/29,7.318365536346659 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/22,7.617329170026659 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/30,3.265043653846155 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/30,3.708939006730765 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/21,15.753166666636652 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/29,7.318365536346659 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/22,7.617329170026659 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/30,3.265043653846155 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/30,3.708939006730765 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2015/11/21,15.753166666636652 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/01/24,21.71765833333335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/01/24,21.71765833333335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/02/26,22.40535000000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/03/05,13.196283333238334 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/03/05,13.215083333238336 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/02/26,22.40535000000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/03/05,13.196283333238334 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/03/05,13.215083333238336 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/05,11.559646973333331 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/05,11.559646973333331 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/07,5.025847960038566 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/30,8.085273513333322 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/21,15.407566671266688 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/29,4.312164782484999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/07,5.025847960038566 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/30,8.085273513333322 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/21,15.407566671266688 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/04/29,4.312164782484999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/23,4.970910762618455 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/31,4.9952526722108335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/24,6.3399000000000045 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/24,3.599079554999994 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/23,4.970910762618455 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/31,4.9952526722108335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/24,6.3399000000000045 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/05/24,3.599079554999994 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/03,6.359200000265004 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/24,7.045465153550829 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/11,12.014283333380826 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/11,11.255750000237487 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/25,2.712880174999999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/25,3.559828950333329 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/03,6.359200000265004 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/24,7.045465153550829 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/11,12.014283333380826 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/11,11.255750000237487 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/25,2.712880174999999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/06/25,3.559828950333329 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/11,19.030666675794187 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/04,16.104824999234992 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/03,3.597662839999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/27,2.876875050000002 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/27,3.1612925399999976 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/11,19.030666675794187 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/04,16.104824999234992 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/03,3.597662839999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/27,2.876875050000002 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/07/27,3.1612925399999976 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/05,3.420170454999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/27,4.049647098202741 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/04,8.818200000000013 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/28,12.437449999999986 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/28,8.760175000819993 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/05,3.420170454999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/27,4.049647098202741 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/04,8.818200000000013 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/28,12.437449999999986 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/08/28,8.760175000819993 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/07,5.872542273144996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/28,8.151575000237502 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/21,4.076661216333328 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/06,2.985952061538461 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/29,6.855892426307497 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/29,7.3784424252299905 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/07,5.872542273144996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/28,8.151575000237502 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/21,4.076661216333328 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/06,2.985952061538461 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/29,6.855892426307497 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/09/29,7.3784424252299905 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/11/08,2.9743022899999985 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/23,13.716819456039437 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/11/07,2.6327832682692294 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/11/08,2.9743022899999985 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/10/23,13.716819456039437 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/11/07,2.6327832682692294 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/10,22.309808333333343 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/10,22.309808333333343 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/01/11,20.604589584673363 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/26,23.866341666666653 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/25,21.75304166666668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/01/11,20.604589584673363 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/26,23.866341666666653 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2016/12/25,21.75304166666668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/04,22.689058333333342 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/04,22.68663333333334 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/04,22.689058333333342 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/04,22.68663333333334 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/08,9.75773333333335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/08,10.98245833319084 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/20,20.383683333238366 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/20,20.383683333238366 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/08,9.75773333333335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/08,10.98245833319084 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/20,20.383683333238366 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/02/20,20.383683333238366 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/23,22.451158333333343 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/04/09,20.604658333238365 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/03/23,22.451158333333343 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/04/09,20.604658333238365 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/04/24,12.396150023000011 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/05/11,4.621156899999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/05/11,2.7717862 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/04/24,12.396150023000011 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/05/11,4.621156899999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/05/11,2.7717862 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/06/11,7.991233326950835 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/06/11,7.991233326950835 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/05,2.463681750000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/05,2.463681750000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/29,13.115908342865824 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/06,3.4082250000000056 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/30,2.355876750000003 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/30,2.461992850000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/29,13.115908342865824 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/06,3.4082250000000056 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/30,2.355876750000003 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/07/30,2.461992850000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/30,6.114585606929169 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/23,6.06796248989001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/30,6.114585606929169 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/08/23,6.06796248989001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/10,8.143429164239178 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/01,3.146224246666661 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/09/24,8.209195450000005 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/02,2.565271192857143 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/02,2.5320768115384595 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/09/23,9.218016671986652 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/10,8.143429164239178 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/01,3.146224246666661 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/09/24,8.209195450000005 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/02,2.565271192857143 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/10/02,2.5320768115384595 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/09/23,9.218016671986652 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/11/11,7.414701246854999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/11/10,17.564841666731674 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/11/11,7.414701246854999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/11/10,17.564841666731674 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2017/12/04,8.254042082865857 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/01/29,11.00409166635668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/05/05,5.739900004599994 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/05/29,8.277291663679167 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/05/30,3.753959099999993 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/05/30,3.6048250000724953 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/07/09,3.819252300072497 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/06/22,4.962975005692496 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/08/10,3.171924246666663 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/08/09,7.376300006899986 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/08/25,18.364124999755003 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/10/05,3.227713256410256 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/10/05,3.613958443131866 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/12/07,23.026316666666663 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/11/22,21.791766666666685 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2018/11/22,21.791766666666685 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/02/09,13.683583333190832 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/03/06,11.676499999324996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/02/26,21.848400000000016 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/02/26,21.848400000000016 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/04/23,6.414002275237494 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/05/08,10.320200022999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/04/22,2.6831922000000024 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/06/01,14.50398333333334 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/06/09,2.7755680000000007 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/06/26,3.403706820072495 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/08/04,13.635016683081655 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/08/05,2.842966874999998 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/08/05,2.521400025000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/07/27,4.7393340999999936 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/05,3.343390909999994 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/06,3.718394649999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/06,2.300716362500002 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/30,7.232124998635011 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/21,7.096296966714171 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/10/08,2.9107535499999977 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/10/08,3.809144930769224 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/09/29,13.409858333333329 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/11/08,6.225899995807515 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/10/23,6.81587499105001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/11/25,17.48508125023751 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2019/11/25,19.936906250200007 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/02/29,21.919450000000012 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/02/20,11.378024999985008 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/04/01,13.581041666524172 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/02,7.10413031833333 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/04/25,7.330109100072503 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/03,8.99665 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/03,3.6267136399999993 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/27,7.370456063333331 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/06/04,11.654511473219031 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/06/04,4.977486474034045 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/05/26,3.032925009999996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/07/06,2.5887498749999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/07/06,2.282578612499999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/06,14.802808344833348 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/07/30,9.72505417277917 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/07,13.653133332903314 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/07,19.86571666694667 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/31,3.645253786811665 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/22,3.394410606666661 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/30,2.874429500000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/23,4.306818184999994 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/08/23,3.215307130769225 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/10/09,3.853185036999997 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/09/23,8.651753336155844 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/09/24,12.542125000332502 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/09/24,12.864154167284168 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/11/10,3.572216098666664 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/10/25,10.657658750354992 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2020/12/29,21.75304166666668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/01/29,22.47810000000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/02/06,21.88613333333335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/01/30,21.867666666666683 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/03/02,22.26459166666668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/04/03,13.590075 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/03/27,9.779150000000014 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/04/04,10.656258332258338 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/04/04,10.656258332258338 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/05/06,3.441024069999999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/05/06,3.063123704999998 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/06/07,6.245899999999998 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/06/07,4.225924999999994 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/05/29,16.37680833311833 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/02,6.663520823078343 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/07/24,18.53115833323833 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/10,3.973324999999998 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/10,4.160809099999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/07/25,8.007725000744989 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/07/25,8.133319231394221 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/25,6.768308334490836 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/26,3.8988000000724914 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/08/26,4.11682697307692 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/09/26,10.816174995252496 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/06,17.49451070816833 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/10/28,6.15428561910917 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/09,3.875495323333326 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/09,3.907674109999992 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/05,2.241304520000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/10/29,2.4052349557692274 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/10/29,2.372755468269231 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/12/07,21.791766666666685 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/24,2.2343317499999977 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/11/21,2.6124929000000003 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2021/12/24,22.778858333333336 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/01/08,21.848400000000016 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/01/25,10.074033333333343 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/02/02,21.77565833333335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/01/25,22.14189166666668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/02/26,21.88675000000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/02/26,14.291691666604168 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/02/26,14.146274999784996 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/04/06,16.406433338510833 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/03/29,21.791766666666685 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/03/22,14.220966666571666 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/09,3.3471157624999965 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/09,2.2068428250000007 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/08,5.376849999999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/01,4.165083284999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/01,3.732328464999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/04/30,3.299708187999999 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/31,14.825933333333328 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/26,13.868441675939168 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/26,13.868441675939168 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/25,3.4521568201450026 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/25,4.997727275120001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/05/24,12.78345833333332 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/07/04,2.9672674266666657 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/06/29,17.514908334293324 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/07/03,13.375350000215 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/07/28,2.9270022500475013 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/07/28,2.6346750000475025 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/10,5.695743180047497 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/08/24,9.07852084699084 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/08/29,4.596050001377497 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/08/29,4.708700001594995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/08/28,4.686475069999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/22,3.3692625002000063 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/30,3.8857791695016655 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/30,4.341342916663213 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/22,2.8915871663461536 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/22,3.15187881978022 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/09/21,6.19350000033501 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/10/31,9.710162502582516 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/11/09,2.3565364932692288 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/11/09,3.1751945961538444 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/11/08,2.4006711423076896 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/10/24,12.624899999984994 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/12/10,13.782129173519175 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/12/02,22.320833333333344 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2022/11/24,21.67155833333335 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/02/21,11.270358333870847 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/02/21,11.383258333870842 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/04/10,12.94708333328583 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/04/10,12.877358333285828 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/04/09,13.673824999905 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/04/02,13.335799999857503 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/09,11.072398401453334 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/31,9.53495227019 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/26,3.126047581333331 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/05,16.53965000019499 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/05,15.395991673639172 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/28,13.81885834713334 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/28,5.813150000337506 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/05/27,23.11570000234751 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/22,3.0986756197391667 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/06,5.1788250001424965 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/21,2.9268522500000023 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/06/21,2.564099999999998 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/08/10,16.566039774665004 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/08/05,2.702424253406668 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/30,3.689450000000007 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/23,3.406200000000004 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/23,3.486800000000006 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/07/22,3.1084340000000044 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/06,8.09416515347833 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/01,6.914024236786665 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/01,6.209310606786661 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/01,3.7009000001924943 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/08/31,4.042390914999993 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/08/23,2.0947590000000007 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/10/03,6.719692428500834 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/28,13.653644643189631 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/23,12.373925000712504 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/10/03,5.259075000000003 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/10/03,4.294750000000001 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/10/02,4.878481754999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/25,19.21783333563333 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/09/25,5.908525000650009 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/11/03,3.686173329999995 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/11/28,8.929202087943324 -Duck Lake,15466203,-74.44221305740118,44.11387933521818,2023/11/28,12.401327084065848 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2014/12/29,8.236183333118339 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2014/12/29,9.327241666851672 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/01/22,23.67189999999999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/01/22,23.67189999999999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/02/23,22.348225000000006 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/03/10,21.67155833333335 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/02/22,21.791766666666685 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/02/23,22.348225000000006 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/03/10,21.67155833333335 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/02/22,21.791766666666685 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/04/28,8.376649946153801 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/04/28,6.849053210398331 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/06,4.019125000192502 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/06,13.645675029900003 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/04/28,8.376649946153801 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/04/28,6.849053210398331 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/06,4.019125000192502 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/06,13.645675029900003 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/06,4.507820836798334 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/30,6.968699998350006 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/30,13.018219167929178 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/07,14.965458333405811 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/07,14.826408333405814 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/29,3.904020464999992 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/22,3.842058194999997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/22,5.122969547999993 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/06,4.507820836798334 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/30,6.968699998350006 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/30,13.018219167929178 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/07,14.965458333405811 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/07,14.826408333405814 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/29,3.904020464999992 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/22,3.842058194999997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/05/22,5.122969547999993 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/07/08,5.357935827130836 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/22,13.164591712809184 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/07/08,5.357935827130836 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/06/22,13.164591712809184 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/09,3.4619424366666607 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/01,3.48144423076923 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/09,3.4619424366666607 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/01,3.48144423076923 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/03,6.000994365230833 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/03,12.47191050122917 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/25,3.161780304999997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/11,5.083740874999998 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/11,4.355402250000002 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/02,10.264285897508396 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/03,6.000994365230833 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/03,12.47191050122917 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/08/25,3.161780304999997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/11,5.083740874999998 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/11,4.355402250000002 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/02,10.264285897508396 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/26,3.184476521666662 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/04,8.024775000000004 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/27,2.392703143269229 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/27,2.681964855769232 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/26,3.184476521666662 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/04,8.024775000000004 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/27,2.392703143269229 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/09/27,2.681964855769232 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/05,2.1624997499999967 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/29,12.987833333070832 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/29,12.824183333070833 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/05,2.1624997499999967 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/29,12.987833333070832 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/10/29,12.824183333070833 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/29,11.386378622136103 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/22,8.426895838443347 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/22,4.660975003274997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/12/07,2.946481750000005 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/30,6.935750002307482 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/30,6.222633335215819 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/29,11.386378622136103 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/22,8.426895838443347 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/22,4.660975003274997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/12/07,2.946481750000005 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/30,6.935750002307482 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2015/11/30,6.222633335215819 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/01/24,21.791766666666685 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/01/24,21.791766666666685 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/02/26,22.26459166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/02/26,22.348225000000006 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/03/05,11.408225000385 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/02/26,22.26459166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/02/26,22.348225000000006 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/03/05,11.408225000385 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/05,10.096881819999991 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/05,10.096881819999991 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/07,8.960466670326678 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/30,6.5559583466666576 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/30,6.793397739999992 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/21,15.937791726666692 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/29,5.230953426620829 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/22,9.561675000362492 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/22,4.616200000072493 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/07,8.960466670326678 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/30,6.5559583466666576 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/30,6.793397739999992 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/21,15.937791726666692 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/29,5.230953426620829 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/22,9.561675000362492 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/04/22,4.616200000072493 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/23,3.7538233312308353 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/31,4.234567824899165 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/24,7.166000013872495 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/24,10.14770001622001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/23,3.7538233312308353 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/31,4.234567824899165 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/24,7.166000013872495 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/05/24,10.14770001622001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/03,11.05934167392916 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/03,9.064727091898332 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/24,4.222212502650001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/11,13.112633333643323 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/11,13.65533333374332 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/25,2.504727423626374 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/25,3.2502482274725257 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/03,11.05934167392916 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/03,9.064727091898332 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/24,4.222212502650001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/11,13.112633333643323 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/11,13.65533333374332 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/25,2.504727423626374 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/06/25,3.2502482274725257 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/11,4.000545656666656 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/04,2.8507537749999976 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/04,2.844337899999998 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/26,5.695383342893333 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/03,3.2612804807692304 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/27,4.068775441538456 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/27,3.3167581107692268 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/11,4.000545656666656 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/04,2.8507537749999976 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/04,2.844337899999998 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/26,5.695383342893333 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/03,3.2612804807692304 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/27,4.068775441538456 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/07/27,3.3167581107692268 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/05,2.9797491649999985 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/05,2.9598120399999988 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/27,3.363238639999996 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/04,4.091547759999995 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/05,2.9797491649999985 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/05,2.9598120399999988 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/08/27,3.363238639999996 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/04,4.091547759999995 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/07,4.601377732252741 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/07,4.832193660586075 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/28,15.677000000000014 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/21,2.795102299999999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/21,2.370945450000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/06,2.411517961538459 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/29,4.1839250000725 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/29,4.850450000239999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/07,4.601377732252741 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/07,4.832193660586075 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/28,15.677000000000014 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/21,2.795102299999999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/21,2.370945450000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/06,2.411517961538459 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/29,4.1839250000725 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/09/29,4.850450000239999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/08,5.319793185072493 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/08,3.6233272801449954 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/23,15.549106060633344 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/23,18.215602281642507 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/07,2.4006304307692274 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/08,5.319793185072493 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/08,3.6233272801449954 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/23,15.549106060633344 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/10/23,18.215602281642507 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/07,2.4006304307692274 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/10,21.722041666666684 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/10,10.101950000000022 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/09,8.862331249990008 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/23,3.1719000000000097 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/10,21.722041666666684 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/10,10.101950000000022 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/12/09,8.862331249990008 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2016/11/23,3.1719000000000097 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/03,22.26459166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/04,21.75304166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/04,21.750616666666684 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/03,22.26459166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/04,21.75304166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/04,21.750616666666684 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/03/08,14.057499999857509 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/27,11.980066666851664 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/20,15.006274999905008 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/03/08,14.057499999857509 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/27,11.980066666851664 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/02/20,15.006274999905008 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/03/23,22.34590833333334 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/09,20.35595833467336 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/09,20.28298333582336 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/03/23,22.34590833333334 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/09,20.35595833467336 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/09,20.28298333582336 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/24,13.783575000072515 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/05/11,3.54614773 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/05/11,4.163732729999998 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/04/24,13.783575000072515 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/05/11,3.54614773 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/05/11,4.163732729999998 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/06/11,3.957684805671548 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/06/03,12.495900002499983 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/06/11,3.957684805671548 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/06/03,12.495900002499983 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/05,2.72584289 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/05,2.72584289 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/07,8.861362500090014 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/07,10.43793750286001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/29,4.833553417928334 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/30,2.614989455769231 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/30,2.9836248846153843 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/07,8.861362500090014 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/07,10.43793750286001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/29,4.833553417928334 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/30,2.614989455769231 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/07/30,2.9836248846153843 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/30,10.279737507840004 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/23,2.9966977350724973 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/23,3.029747735072497 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/07,3.3504022500000064 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/30,10.279737507840004 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/23,2.9966977350724973 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/08/23,3.029747735072497 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/07,3.3504022500000064 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/01,3.858278866666658 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/24,2.714387113333333 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/24,2.895423478333332 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/02,2.217958242857141 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/02,2.7370168173076923 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/23,4.108349999999997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/01,3.858278866666658 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/24,2.714387113333333 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/24,2.895423478333332 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/02,2.217958242857141 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/02,2.7370168173076923 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/09/23,4.108349999999997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/11,6.734767312380949 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/11,6.676840156834167 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/25,5.53905080333333 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/11,6.734767312380949 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/11,6.676840156834167 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/10/25,5.53905080333333 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2017/11/26,2.9944442307692323 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/05/05,11.687766698914173 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/05/29,13.741799995887495 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/05/30,4.0492002857692215 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/05/30,2.806932475000002 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/09,3.948230313405828 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/09,3.931662133405828 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/06/30,16.783566666236656 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/08,5.208075000407501 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/01,19.16337500007248 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/07/01,18.52875000007248 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/06/22,4.744359102299998 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/08/10,3.179990502435897 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/08/10,3.1461219639743585 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/08/09,6.808100000000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/09/03,7.293224994527499 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/09/27,8.595899999810014 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/09/27,9.639012499460016 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/10/05,3.2315795250000003 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/10/05,3.392113599999999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/12/07,22.407050000000005 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2018/12/08,21.848400000000016 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/02/09,14.154408333285833 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/02/02,22.76205 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/03/06,22.451158333333343 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/03/06,22.451158333333343 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/02/26,21.791766666666685 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/02/26,21.88613333333335 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/04/23,7.4358249917250046 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/04/23,9.06627916965917 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/05/08,3.265769445000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/04/22,2.6514193375 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/06/01,11.262891669836684 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/06/09,3.673186349999995 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/07/03,14.658316717314186 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/06/26,18.37359166645165 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/06/26,17.93716666645165 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/08/04,16.414816669111676 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/08/05,2.8283500000475 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/08/05,3.2961000000000062 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/07/27,6.219150000237505 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/05,3.859862896666658 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/06,2.7070518500000014 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/06,2.7049980000000007 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/21,3.6494454499999938 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/10/08,3.9314175707692254 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/10/08,3.502524232307688 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/09/29,16.155441667666654 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/08,6.499824996225012 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/09,3.0385750000000025 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/09,2.9151250000000006 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/12/11,10.542491666851673 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/25,16.019278503966888 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2019/11/25,10.01028792106167 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/02/05,22.326100000000007 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/02/29,21.750616666666684 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/02/29,21.88613333333335 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/02/20,21.791766666666685 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/04/01,16.89742500023752 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/04/01,11.961181249712492 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/02,11.930792436666673 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/04/25,4.942610290783566 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/04/25,4.693474304668569 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/10,13.90655833331833 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/03,18.62962499995501 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/03,18.24737499997001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/27,4.025885613478326 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/05/27,4.1352356134058255 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/11,4.815850000382495 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/04,15.25311667478917 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/04,4.766875000964997 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/05,4.213665919800006 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/28,7.298424989405 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/06/28,9.72949998519999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/06,2.5504095293956066 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/06,2.6803995611263742 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/06,6.667321976666671 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/30,4.268018199999989 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/07/30,4.13552139999999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/07,3.11311125 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/07,4.021352299999995 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/22,8.91880125414499 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/30,3.357000000000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/23,7.806593180072502 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/08/23,6.340504539999996 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/10/09,5.022204589999992 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/09/23,11.954752308877486 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/10/10,13.69625833333332 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/10/10,13.499266666666651 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/09/24,12.247433333333325 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/09/24,14.106983333405822 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/11/10,10.343071862380942 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2020/10/25,6.132324995595009 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/01/30,21.75304166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/03/02,22.177183333333343 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/04/04,14.136874999905 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/04/04,13.768649999904996 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/05/06,3.10827887 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/05/06,2.392063050000002 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/05/29,7.674016670441656 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/06/23,3.0670858740384626 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/06/23,3.286447848076921 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/10,3.3857945000000003 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/10,3.4824945 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/09/10,8.252795833313332 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/25,5.070283334705838 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/09/11,8.061650000000002 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/09/11,2.60981253076923 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/26,2.99862725 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/08/26,2.8741000000000008 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/06,3.431338833739164 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/06,3.784320613666663 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/10/28,8.72006807238095 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/05,4.83756923076923 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/10/29,2.3236407048076897 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/10/29,2.411254979395603 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/12/07,21.77565833333335 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/24,2.809719427499998 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/11/21,2.49215885 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2021/12/24,23.455858333333325 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/01/08,21.919450000000012 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/01/25,22.29457500000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/01/25,22.17259166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/04/06,8.306966665576676 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/03/30,22.26459166666668 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/04/06,18.510609089857507 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/03/29,21.88613333333335 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/09,3.171081783269229 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/09,2.863344133269231 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/08,3.991400743333328 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/01,5.247679559999994 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/01,6.091463634999991 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/04/30,4.6146000023 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/04/22,3.387332692307689 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/31,17.39138499981 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/25,7.654100007717488 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/25,10.606458351325823 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/05/24,3.555827250000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/04,9.217958336225834 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/06/29,9.49498333904832 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/06/29,9.22453333912082 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/04,13.527558334333348 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/04,18.37443333393334 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/03,13.2083000001675 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/06/26,4.153517930769221 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/06/26,3.372359149999994 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/28,2.770852250000007 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/07/28,2.749375000000005 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/10,8.975202280337498 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/08/24,6.12050666315417 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/08/29,13.502733333743327 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/08/29,13.34730833364333 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/08/28,2.4199227 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/22,2.430046981666667 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/22,2.599189416666667 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/30,16.305691667466654 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/09/21,9.769283342895818 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/11/09,2.2494892249999974 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/11/09,3.584393942307692 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/11/08,1.983488499999996 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2022/12/10,11.597906667289172 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/02/04,22.23312500000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/10,12.575749999904993 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/10,12.72161666657166 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/09,14.30370833328583 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/02,22.262833333333347 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/04/01,14.573499999857509 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/09,10.225870838393345 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/31,7.232893556834168 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/26,3.265758178072497 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/26,4.019166524666659 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/05,16.273637500072482 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/05,15.143637500072478 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/04,14.20477500028499 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/28,18.57504583786084 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/28,13.018250002870005 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/05/27,17.967350009152494 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/22,2.957064998217498 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/07/06,5.569717426714166 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/21,5.480459100192491 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/06/21,3.1572272500475007 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/10,16.656074999999987 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/05,13.56947917411917 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/05,16.47314584289083 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/07/30,2.639452250000001 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/07/23,18.25665416666915 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/07/23,17.825695833048307 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/06,4.184084855072493 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/01,3.249082588405829 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/01,7.000209090380005 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/01,3.333456849999996 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/31,2.840271789999999 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/08/23,2.1391362500000004 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/10/03,16.52253560666669 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/28,11.00866667258166 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/23,3.1409106172216656 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/23,3.246131033960832 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/10/03,3.350640549999996 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/10/03,4.2429377429999935 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/10/02,5.402515919999996 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/25,15.77082500244502 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/09/25,7.650300000772504 -Grass Pond,15466235,-74.77500963399058,44.080084042294885,2023/11/03,6.999864024318332 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2014/12/29,17.7192386495975 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2014/12/29,15.888954955198331 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/07,10.376091666666683 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/01/22,24.072216666666648 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/07,10.376091666666683 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/01/22,24.072216666666648 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/23,22.674233333333337 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/22,22.15403333333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/23,22.674233333333337 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/02/22,22.15403333333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/04/03,10.395741666286693 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/04/03,10.395741666286693 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/05,8.451774999495003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/06,9.25717500019248 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/06,7.465225000192488 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/05,8.451774999495003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/06,9.25717500019248 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/06,7.465225000192488 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/06,7.815991662321664 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/30,7.714274999695009 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/07,14.495799999784984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/07,13.998724999999984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/29,4.928844704892496 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/22,3.279574413333327 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/22,3.3983167883333247 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/06,7.815991662321664 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/30,7.714274999695009 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/07,14.495799999784984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/07,13.998724999999984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/29,4.928844704892496 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/22,3.279574413333327 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/05/22,3.3983167883333247 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/07/08,4.514367053440002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/22,5.482085262776898 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/07/08,4.514367053440002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/06/22,5.482085262776898 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/09,3.556286399999993 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/07/24,14.81220835187834 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/10,3.5347417923076923 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/10,3.879940630769225 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/01,4.6050317499999975 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/09,3.556286399999993 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/07/24,14.81220835187834 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/10,3.5347417923076923 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/10,3.879940630769225 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/08/01,4.6050317499999975 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/03,5.909274992415012 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/03,8.278617082865855 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/11,2.966508800000002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/11,2.5924880000000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/02,7.6342750004825 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/03,5.909274992415012 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/03,8.278617082865855 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/11,2.966508800000002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/11,2.5924880000000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/02,7.6342750004825 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/05,7.802923483333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/05,6.235207583333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/26,8.759400002969992 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/04,8.53680000126998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/27,2.518333786538459 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/27,2.6155482932692307 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/05,7.802923483333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/05,6.235207583333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/26,8.759400002969992 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/10/04,8.53680000126998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/27,2.518333786538459 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/09/27,2.6155482932692307 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/05,2.289915699999997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/05,2.289915699999997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/29,8.813242021429515 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/22,3.072544489166668 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/22,3.464030944807688 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/12/07,3.570300000000007 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/30,2.2874218624999987 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/30,2.8712363086538466 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/21,7.383841666666649 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/29,8.813242021429515 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/22,3.072544489166668 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/22,3.464030944807688 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/12/07,3.570300000000007 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/30,2.2874218624999987 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/30,2.8712363086538466 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2015/11/21,7.383841666666649 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/02/26,22.76205 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/02/26,22.64890000000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/05,9.482699999427508 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/05,9.409799999427516 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/02/26,22.76205 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/02/26,22.64890000000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/05,9.482699999427508 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/05,9.409799999427516 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/05,13.331037520459995 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/29,6.349124995655013 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/29,8.059874999867512 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/05,13.331037520459995 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/29,6.349124995655013 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/03/29,8.059874999867512 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/30,2.6506674366666654 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/30,2.6542022849999984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/21,5.522357573333328 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/29,3.2699568299999964 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/22,3.0040750000000056 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/22,11.469949999999992 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/30,2.6506674366666654 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/30,2.6542022849999984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/21,5.522357573333328 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/29,3.2699568299999964 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/22,3.0040750000000056 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/04/22,11.469949999999992 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/23,7.728575008232499 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/31,4.245926913204998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/24,4.006599999999992 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/24,4.397199999999995 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/23,7.728575008232499 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/31,4.245926913204998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/24,4.006599999999992 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/05/24,4.397199999999995 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/03,19.398383333333328 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/03,15.657683333333326 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/24,5.4118358286783375 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/11,10.329800000237492 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/11,9.051850000237488 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/25,2.661277888333336 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/25,2.764609075 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/03,19.398383333333328 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/03,15.657683333333326 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/24,5.4118358286783375 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/11,10.329800000237492 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/11,9.051850000237488 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/25,2.661277888333336 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/06/25,2.764609075 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/11,7.210901488372736 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/04,2.992644699999998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/04,3.0048053066666647 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/26,10.040400006994991 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/11,7.210901488372736 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/04,2.992644699999998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/04,3.0048053066666647 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/07/26,10.040400006994991 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/05,3.5452363999999927 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/05,4.804195764102555 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/27,3.4678748513333306 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/04,3.7919132499999937 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/28,15.946241669324149 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/28,17.9274458341958 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/05,3.5452363999999927 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/05,4.804195764102555 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/27,3.4678748513333306 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/04,3.7919132499999937 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/28,15.946241669324149 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/08/28,17.9274458341958 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/07,4.0521522849999965 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/07,2.8184644133333325 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/28,5.599135608380834 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/21,4.100915778333325 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/21,4.0175726083333245 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/06,2.1585863499999984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/29,2.734402124999999 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/29,2.707550550000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/07,4.0521522849999965 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/07,2.8184644133333325 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/28,5.599135608380834 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/21,4.100915778333325 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/21,4.0175726083333245 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/06,2.1585863499999984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/29,2.734402124999999 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/09/29,2.707550550000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/08,6.316791674096668 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/08,6.6869166748091695 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/23,3.2873804370724997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/23,3.2727933137391663 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/07,2.828314580769231 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/08,6.316791674096668 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/08,6.6869166748091695 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/23,3.2873804370724997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/10/23,3.2727933137391663 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/07,2.828314580769231 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/10,8.328475000200005 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/09,2.5755795 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/23,3.644000000000008 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/10,8.328475000200005 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/09,2.5755795 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/11/23,3.644000000000008 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/01/11,21.080333333190858 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/25,21.791766666666685 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/01/11,21.080333333190858 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2016/12/25,21.791766666666685 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/04,21.750616666666684 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/04,21.750616666666684 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/04,21.750616666666684 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/04,21.750616666666684 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/20,20.383683333238366 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/02/20,20.383683333238366 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/03/23,22.447608333333346 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/09,20.56388333323837 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/09,20.536783333190865 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/03/23,22.447608333333346 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/09,20.56388333323837 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/09,20.536783333190865 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/24,7.497735606739169 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/05/11,2.6011158500000016 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/05/11,2.229058465000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/04/24,7.497735606739169 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/05/11,2.6011158500000016 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/05/11,2.229058465000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/11,6.824599995457504 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/11,6.824599995457504 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/05,2.8158659500000005 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/28,3.098152250000004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/28,2.355175000000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/05,2.8158659500000005 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/28,3.098152250000004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/06/28,2.355175000000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/07,6.5611458324608485 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/07,6.70227082454084 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/29,20.576595833333307 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/30,3.2526727 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/30,2.664211165000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/07,6.5611458324608485 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/07,6.70227082454084 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/29,20.576595833333307 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/30,3.2526727 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/07/30,2.664211165000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/30,7.066593940547499 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/08/30,7.066593940547499 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/01,4.965207130769227 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/24,6.160600753333334 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/24,6.850809090000002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/02,2.345895324999998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/02,2.454787043269232 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/23,3.455130949999994 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/01,4.965207130769227 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/24,6.160600753333334 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/24,6.850809090000002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/02,2.345895324999998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/02,2.454787043269232 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/09/23,3.455130949999994 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/11,7.951055308333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/11,8.548338650000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/10,3.267179500000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/25,11.425841666666672 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/11,7.951055308333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/11,8.548338650000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/11/10,3.267179500000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/10/25,11.425841666666672 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2017/12/04,12.422614584825851 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/05/05,4.353199999999998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/04/28,13.30799166661916 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/04/28,13.928049999952496 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/05/29,13.567150020700003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/05/30,3.5310439433333327 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/05/30,4.072427030769223 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/09,4.161570499999991 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/09,4.19277049999999 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/08,14.574900000712493 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/01,7.340004926327492 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/07/01,8.838425759078325 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/06/22,2.5347476500000026 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/08/10,3.368132524999997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/08/10,3.366832524999997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/08/25,12.714333333478317 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/10/05,2.35085079230769 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/10/05,2.400345497664834 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/12/07,22.34590833333334 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/12/08,21.856800000000018 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/11/22,21.919450000000012 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/11/22,21.919450000000012 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2018/12/23,8.087316666666673 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/02/09,22.47567500000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/02/01,21.848400000000016 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/02/26,21.856800000000018 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/02/26,21.856800000000018 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/04/23,13.208690976019984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/04/23,12.37015594786999 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/05/08,5.0959591023 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/04/22,9.856354613350849 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/06/01,10.734908333733337 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/06/09,5.662020479590828 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/07/03,5.569713038876676 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/06/26,7.156437878860833 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/06/26,7.349271969028337 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/04,4.832796982330004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/05,3.022152124999999 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/05,2.590361000000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/07/27,4.596100000989995 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/05,4.273595479999989 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/29,8.129951328004159 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/08/29,7.369467804709161 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/06,3.0339437124999997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/06,2.5393546750000016 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/21,7.117781056666668 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/10/08,2.433402000000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/10/08,2.7703419625 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/09/29,9.833725000549984 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/11/08,6.39164999622501 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/10/23,5.49182310179333 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/12/11,8.845274999535022 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/12/11,9.216774998735014 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/11/25,12.942933333143335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2019/11/25,13.21464999981001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/04/01,11.2102465909225 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/04/01,11.228398185570002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/02,8.758873483333332 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/04/25,7.945320834318344 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/04/25,7.496245834318342 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/03,3.4664227499999964 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/03,3.7658932199999953 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/27,3.690786375072496 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/27,3.698756071739162 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/06/04,8.501150000624994 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/06/04,4.668816667004156 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/05/26,2.995495009999998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/05,17.929720833380824 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/06,2.6302931000000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/06,2.7073800048076926 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/06,4.609788654999987 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/30,3.7330364549999926 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/07/30,3.754211454999993 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/07,4.290750000144994 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/07,3.970025000072495 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/31,13.63154999908501 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/31,13.489824998905004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/22,8.605925011884997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/30,6.981313500000008 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/23,3.889322824999995 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/08/23,2.505449675000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/10/09,5.167118849047613 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/09/23,3.911346218478328 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/10/10,16.13727575844083 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/10/10,10.707075000119994 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/09/24,5.934675000555005 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/09/24,5.702025000675004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/11/10,5.079086244047619 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/10/25,15.444900016100004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2020/12/29,21.867666666666683 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/01/29,9.95794166645168 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/01/30,21.75304166666668 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/01/30,21.75304166666668 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/03/02,22.26459166666668 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/04/03,22.476608333333346 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/05/06,3.9115750001674985 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/05/06,4.1870250001675 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/06/07,3.2403545000475016 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/06/07,3.2978795000000023 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/05/29,17.50296666666665 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/07/09,4.891274999999991 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/07/09,2.8636522500000035 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/02,20.84317250170502 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/02,7.9407025019900095 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/10,5.529136350072491 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/10,5.109925000072494 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/07/25,12.104074999569985 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/07/25,11.51779999999999 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/08/25,9.692602270675003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/09/11,3.5288453750000044 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/09/11,4.3701249999999945 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/09/26,20.977645832473332 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/06,11.653916674189166 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/06,4.695787887029165 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/10/28,6.578895460190006 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/09,2.5630225000000024 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/09,2.553304250000002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/05,3.477034000192503 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/10/29,2.069724824999996 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/10/29,2.3783376125 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/24,2.3195271999999973 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/11/21,3.304903474999997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2021/12/24,24.44116666666665 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/01/08,21.867666666666683 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/02/02,21.675758333333352 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/02/02,21.77565833333335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/01/25,21.961558333333347 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/01/25,22.274983333333346 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/02/26,22.019983333333347 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/02/26,12.499724999784998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/04/06,17.39719167373416 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/03/29,21.867666666666683 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/09,3.310877294999997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/09,2.8313272949999986 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/09,2.542002175000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/09,2.4107040000000017 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/08,3.6708159399999953 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/01,3.02222125 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/01,4.1012505099999945 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/04/30,4.392002299999998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/26,7.224409090432503 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/26,7.338750000600004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/10,2.737625000000004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/10,2.806825000000005 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/25,2.6283022500000057 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/25,2.667652250000006 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/05/24,14.539200000189997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/07/04,7.6689659107 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/29,4.720821400072486 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/29,4.590847800072488 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/07/11,4.096425000000004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/07/03,5.409386860606549 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/26,4.969296596781661 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/26,5.20234053491833 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/06/25,2.9153189633333327 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/10,8.954474237874173 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/08/24,2.3276230319597087 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/08/29,2.955925000047499 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/08/29,2.9045522500475003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/08/28,2.7553772500475 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/22,4.244045576121071 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/22,3.800532313846072 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/30,3.836488644309165 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/30,4.426988643901664 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/22,2.7034684550000003 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/22,2.9660929615384624 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/09/21,3.841925009999995 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/10/31,4.703578900895714 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/11/09,2.30781059285714 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/11/09,2.520842485576924 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/11/08,2.097552099999998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/10/31,17.102679166454145 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/12/10,2.7005044500000013 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/12/02,11.822175000335 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/11/24,3.017416350000002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2022/12/27,11.62234166665167 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/02/04,21.970933333333345 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/02/21,10.528933333023346 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/02/21,10.567233333023346 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/10,12.966724999952492 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/10,11.488408333238326 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/09,12.274399999904992 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/02,12.82560833898833 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/02,13.545783333238331 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/04/01,9.491441849816852 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/09,10.378470836440846 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/31,7.481636360265001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/26,3.349468180072496 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/26,3.377911360289997 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/05,8.041550000892501 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/05,3.4487250014499957 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/04,4.197952250000004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/28,4.954450000384998 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/28,4.295564413598323 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/05/27,22.063416671266676 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/22,3.3250649983624943 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/06,3.768521630769224 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/21,3.6589250291025626 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/06/21,3.5112088157692303 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/10,16.56214999990499 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/05,4.7103986261608926 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/05,2.3639991045950013 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/31,6.254039400120002 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/31,4.0085054423076905 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/30,4.82693021333333 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/23,9.45757499802 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/23,8.363149996900004 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/07/22,5.672575000192492 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/06,10.233906709095129 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/01,9.812624132428452 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/01,3.804909100072495 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/01,3.455600000072496 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/31,2.494897699999999 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/08/23,2.229702200000001 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/28,7.202220831630853 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/23,10.47883749824751 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/23,8.187470826478341 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/10/03,3.844854554999993 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/10/03,2.7990340500000026 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/10/02,3.8290091299999953 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/25,6.770125000602504 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/09/25,3.099700001377496 -McRorie Lake,15466401,-74.41491564738841,44.03309856323186,2023/11/03,6.033697769999992 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2014/12/29,12.79644041822666 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2014/12/29,12.75699041803666 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/07,10.546391666666684 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/07,10.554416666666684 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/01/22,24.312499999999982 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/06,21.920716666666685 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/07,10.546391666666684 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/07,10.554416666666684 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/01/22,24.312499999999982 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/06,21.920716666666685 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/23,22.47810000000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/03/10,21.88613333333335 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/22,14.478441666619169 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/23,22.47810000000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/03/10,21.88613333333335 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/02/22,14.478441666619169 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/04/03,9.66591499971502 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/04/03,9.66591499971502 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/05,21.265841666091674 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/06,10.007858335705818 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/06,9.317775002419983 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/05,21.265841666091674 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/06,10.007858335705818 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/06,9.317775002419983 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/06,4.436700979589999 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/07,15.240850000184986 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/07,14.287808333118312 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/29,9.04575000299748 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/22,4.063405313333323 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/22,3.3909166783333258 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/06,4.436700979589999 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/07,15.240850000184986 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/07,14.287808333118312 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/29,9.04575000299748 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/22,4.063405313333323 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/05/22,3.3909166783333258 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/07/08,4.77376932666667 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/22,6.759100002997503 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/07/08,4.77376932666667 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/06/22,6.759100002997503 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/09,3.4277045499999947 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/07/24,21.067466664916672 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/09,3.4277045499999947 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/07/24,21.067466664916672 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/11,2.965534310769227 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/11,2.983159475000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/02,18.43573333331833 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/26,5.204625000434994 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/26,4.875750000072493 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/11,2.965534310769227 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/11,2.983159475000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/02,18.43573333331833 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/26,5.204625000434994 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/08/26,4.875750000072493 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/05,5.397030305145005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/05,5.261767433695832 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/26,14.004591678406657 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/04,4.57856894736833 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/27,2.5542930749999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/27,2.63221595576923 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/05,5.397030305145005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/05,5.261767433695832 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/26,14.004591678406657 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/10/04,4.57856894736833 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/27,2.5542930749999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/09/27,2.63221595576923 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/05,2.905657824999998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/05,2.905657824999998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/29,8.439074993035005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/22,5.720141015043572 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/22,6.378600002730002 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/12/07,3.644000000000008 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/30,2.5713540374999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/30,2.7489282663461547 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/21,16.004783334333318 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/29,8.439074993035005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/22,5.720141015043572 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/22,6.378600002730002 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/12/07,3.644000000000008 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/30,2.5713540374999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/30,2.7489282663461547 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2015/11/21,16.004783334333318 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/02/26,22.402925000000003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/02/26,22.47567500000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/03/05,14.266350000337502 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/03/05,14.3486250003375 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/02/26,22.402925000000003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/02/26,22.47567500000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/03/05,14.266350000337502 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/03/05,14.3486250003375 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/05,14.422292331857482 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/05,14.422292331857482 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/07,5.232169167496668 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/30,6.484499256666659 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/30,7.725499256666662 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/21,7.333537128333335 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/29,6.532325000737484 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/22,4.409895865504614 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/22,4.833710507812304 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/07,5.232169167496668 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/30,6.484499256666659 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/30,7.725499256666662 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/21,7.333537128333335 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/29,6.532325000737484 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/22,4.409895865504614 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/04/22,4.833710507812304 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/31,9.673566675939153 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/24,4.494934089999998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/24,3.7281749999999927 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/31,9.673566675939153 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/24,4.494934089999998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/05/24,3.7281749999999927 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/03,10.437025005977487 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/03,10.67777500372248 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/24,14.255083345238338 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/11,11.935083333333326 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/11,10.805950000047485 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/25,2.677613625000003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/25,2.8714079307692275 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/03,10.437025005977487 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/03,10.67777500372248 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/24,14.255083345238338 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/11,11.935083333333326 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/11,10.805950000047485 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/25,2.677613625000003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/06/25,2.8714079307692275 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/11,3.12845000161 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/04,3.4518749999999945 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/04,3.526634099999994 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/27,15.472125000099984 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/27,8.766475000507507 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/11,3.12845000161 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/04,3.4518749999999945 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/04,3.526634099999994 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/27,15.472125000099984 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/07/27,8.766475000507507 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/05,3.691377299999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/05,3.789752299999994 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/27,3.4734780384783277 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/04,4.0880249999999965 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/28,4.274490910264996 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/28,3.957821531034221 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/05,3.691377299999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/05,3.789752299999994 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/27,3.4734780384783277 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/04,4.0880249999999965 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/28,4.274490910264996 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/08/28,3.957821531034221 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/07,3.718537128333328 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/07,3.0397878816666646 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/28,10.219633335168336 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/21,3.978961417999989 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/21,3.5115802246666585 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/06,2.470609049999999 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/29,2.510945349999999 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/29,2.4961947355769225 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/07,3.718537128333328 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/07,3.0397878816666646 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/28,10.219633335168336 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/21,3.978961417999989 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/21,3.5115802246666585 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/06,2.470609049999999 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/29,2.510945349999999 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/09/29,2.4961947355769225 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/08,3.660666816999998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/08,4.2425653103333305 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/23,2.642179535145 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/23,3.100612872319165 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/07,2.087202199999997 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/08,3.660666816999998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/08,4.2425653103333305 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/23,2.642179535145 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/10/23,3.100612872319165 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/11/07,2.087202199999997 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/10,9.700413334473351 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/10,6.098874996560013 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/09,12.816508333718325 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/10,9.700413334473351 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/10,6.098874996560013 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2016/12/09,12.816508333718325 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/01/02,22.37635000000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/01/02,22.37635000000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/08,11.844875005555007 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/08,12.530000000585003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/02/27,13.900025001102495 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/02/20,20.489583333285868 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/08,11.844875005555007 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/08,12.530000000585003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/02/27,13.900025001102495 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/02/20,20.489583333285868 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/04/08,22.26459166666668 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/23,22.26459166666668 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/04/08,22.26459166666668 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/03/23,22.26459166666668 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/04/24,14.92896667356667 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/11,3.0362221500000004 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/11,2.5800029250000023 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/04/24,14.92896667356667 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/11,3.0362221500000004 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/11,2.5800029250000023 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/06/11,6.711266657684172 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/27,12.997324999354982 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/06/11,6.711266657684172 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/05/27,12.997324999354982 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/05,2.587291325000002 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/05,2.587291325000002 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/07,3.091225000502503 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/07,4.907218749737507 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/29,21.690050000139998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/06,6.255841666714172 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/30,2.6771199057692314 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/30,2.784308700000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/07,3.091225000502503 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/07,4.907218749737507 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/29,21.690050000139998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/06,6.255841666714172 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/30,2.6771199057692314 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/07/30,2.784308700000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/30,9.592858333548332 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/23,4.790621105714278 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/23,4.777483833714277 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/30,9.592858333548332 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/23,4.790621105714278 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/08/23,4.777483833714277 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/01,4.202783406666659 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/24,5.6421409156525 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/24,5.729843185845001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/02,2.8165960750000005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/02,2.735918993269231 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/23,6.717500000000006 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/01,4.202783406666659 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/24,5.6421409156525 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/24,5.729843185845001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/02,2.8165960750000005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/10/02,2.735918993269231 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/09/23,6.717500000000006 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/11,8.647867426666659 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/11,8.078914403405827 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/10,3.266500000000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/11,8.647867426666659 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/11,8.078914403405827 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/11/10,3.266500000000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2017/12/04,6.6784721046258415 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/05/05,2.733435840000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/04/28,16.053816669779167 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/04/28,15.647616667431665 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/05/29,12.019800009294997 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/05/30,4.349892085769221 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/05/30,4.571149999999992 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/09,3.6204432000724944 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/09,3.4781772999999943 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/08,5.358175001132498 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/01,9.881375000214993 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/07/01,11.113650000047487 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/06/22,3.016784050000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/08/10,3.701731899999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/08/10,3.6720568999999954 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/08/09,13.606750002300007 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/09/03,18.24789166622165 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/09/03,11.07982500026499 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/08/25,19.90902499997001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/10/05,2.446763549999998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/10/05,2.65783115576923 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2018/11/22,21.848400000000016 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/02/09,22.47810000000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/02/01,21.848400000000016 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/02/26,21.848400000000016 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/02/26,21.848400000000016 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/04/23,8.906349995412507 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/04/23,8.885524995412508 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/05/08,8.987325013847496 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/04/22,2.9352217 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/06/09,2.388945400000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/07/03,13.62923334284584 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/06/26,16.834333332903324 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/06/26,18.757049999784986 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/04,9.3446000054175 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/05,2.8504212249999985 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/05,4.379149999999993 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/05,4.614266559047612 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/29,9.918210416391688 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/08/29,10.716469168114177 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/06,3.4187452633333324 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/06,2.722848325000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/21,7.944511360262501 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/10/08,2.9003815500000005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/10/08,3.287208762499997 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/09/29,3.676783337850829 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/10/23,4.1354242816666575 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/11/09,3.0240250000000053 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/11/25,15.862166668966696 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2019/11/25,19.59068125020001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/02/05,22.348225000000006 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/02/05,22.348225000000006 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/02/20,21.75304166666668 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/04/01,15.137220843575848 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/04/01,14.382144322497505 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/02,7.07580076833333 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/03,3.408257429666666 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/03,2.5938794950000017 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/27,4.285035606739157 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/27,4.292535606666657 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/05/26,4.427713624999992 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/05,20.45412500004748 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/06,2.8147414125000005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/06,2.5472689807692324 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/06,3.388263645072496 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/30,3.9057613999999914 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/07/30,3.92596139999999 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/07,13.513574999769988 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/07,14.317375001000006 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/23,4.620309089999992 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/08/23,3.8895682049999936 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/09,4.441519726666654 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/10,16.601500002300018 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/10,7.417550000237504 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/01,3.377244627435893 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/09/24,10.68431833474832 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/09/24,8.534660001579981 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/11/10,9.887523379047613 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/10/25,14.532354178309165 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/12/29,21.867666666666683 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2020/12/29,21.867666666666683 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/01/29,11.325924999785004 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/04/03,22.21930833333335 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/04/04,10.047206260690004 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/04/04,11.5415562606025 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/05/06,3.534043063333328 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/05/06,3.0508514199999954 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/06/07,3.120877250000003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/06/07,4.561059099999994 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/05/29,17.404433333333323 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/06/23,2.9960046365384625 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/06/23,4.13253655961538 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/02,6.594627277112495 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/02,8.447708361265832 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/10,8.205450000812498 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/10,3.2543500000000045 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/25,16.90248333585085 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/09/11,7.236246213840832 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/09/11,5.051075000507488 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/26,5.709225000167502 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/08/26,4.7239480641025535 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/09/26,17.572883333333326 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/06,16.99545000474253 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/06,21.05788335412836 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/10/28,6.624118185380004 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/09,3.912548123333326 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/09,4.118356723333326 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/05,3.1671821153846174 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/10/29,2.085574824999996 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/10/29,2.133335849999997 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/12/07,20.46168541671421 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/24,2.4438430999999983 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/11/21,5.029159089999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2021/12/24,12.344983333333335 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/01/25,11.478125000000004 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/01/25,11.230341666309176 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/01/25,11.245424999642513 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/02/26,23.553216666666657 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/04/06,14.905275004635008 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/03/22,13.957633333238334 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/09,3.433540224999997 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/09,2.638393550000002 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/08,4.311541673333327 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/01,3.2759110183333315 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/01,3.972924286666662 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/04/30,6.5668681999999965 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/26,10.725495843378331 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/26,10.427458338635835 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/25,6.682525000167503 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/25,4.184861365240002 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/05/24,4.855660607124159 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/04,4.516774999999993 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/29,17.226700007019964 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/29,15.63635833818331 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/04,17.44734999978751 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/04,9.000075000289995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/03,9.34692500122248 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/26,4.801740161666661 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/26,3.90335153076922 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/06/25,4.484634100072492 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/07,13.331841667336668 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/28,3.0254295000000013 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/07/28,4.047302250000002 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/10,6.72737916942417 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/24,16.660391666666666 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/29,4.151859090917497 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/29,5.584875000144991 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/08/28,2.457956725000003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/22,3.3077364760477352 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/22,3.5351523937377403 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/10/08,2.983877250000005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/10/08,2.451727250000003 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/30,17.52565833349333 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/22,4.625270962093458 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/22,3.5319750000000054 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/09/21,3.700393199999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/10/31,19.8798250021375 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/11/09,2.4799089499999982 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/11/09,2.337311362499998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/11/08,2.1743065999999995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/10/24,22.64962916584167 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/12/10,2.4037635500000007 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/12/02,4.399475000144998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/11/24,3.803990875000002 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/01/11,21.675758333333352 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2022/12/27,11.660091666309173 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/02/21,12.779008333318329 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/02/21,13.058450000184996 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/10,10.51058333323833 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/10,12.742358333285829 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/09,14.20355833328583 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/02,13.345399999857504 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/04/02,14.029658333238336 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/09,10.036820837350843 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/31,8.10464545012 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/26,3.0443295500724985 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/26,4.135020490144995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/05,7.036033333958338 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/05,2.801828035073329 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/28,9.013000000770004 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/28,3.349659090869995 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/05/27,23.21370833580084 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/22,8.361810606739168 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/06,6.171225000167498 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/21,3.748127250000004 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/06/21,3.180150713333336 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/10,16.442900007379983 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/05,4.598447619627613 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/05,4.140815805280112 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/30,5.983234090072503 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/23,4.2192295 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/23,3.714850000000005 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/07/22,14.908174999999972 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/06,10.326760606714164 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/01,6.41985681012 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/01,4.320756820409998 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/01,4.894334090507497 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/31,3.32861345333333 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/08/23,2.684552100000001 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/10/03,14.58668333333335 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/28,6.870949998490016 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/10/03,3.7639272500724954 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/10/03,4.453113624999993 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/10/02,4.222472749999996 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/25,5.771625000675008 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/09/25,3.096675001377497 -Grampus Lake,15466409,-74.47625975696255,44.032478969595545,2023/11/03,5.337188639999994 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2014/12/29,7.689225000217499 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/01/22,23.694941666666654 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/02/06,21.791766666666685 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/01/22,23.694941666666654 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/02/06,21.791766666666685 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/02/23,22.47810000000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/03/10,21.66638333333335 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/02/23,22.47810000000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/03/10,21.66638333333335 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/03,9.608366666286686 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/03,9.608366666286686 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/28,5.1801149991500015 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/28,6.78166499924 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/06,4.383050000214997 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/06,4.304950000265 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/28,5.1801149991500015 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/04/28,6.78166499924 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/06,4.383050000214997 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/06,4.304950000265 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/06,4.741780244664163 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/30,8.018399995170011 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/30,6.342370824855847 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/07,13.49353333333332 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/07,12.18034999999998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/29,3.180057349999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/22,6.90924167476416 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/22,10.350975026497505 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/06,4.741780244664163 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/30,8.018399995170011 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/30,6.342370824855847 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/07,13.49353333333332 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/07,12.18034999999998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/29,3.180057349999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/22,6.90924167476416 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/05/22,10.350975026497505 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/07/08,4.290308071992384 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/22,4.382387886503334 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/07/08,4.290308071992384 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/06/22,4.382387886503334 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/09,4.15878789666666 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/07/24,10.879824997289996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/01,3.9253750000000007 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/09,4.15878789666666 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/07/24,10.879824997289996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/01,3.9253750000000007 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/03,5.658214582650839 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/03,6.481672916119169 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/25,4.5038040065934055 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/11,2.9653179025000003 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/11,2.552854000000002 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/02,2.7493272500475 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/03,5.658214582650839 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/03,6.481672916119169 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/08/25,4.5038040065934055 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/11,2.9653179025000003 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/11,2.552854000000002 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/02,2.7493272500475 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/05,14.29689813062084 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/05,9.568631472304164 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/26,3.214870479999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/04,12.228474999999982 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/27,2.66385833076923 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/27,3.332028793269231 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/05,14.29689813062084 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/05,9.568631472304164 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/26,3.214870479999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/04,12.228474999999982 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/27,2.66385833076923 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/09/27,3.332028793269231 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/05,2.2405621423076885 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/29,12.815358333518327 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/05,2.2405621423076885 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/10/29,12.815358333518327 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/29,9.85590530688666 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/22,4.433864408670828 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/22,4.582591626739162 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/30,2.905806173076924 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/30,3.91856536538461 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/29,9.85590530688666 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/22,4.433864408670828 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/22,4.582591626739162 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/30,2.905806173076924 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2015/11/30,3.91856536538461 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/02/10,22.47567500000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/01/24,21.67155833333335 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/02/10,22.47567500000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/01/24,21.67155833333335 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/02/26,21.984966666666672 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/02/26,21.984966666666672 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/05,5.78190543341112 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/03/29,9.05206294248167 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/03/29,14.009660531709176 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/05,5.78190543341112 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/03/29,9.05206294248167 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/03/29,14.009660531709176 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/07,5.414920557715241 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/30,3.779660641666663 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/30,3.7985038216666624 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/21,14.166912536172497 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/29,17.498558333523327 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/22,14.888000000047496 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/07,5.414920557715241 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/30,3.779660641666663 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/30,3.7985038216666624 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/21,14.166912536172497 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/29,17.498558333523327 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/04/22,14.888000000047496 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/23,4.570387994868213 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/31,5.333476146510834 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/24,2.806073613333334 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/24,4.385841668333328 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/23,4.570387994868213 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/31,5.333476146510834 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/24,2.806073613333334 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/05/24,4.385841668333328 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/03,5.8964522801450014 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/03,5.521665920145 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/24,11.493441668966655 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/11,15.189899999999971 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/02,3.3881522500000063 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/25,2.358047000000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/25,2.5059694303571445 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/03,5.8964522801450014 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/03,5.521665920145 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/24,11.493441668966655 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/11,15.189899999999971 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/02,3.3881522500000063 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/25,2.358047000000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/06/25,2.5059694303571445 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/11,6.47606042642667 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/04,3.367177299999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/04,3.210534099999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/26,4.038572931666657 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/03,14.242674999755 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/27,2.628895350000003 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/27,2.526188375000004 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/11,6.47606042642667 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/04,3.367177299999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/04,3.210534099999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/26,4.038572931666657 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/03,14.242674999755 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/27,2.628895350000003 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/07/27,2.526188375000004 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/05,3.534831849999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/05,3.655781849999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/27,2.693698508550834 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/04,2.4011862500000025 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/28,8.736083333048315 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/28,12.545870838468325 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/05,3.534831849999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/05,3.655781849999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/27,2.693698508550834 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/04,2.4011862500000025 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/28,8.736083333048315 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/08/28,12.545870838468325 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/07,4.248953667999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/07,3.169497611333331 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/28,2.4092248663333327 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/21,3.002766581666665 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/21,3.019344594999998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/06,2.2886976999999984 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/29,2.612938600000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/29,2.414097700000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/07,4.248953667999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/07,3.169497611333331 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/28,2.4092248663333327 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/21,3.002766581666665 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/21,3.019344594999998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/06,2.2886976999999984 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/29,2.612938600000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/09/29,2.414097700000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/08,5.983808067252741 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/08,5.788006550586075 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/23,3.474998617072497 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/23,3.745690275405833 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/07,5.590602254807693 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/08,5.983808067252741 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/08,5.788006550586075 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/23,3.474998617072497 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/10/23,3.745690275405833 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/11/07,5.590602254807693 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/12/10,22.404625000000006 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2016/12/10,22.404625000000006 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/01/02,22.326100000000007 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/01/02,22.326100000000007 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/01/27,11.535174998925 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/04,21.838800000000013 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/04,21.867666666666683 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/01/27,11.535174998925 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/04,21.838800000000013 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/04,21.867666666666683 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/28,10.042358333118347 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/28,9.989858333118349 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/08,10.805206250472514 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/08,12.0733750003325 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/20,15.224474999905006 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/20,15.224474999905006 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/28,10.042358333118347 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/28,9.989858333118349 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/08,10.805206250472514 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/08,12.0733750003325 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/20,15.224474999905006 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/02/20,15.224474999905006 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/23,22.177183333333343 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/03/23,22.177183333333343 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/04/24,8.046108336714166 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/05/11,5.895704167024158 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/05/11,4.871754167071663 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/04/24,8.046108336714166 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/05/11,5.895704167024158 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/05/11,4.871754167071663 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/11,4.849838235996782 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/11,4.849838235996782 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/05,2.962318150000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/28,2.8696750000000044 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/28,2.7952750000000064 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/05,2.962318150000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/28,2.8696750000000044 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/06/28,2.7952750000000064 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/29,6.18735833836834 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/30,2.424139675 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/30,2.5093731432692303 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/29,6.18735833836834 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/30,2.424139675 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/07/30,2.5093731432692303 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/30,13.265050001645 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/23,3.750758217999993 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/23,3.741751417999993 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/30,13.265050001645 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/23,3.750758217999993 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/08/23,3.741751417999993 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/10,5.464758325288345 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/01,3.859578866666658 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/24,3.071138630217496 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/24,2.945681810217498 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/02,2.396812330769229 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/02,2.613039593269231 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/23,4.316052309999993 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/10,5.464758325288345 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/01,3.859578866666658 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/24,3.071138630217496 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/24,2.945681810217498 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/02,2.396812330769229 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/02,2.613039593269231 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/09/23,4.316052309999993 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/11/11,7.625184094999994 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/11/11,9.19022576333333 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/25,2.663722250000003 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/11/11,7.625184094999994 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/11/11,9.19022576333333 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/10/25,2.663722250000003 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2017/12/04,12.170095837798344 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/05/05,5.1657749999999965 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/05/29,13.832966675866658 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/05/30,4.68098613076922 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/05/30,2.739647500000002 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/07/09,3.371368199999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/07/09,4.791421399999984 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/06/22,2.9311111000000016 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/08/10,4.0446295499999945 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/08/10,3.9117984633333287 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/08/09,9.241358340400811 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/09/03,2.7311772500000018 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/09/03,3.147156750000002 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/08/25,2.889252250000004 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/10/05,2.184124874999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/10/05,2.431008429807692 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/12/08,16.687958333333327 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/11/22,21.67155833333335 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2018/11/22,21.66638333333335 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/02/09,13.476241666429171 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/02/01,21.867666666666683 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/02/26,21.794191666666684 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/04/23,4.330732973590002 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/04/23,4.306347749170001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/05/08,5.643975006899995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/04/22,2.127761199999997 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/06/10,19.47568333345084 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/06/10,19.28988333364084 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/06/01,10.156950000875028 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/06/09,3.803645499999994 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/07/03,10.688754187366673 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/08/04,14.87994168293416 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/08/05,4.198309984615383 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/08/05,2.712665635000002 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/07/27,5.196999999999989 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/05,9.918680195714288 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/06,2.35653175 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/06,3.286269486538458 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/21,7.033314393333331 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/10/08,2.955156868269229 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/10/08,2.9170671865384588 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/09/29,14.943166666666649 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/10/23,16.010166668251667 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/11/09,2.5520522500000005 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/12/11,7.881712893848329 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/12/11,9.349016670506677 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/11/25,21.29343333583336 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2019/11/25,15.998591666666693 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/02/05,22.26459166666668 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/02/29,21.48859166666669 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/02/29,21.30589166666669 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/04/01,8.934522921024165 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/04/01,19.88551666661916 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/02,7.866318187372498 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/04/25,4.2531943606552325 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/04/25,4.150053528412735 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/10,3.023775000000005 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/03,2.875641349999999 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/03,3.473122030769224 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/27,3.797666668405825 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/27,3.874341668333324 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/05/26,3.730309099999997 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/05,16.831333333738304 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/06,2.537870117307693 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/06,2.8370335240384628 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/06,14.502433333333354 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/30,4.431591126666655 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/07/30,4.602212881666654 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/07,11.755099999999985 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/07,11.45904999999998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/31,6.812971973620836 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/31,5.897868187144172 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/22,7.078749246666668 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/23,5.2764067249999975 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/08/23,3.726604500000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/10/09,5.022204589999992 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/09/23,11.333413748379986 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/10/10,7.636825000217495 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/10/01,3.030563273076923 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/09/24,9.565150002419989 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/09/24,7.669125000384983 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/11/10,9.816603682380943 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/10/25,13.320537536275005 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/12/29,21.791766666666685 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2020/12/29,21.791766666666685 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/01/29,22.76205 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/01/30,21.75304166666668 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/03/02,22.451158333333343 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/04/03,12.54099166642917 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/04/04,8.950024999477524 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/04/04,9.354899999477528 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/05/06,2.944276665000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/05/06,2.844289830000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/04/27,5.5599921627948765 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/06,15.372275000190006 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/07,3.193202250000005 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/07,3.341002250000007 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/05/29,4.589769705046667 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/23,3.287273174999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/06/23,4.2206409199999975 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/02,9.58885715245584 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/02,3.313192466995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/10,6.500225000454998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/10,4.864690910167494 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/07/25,2.7817545000000057 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/07/25,2.775875000000004 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/09/10,5.149081554096547 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/25,6.837508334733336 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/09/11,3.614568199999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/09/11,3.913474999999993 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/26,3.580454499999997 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/08/26,3.4944976599999995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/06,6.856470842820828 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/06,9.082250013085003 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/10/28,8.862184116739162 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/05,3.5815397692307704 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/10/29,2.538387180769228 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/10/29,2.7198368798076915 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/12/07,13.843208337885834 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/24,2.4398826423076896 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/11/21,2.289633999999998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2021/12/24,23.310041666666663 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/02/01,22.26459166666668 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/01/25,12.987000000184995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/02/26,13.647541666356666 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/02/26,11.830266666651664 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/04/06,7.838577082963349 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/04/06,15.381509621795836 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/03/29,18.53698978230751 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/03/22,13.712508333790844 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/03/22,18.552106250200005 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/09,2.353824850000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/09,2.3472546250000024 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/08,3.121698999999999 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/01,4.4791900399999935 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/01,2.576246475000004 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/04/30,6.176050002299994 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/31,13.318000415764176 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/25,3.2788045000475017 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/25,3.1636272500475027 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/05/24,3.0701272500000014 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/07/04,3.827850763333328 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/29,14.679998334470833 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/29,15.6035875005175 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/07/03,8.58901211894167 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/26,5.6044549381774935 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/26,4.253540532439166 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/06/25,4.12092044999999 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/07/28,5.714727249999998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/07/28,5.407179499999999 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/10,9.454817416786677 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/08/24,17.353033334315825 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/08/29,3.798029499999997 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/08/29,2.755325000047502 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/08/28,3.227567963333332 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/10/09,6.207674999710008 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/10/09,6.594149998835013 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/22,8.256424995660002 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/22,6.677699999065009 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/30,3.708879170276664 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/30,3.871779169841665 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/22,3.092817161538459 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/22,3.3902931673076897 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/09/21,6.418550000240006 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/10/26,14.77748333333332 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/11/09,2.677480330769232 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/11/09,2.6804013476648354 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/11/08,2.8305356432692297 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/10/24,12.237700000400007 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/12/10,2.65569995 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/12/02,3.323654500000002 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/11/24,3.505074999999999 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2022/12/27,8.643874998687508 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/02/04,22.22352500000001 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/02/21,11.193641666309173 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/04/10,11.225783333285824 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/04/10,10.670058333238323 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/04/02,13.843116666524162 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/09,9.444350002752504 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/31,3.201547576405832 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/26,2.9393477204349985 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/26,3.811394696811661 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/28,3.5002000009424945 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/28,13.342150000145 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/05/27,22.987225000000013 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/06/22,2.8211621284058324 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/06,2.949336399999998 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/08/05,4.881026190045956 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/08/05,3.8615030331166618 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/30,5.326002276315 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/23,6.922896966906668 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/23,2.8653871707692304 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/07/22,4.577191309350832 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/06,8.975915153333329 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/01,3.5584545502174945 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/01,4.44001428585928 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/01,2.9987546000724974 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/01,5.598921213743324 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/08/31,3.2300893633333305 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/08/23,3.061413599999997 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/10/03,16.631860606666688 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/28,7.18357083081085 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/28,6.41705624909751 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/23,3.3835045010875 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/23,7.420727250580003 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/10/03,2.90355585 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/10/03,3.097282224999999 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/10/02,3.04825435 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/25,3.2882454499999967 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/09/25,3.146618179999996 -Rock Pond,15468177,-74.64212158896589,43.98570687399537,2023/11/03,2.9664542274999985 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/01/05,12.139949999984998 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/03/11,9.749016666666682 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/03/10,21.67155833333335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/02/22,13.40815833307083 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/03/11,9.749016666666682 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/03/10,21.67155833333335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/02/22,13.40815833307083 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/04/03,9.227275001385005 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/04/03,9.227275001385005 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/04/28,6.700024055556667 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/06,8.537400002372484 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/06,6.5302000001199865 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/04/28,6.700024055556667 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/06,8.537400002372484 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/06,6.5302000001199865 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/06,7.168984467328334 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/30,5.558704167414168 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/07,13.95099999978498 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/29,3.742997730000001 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/22,4.049506819999997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/22,3.0132795500000027 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/06,7.168984467328334 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/30,5.558704167414168 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/07,13.95099999978498 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/29,3.742997730000001 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/22,4.049506819999997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/05/22,3.0132795500000027 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/07/08,7.816720830760832 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/22,11.92104166721166 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/23,2.6790250000000047 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/23,2.7697750000000063 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/07/08,7.816720830760832 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/22,11.92104166721166 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/23,2.6790250000000047 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/06/23,2.7697750000000063 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/09,4.181360646666659 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/02,15.424616666284155 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/07/24,10.256745835870827 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/09,4.181360646666659 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/02,15.424616666284155 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/07/24,10.256745835870827 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/03,24.530404167454176 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/25,3.953111315824166 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/11,2.8031330740384583 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/11,2.4996444855769218 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/02,7.445425000047496 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/26,2.9552462623076927 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/26,3.9561553249999952 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/03,24.530404167454176 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/25,3.953111315824166 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/11,2.8031330740384583 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/11,2.4996444855769218 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/02,7.445425000047496 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/26,2.9552462623076927 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/08/26,3.9561553249999952 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/10/05,5.738000001352499 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/26,9.791500004744984 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/10/04,5.339596222174992 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/27,2.780013073626373 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/27,2.9666394182692297 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/10/05,5.738000001352499 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/26,9.791500004744984 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/10/04,5.339596222174992 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/27,2.780013073626373 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/09/27,2.9666394182692297 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/05,1.9844883749999969 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/05,1.9844883749999969 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/12/07,2.956375000000005 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/30,3.008456829395602 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/30,3.576936519230765 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/12/07,2.956375000000005 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/30,3.008456829395602 -South Pond,15468321,-74.45312024769454,43.91416646579713,2015/11/30,3.576936519230765 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/05,11.543412502974997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/05,11.543412502974997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/07,5.105424999997508 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/30,3.874003196999997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/21,13.571908381633346 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/29,8.142450003449984 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/22,18.110408333733343 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/22,15.767033333813334 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/07,5.105424999997508 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/30,3.874003196999997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/21,13.571908381633346 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/29,8.142450003449984 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/22,18.110408333733343 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/04/22,15.767033333813334 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/23,5.627591848153215 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/31,5.645859482434167 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/24,14.244808358633358 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/24,13.95685834950586 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/23,5.627591848153215 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/31,5.645859482434167 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/24,14.244808358633358 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/05/24,13.95685834950586 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/03,4.228478793958335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/24,7.2527121206025 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/11,12.52825833333332 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/11,11.96238333338082 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/25,2.7835082365384607 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/25,3.174695454999997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/03,4.228478793958335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/24,7.2527121206025 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/11,12.52825833333332 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/11,11.96238333338082 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/25,2.7835082365384607 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/06/25,3.174695454999997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/11,5.549183335540841 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/04,3.322087727999996 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/03,2.535635804807693 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/27,3.406043035769226 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/27,3.5779320806410224 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/11,5.549183335540841 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/04,3.322087727999996 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/03,2.535635804807693 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/27,3.406043035769226 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/07/27,3.5779320806410224 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/05,3.459157461666659 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/27,3.532329549999998 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/04,2.462011250000002 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/28,12.156850000427498 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/28,12.063100000427491 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/05,3.459157461666659 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/27,3.532329549999998 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/04,2.462011250000002 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/28,12.156850000427498 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/08/28,12.063100000427491 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/07,6.443708384380943 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/07,2.616699861405833 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/28,7.641674993355004 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/21,4.054046981666657 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/06,2.5801326807692284 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/29,2.5316550125000017 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/29,2.791802555769229 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/07,6.443708384380943 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/07,2.616699861405833 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/28,7.641674993355004 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/21,4.054046981666657 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/06,2.5801326807692284 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/29,2.5316550125000017 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/09/29,2.791802555769229 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/11/08,5.486911369999989 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/23,6.625979525072494 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/11/07,3.183277254807692 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/11/08,5.486911369999989 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/10/23,6.625979525072494 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/11/07,3.183277254807692 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/12/10,9.930966666666682 -South Pond,15468321,-74.45312024769454,43.91416646579713,2016/12/10,9.930966666666682 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/03,21.49190833333335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/04,21.919450000000012 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/04,21.75304166666668 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/03,21.49190833333335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/04,21.919450000000012 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/04,21.75304166666668 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/27,10.442991666666677 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/20,16.075249999999986 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/27,10.442991666666677 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/02/20,16.075249999999986 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/03/23,22.451158333333343 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/04/09,14.515325002489996 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/03/23,22.451158333333343 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/04/09,14.515325002489996 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/04/24,5.990161365094998 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/05/11,4.928809100072496 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/05/11,4.408725 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/04/24,5.990161365094998 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/05/11,4.928809100072496 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/05/11,4.408725 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/11,7.331480299086661 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/11,7.331480299086661 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/05,7.77604267307693 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/28,3.667034820769232 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/28,4.146112841153843 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/05,7.77604267307693 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/28,3.667034820769232 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/06/28,4.146112841153843 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/29,21.22965833193833 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/06,4.47935 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/30,2.2250407400000016 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/30,2.2916883500000003 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/29,21.22965833193833 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/06,4.47935 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/30,2.2250407400000016 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/07/30,2.2916883500000003 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/30,7.493075002489994 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/23,2.9855886299999974 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/30,7.493075002489994 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/08/23,2.9855886299999974 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/10,9.258838631982496 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/01,4.471211419999992 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/09/24,5.913868180072502 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/02,2.653424391895604 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/02,3.1167780432692296 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/09/23,4.394970484999992 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/10,9.258838631982496 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/01,4.471211419999992 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/09/24,5.913868180072502 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/02,2.653424391895604 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/10/02,3.1167780432692296 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/09/23,4.394970484999992 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/11/11,4.051372878739165 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/11/11,3.694083485695835 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/11/11,4.051372878739165 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/11/11,3.694083485695835 -South Pond,15468321,-74.45312024769454,43.91416646579713,2017/12/04,14.208198644359989 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/05/05,3.5953999799999967 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/04/28,3.0635750001450037 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/04/28,3.96727500029 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/05/29,4.269099956739046 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/05/30,3.714403033333335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/05/30,5.382625002492504 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/07/09,4.160520454999988 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/07/08,8.580425000697488 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/06/22,2.573085175000001 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/10,4.28569319999999 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/09,5.951975000047509 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/02,2.669000000000003 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/02,3.202675000000005 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/09/03,4.287727299999998 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/09/03,2.6631522500000044 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/08/25,14.258833332903317 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/10/05,2.460045268269229 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/10/05,2.9389500918956024 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/12/07,22.529033333333334 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/11/22,7.141075000289996 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/11/22,2.9362250000000047 -South Pond,15468321,-74.45312024769454,43.91416646579713,2018/12/23,10.188083333333347 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/02/09,11.070249998925007 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/02/26,21.856800000000018 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/02/26,21.856800000000018 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/04/23,5.359174246881666 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/05/08,7.912475010587493 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/04/22,4.169947729999997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/06/10,8.817774997772503 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/06/01,8.702231249410023 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/06/09,4.642250000000005 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/06/26,3.373749999999995 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/08/04,7.493975025547503 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/08/05,3.2956795 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/08/05,3.2299195000000016 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/07/27,3.37995 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/05,4.074024286666657 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/06,2.916989061538459 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/06,3.047292226538458 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/21,6.551531056666664 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/10/08,2.3515283750000022 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/10/08,3.805660251538455 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/22,14.406174999999989 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/09/22,14.130633333333323 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/10/24,3.8899500001449945 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/10/24,3.912313461538461 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/11/25,15.28956460194835 -South Pond,15468321,-74.45312024769454,43.91416646579713,2019/11/25,13.733875008410006 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/02/05,11.142324999325004 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/02/29,21.75304166666668 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/04/01,13.91817500023751 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/04/01,17.47300000000002 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/02,19.635550004600017 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/04/25,4.757922847591896 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/10,3.366575765633332 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/03,3.693206829999996 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/03,2.8428395499999977 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/27,3.6220930363333257 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/06/04,2.9387022500475006 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/06/04,3.0556022500475013 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/05/26,2.511280910000002 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/05,11.198500000797504 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/06,2.6354825807692306 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/06,2.798383510164836 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/06,12.585891669039166 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/30,3.334192779075092 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/07/30,3.4383715290750896 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/07,13.81940000026249 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/07,17.89855000040001 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/31,3.8253136503625007 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/22,3.3362113700724967 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/09/08,8.852075000869995 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/09/08,15.136199999754984 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/30,4.039535000312492 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/23,2.8205001499999995 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/08/23,3.6542999999999934 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/10/09,5.247024132380946 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/10/01,2.804925000000004 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/09/24,3.886346972391668 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/09/24,3.823786365870001 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/11/10,3.8645236489566632 -South Pond,15468321,-74.45312024769454,43.91416646579713,2020/10/25,5.114591666831675 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/01/29,22.76205 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/01/30,21.919450000000012 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/03/02,22.34590833333334 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/04/03,12.617239586203327 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/05/06,3.0215250000000045 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/05/06,3.136300000000006 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/04/27,13.113583333318326 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/06/07,4.751475004600008 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/06/07,3.439127299999997 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/07/24,3.641412887656664 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/10,3.8582182000724936 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/10,4.65193634999999 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/07/25,3.420650000000003 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/07/25,2.964359 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/09/10,9.29711250141251 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/25,9.660386360820006 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/26,3.590452250000003 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/08/26,3.3335022500000013 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/06,7.122833336013336 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/10/28,4.291490899999999 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/09,5.204382623333324 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/05,3.630469403846155 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/10/29,2.4868362932692283 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/10/29,2.9995472115384616 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/12/07,15.58861666657168 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/24,2.610703230769228 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/24,2.43555779326923 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/11/21,2.357665624999998 -South Pond,15468321,-74.45312024769454,43.91416646579713,2021/12/23,22.01263333333335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/01/25,11.24366666630918 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/02/26,21.961558333333347 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/02/26,22.304175000000008 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/03/30,22.26459166666668 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/04/06,13.437363800604992 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/03/29,21.88613333333335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/09,2.626351750000002 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/09,2.7116367950000018 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/08,3.628630323333331 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/01,3.1344852549999977 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/01,2.978753895000001 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/04/30,5.706625003107491 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/25,8.115506828643328 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/25,9.356050886824876 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/05/24,3.752093873333332 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/04,6.07850833638834 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/06/29,4.759421399999985 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/11,14.202299999784982 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/03,7.943854166069175 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/06/25,2.462729475000001 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/05,2.834625000000005 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/05,3.1150000000000078 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/28,3.1479634500000007 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/07/28,4.738104184615377 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/10,6.51803825714667 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/29,3.321327250000004 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/29,3.292375000000003 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/08/28,2.629826305000003 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/09,6.97619999863501 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/22,6.126470828175847 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/08,2.869975000000005 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/08,2.541677250000004 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/30,12.35152499999999 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/30,12.907383333333325 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/29,3.3131022500000062 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/22,2.5015380299999994 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/22,2.964971292307692 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/09/21,6.207350000192506 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/31,8.223999997047509 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/26,6.826774996040008 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/11/09,2.762300623626374 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/11/09,2.518594480769231 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/11/08,2.299089392307689 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/10/24,9.136199999740004 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/12/10,2.4474861000000017 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/12/02,3.7463712133333344 -South Pond,15468321,-74.45312024769454,43.91416646579713,2022/11/24,10.3039250001675 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/01/11,21.67155833333335 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/04/10,13.8714999999525 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/04/10,12.20291666657166 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/04/02,13.573283333190837 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/04/01,12.434370455427509 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/09,10.380670836203343 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/09,9.481304169961678 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/31,4.958109090362493 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/31,8.739257573478334 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/26,2.9826134913333315 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/26,4.062800624666661 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/05,11.792112501287493 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/05,12.14082916819166 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/04,3.4108250000000067 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/28,9.57502500079251 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/28,8.316300000887509 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/05/27,24.977433333380823 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/22,7.069994696739165 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/22,9.118094696739169 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/06,4.359828480769222 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/21,4.224962276923081 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/06/21,4.665855091025641 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/10,8.420774994742498 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/05,6.175899997975006 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/05,6.246974998205007 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/30,3.7082795000475 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/23,4.007531004807692 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/23,2.923009975000001 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/07/22,9.62462500021499 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/06,15.508418940000029 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/01,3.018431825072497 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/01,2.744511370072499 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/01,8.900110606761674 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/01,8.942425000167503 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/31,4.08771062166666 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/08/23,2.581224 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/28,6.447845828160849 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/28,6.7120958249358464 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/10/03,5.879842292999999 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/10/03,5.425286979666663 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/10/02,5.1924455249999975 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/25,3.0890012499999955 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/09/25,2.485880975000002 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/10/25,7.540933323083339 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/11/03,15.525110611666651 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/11/28,2.804025713333334 -South Pond,15468321,-74.45312024769454,43.91416646579713,2023/11/28,3.158175000000006 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/01/05,21.919450000000012 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/03/10,21.88613333333335 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/02/22,12.33830833323833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/02/22,12.25335833323833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/03/10,21.88613333333335 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/02/22,12.33830833323833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/02/22,12.25335833323833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/03,7.784199998910005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/03,9.20706666623668 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/03,7.784199998910005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/03,9.20706666623668 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/28,7.773857593500832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/06,3.6199664299999967 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/04/28,7.773857593500832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/06,3.6199664299999967 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/06,9.275997498665005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/06,7.619202498665003 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/07,19.53204166666665 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/29,4.333817821115832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/29,4.865634869130832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/22,2.779603175 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/06,9.275997498665005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/06,7.619202498665003 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/07,19.53204166666665 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/29,4.333817821115832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/29,4.865634869130832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/05/22,2.779603175 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/08,4.700495837778337 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/08,4.531250004590001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/22,5.097382405033452 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/22,6.6936990761051165 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/08,4.700495837778337 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/08,4.531250004590001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/22,5.097382405033452 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/06/22,6.6936990761051165 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/09,2.913823680769229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/09,2.907213055769229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/24,21.440058333213333 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/24,12.617424999345 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/10,8.048031240449987 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/01,2.4457677500000026 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/01,2.4536700000000025 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/09,2.913823680769229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/09,2.907213055769229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/24,21.440058333213333 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/07/24,12.617424999345 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/10,8.048031240449987 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/01,2.4457677500000026 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/01,2.4536700000000025 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/25,4.847012493507507 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/25,13.135385833523326 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/11,2.902131317307692 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/02,2.936250000000005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/02,3.42280000000001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/25,4.847012493507507 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/08/25,13.135385833523326 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/11,2.902131317307692 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/02,2.936250000000005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/02,3.42280000000001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/05,9.273566692134162 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/26,7.0877000004575015 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/26,6.677100000529999 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/04,4.725800765134998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/04,4.700528039944998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/27,3.3254660641025624 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/05,9.273566692134162 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/26,7.0877000004575015 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/26,6.677100000529999 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/04,4.725800765134998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/10/04,4.700528039944998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/09/27,3.3254660641025624 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/06,10.777956305447503 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/05,2.835121268269229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/05,3.181588504807692 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/06,10.777956305447503 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/05,2.835121268269229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/05,3.181588504807692 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/29,8.685099994407505 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/29,4.411535827265832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/22,2.5084000017924986 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/30,3.764503524038452 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/29,8.685099994407505 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/29,4.411535827265832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/22,2.5084000017924986 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2015/11/30,3.764503524038452 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/01/08,22.013858333333346 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/01/08,22.013858333333346 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/01/24,21.791766666666685 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/01/24,21.791766666666685 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/02/26,9.95794166645168 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/02/26,9.95794166645168 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/05,16.399150030190018 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/05,9.764127284342484 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/05,16.399150030190018 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/05,9.764127284342484 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/30,4.740190909999992 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/21,8.880050002299999 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/21,9.538158338078322 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/29,5.311316678179159 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/29,9.393071593892486 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/22,14.971216666006653 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/30,4.740190909999992 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/21,8.880050002299999 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/21,9.538158338078322 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/29,5.311316678179159 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/29,9.393071593892486 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/04/22,14.971216666006653 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/23,5.781344329613331 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/23,4.5579394037975 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/31,4.6458977512125 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/31,5.336772364950833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/24,5.859490910095002 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/23,5.781344329613331 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/23,4.5579394037975 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/31,4.6458977512125 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/31,5.336772364950833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/05/24,5.859490910095002 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/03,5.330675005200002 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/24,3.444780908072496 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/24,4.738796818144992 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/11,13.537733333333314 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/02,3.9560091001199935 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/02,3.820428066786664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/25,3.187882465934065 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/03,5.330675005200002 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/24,3.444780908072496 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/24,4.738796818144992 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/11,13.537733333333314 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/02,3.9560091001199935 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/02,3.820428066786664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/06/25,3.187882465934065 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/11,13.518035702418311 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/11,15.49285237732749 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/04,2.360734817857144 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/26,5.3274333424758415 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/26,4.334062503467508 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/03,3.4186926490384626 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/03,3.378938149038463 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/27,2.558161540000001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/11,13.518035702418311 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/11,15.49285237732749 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/04,2.360734817857144 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/26,5.3274333424758415 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/26,4.334062503467508 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/03,3.4186926490384626 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/03,3.378938149038463 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/07/27,2.558161540000001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/05,5.475340853021975 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/27,22.17940250038 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/27,22.57476916704667 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/04,4.412136364999994 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/04,3.5771611456959675 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/28,3.2101272500475004 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/05,5.475340853021975 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/27,22.17940250038 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/27,22.57476916704667 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/04,4.412136364999994 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/04,3.5771611456959675 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/08/28,3.2101272500475004 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/07,5.23084837571428 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/28,9.137678786666676 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/28,7.939872730000007 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/21,3.2383522999999985 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/06,3.097767874038461 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/06,3.01602664326923 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/29,16.819616666666647 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/07,5.23084837571428 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/28,9.137678786666676 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/28,7.939872730000007 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/21,3.2383522999999985 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/06,3.097767874038461 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/06,3.01602664326923 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/09/29,16.819616666666647 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/08,4.502437133333325 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/23,5.2682810977142775 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/07,3.618722064102564 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/07,3.5248819391025648 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/08,4.502437133333325 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/10/23,5.2682810977142775 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/07,3.618722064102564 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/07,3.5248819391025648 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/12/10,7.286750000555005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/23,3.509450000000008 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/23,3.5547000000000075 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/12/10,7.286750000555005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/23,3.509450000000008 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2016/11/23,3.5547000000000075 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/01/02,22.30574166666668 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/01/02,22.30574166666668 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/04,21.867666666666683 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/04,21.867666666666683 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/28,13.744541666619163 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/08,18.8432062502 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/27,13.641574999952494 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/27,13.564649999952495 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/20,14.578399999905004 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/28,13.744541666619163 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/08,18.8432062502 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/27,13.641574999952494 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/27,13.564649999952495 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/02/20,14.578399999905004 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/23,22.44243333333334 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/23,22.304499999355013 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/09,13.876041666619164 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/23,22.44243333333334 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/03/23,22.304499999355013 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/09,13.876041666619164 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/24,7.353706061666664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/24,7.475056061666664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/24,7.353706061666664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/04/24,7.475056061666664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/06/11,6.312584074650116 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/06/11,6.231184075032616 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/06/11,6.312584074650116 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/06/11,6.231184075032616 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/05,2.2664567 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/05,2.2079214875 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/05,2.2664567 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/05,2.2079214875 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/29,20.907308333190823 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/29,10.999575001287496 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/06,3.0261250000000017 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/06,3.5235000000000074 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/30,2.624905293269228 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/29,20.907308333190823 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/29,10.999575001287496 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/06,3.0261250000000017 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/06,3.5235000000000074 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/07/30,2.624905293269228 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/30,2.815893184999997 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/30,2.6990871283333324 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/23,4.951192081398338 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/30,2.815893184999997 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/30,2.6990871283333324 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/08/23,4.951192081398338 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/10,13.825885618361683 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/01,3.196452859999996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/01,2.8781696499999976 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/24,2.5105053083333324 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/02,3.3537024391025643 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/23,5.028000694666661 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/23,2.6080104500000023 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/10,13.825885618361683 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/01,3.196452859999996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/01,2.8781696499999976 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/24,2.5105053083333324 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/02,3.3537024391025643 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/23,5.028000694666661 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/09/23,2.6080104500000023 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/11,4.938319747714279 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/10,12.349300000199992 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/10,15.668116667051654 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/25,14.658541667056664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/25,6.435554168844159 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/11,4.938319747714279 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/10,12.349300000199992 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/11/10,15.668116667051654 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/25,14.658541667056664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/10/25,6.435554168844159 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/12/04,13.187925025395016 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2017/12/04,8.05397857121357 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/01/29,10.987549999785005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/05,6.912250000000005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/05,13.674788625000003 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/29,15.804833370133336 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/29,15.646025034500004 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/05/30,2.9231682 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/07/09,4.154328699999989 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/06/30,20.031625000000005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/06/30,20.121600000000004 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/07/08,8.333725000192477 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/07/08,5.947950000382492 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/07/01,5.838686371476666 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/06/22,2.674108780769231 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/06/22,2.853467905769232 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/08/10,3.832000763333329 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/08/09,7.364602250000002 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/08/09,7.35107725 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/09/03,3.530570123846153 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/10/05,3.3471092891025607 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/12/08,21.75304166666668 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/11/22,10.53020833333334 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2018/12/23,10.644916666666685 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/02/09,14.35209166666666 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/02/09,13.137639999952498 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/02/01,21.75304166666668 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/03/05,21.675758333333352 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/02/26,21.867666666666683 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/05/09,3.920090000127508 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/04/23,5.097244166314172 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/05/08,9.280716673614156 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/05/08,6.870183341430824 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/04/22,2.5000816432692288 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/04/22,3.320582504807693 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/01,9.094402085145838 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/01,8.769045834923334 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/09,2.851684 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/09,2.9087262500000004 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/07/03,11.344183340400829 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/07/03,8.398025002467504 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/06/26,3.745300724999995 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/07/04,8.60872916681166 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/08/04,13.482600018400005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/08/04,13.918733363233333 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/07/28,8.439904162846677 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/08/05,3.3417795000000026 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/05,3.002400099999996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/05,4.747927555769227 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/06,3.1313898798076925 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/21,4.267772622380945 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/21,4.084640807380945 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/10/08,2.990231910805859 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/29,14.756695833405836 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/09/29,15.257370833405837 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/11/08,8.863229166711681 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/11/08,9.650943749542511 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/11/01,4.460154925700003 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/10/23,4.260059883622736 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/10/23,4.523223328798337 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/12/11,13.87919166712916 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2019/11/25,12.663783332773344 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/02/29,12.601516666851662 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/04/01,12.1216500003325 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/02,4.171593650999996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/02,4.172384550999996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/04/25,12.93763336337834 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/10,14.051708333533329 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/10,3.999550000145003 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/03,3.134902300072501 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/27,3.495456830144993 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/06/11,12.875974998954998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/06/11,13.437350009272476 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/06/04,6.0329000025375 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/26,3.51369848833333 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/05/26,3.595825768333324 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/07/05,15.377916680684164 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/07/05,14.563133347495832 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/06/28,8.6777148115275 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/07/06,2.7553624750000028 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/06,3.2761681799999947 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/06,3.3509931799999944 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/07/30,7.96463333710167 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/07,2.732733700000001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/31,3.0104878499999983 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/22,5.282840153740833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/22,5.403420462902502 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/09/08,8.510575000652496 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/08/23,2.797716925000001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/09,5.964974142380945 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/09,4.612206849999989 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/01,12.335658333318325 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/01,15.402250000369992 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/09/24,3.547252279999997 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/11/10,5.024240954380946 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/11/10,4.961756107714276 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/11/03,6.5645749958250095 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/25,4.500550005215005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/10/25,4.344600005125005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2020/12/29,21.867666666666683 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/01/29,23.67154166666665 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/01/29,23.67154166666665 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/02/06,21.88613333333335 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/02/06,21.67155833333335 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/01/30,21.838800000000013 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/03/11,9.22348999945252 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/04/04,14.026849999857513 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/03/26,21.981250000000014 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/05/06,3.126879500000003 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/06,13.08048749981 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/06,15.32959583438833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/07,2.932127499999998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/05/29,14.600941666666664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/05/29,13.177558333333325 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/30,7.071000001407494 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/30,10.411150000192498 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/06/23,2.5085795000474995 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/02,5.0551650000000015 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/10,6.575750000145 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/09/10,5.759188645720001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/09/10,5.527011369345006 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/25,8.975202270000006 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/25,9.276777270000007 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/09/11,10.007550003522487 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/08/26,3.411978157307692 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/06,5.4114947527142805 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/10/28,6.750674997115011 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/10/28,5.558889999114999 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/05,2.852450000000004 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/05,3.013700000000006 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/10/29,2.6806244766025618 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/12/07,16.30910833371333 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/12/07,12.250300000599994 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/24,2.9301281182692294 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/24,3.129485274038461 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/21,3.213912885164833 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/11/21,2.445966805769228 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/01/08,21.867666666666683 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/12/23,12.9821000001675 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2021/12/23,6.063916669419155 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/02/01,22.30574166666668 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/02/26,22.76205 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/03/30,22.451158333333343 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/04/06,13.118766666866655 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/03/22,6.039551499999996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/09,2.7101957163461545 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/08,3.676500763333332 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/08,3.7767598533333313 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/01,3.273639433333329 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/04/30,6.784841672464161 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/04/30,6.604333339130825 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/31,8.863600000640005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/26,14.117819169046683 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/06/10,5.01945961538461 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/25,3.582825001134996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/24,4.113624999999992 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/05/24,5.121049999999993 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/11,4.047429168691667 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/11,3.938854168419164 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/03,10.075653417112504 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/03,10.743850760889169 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/06/26,3.3408500000000068 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/06/25,2.5842190423076907 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/06/25,2.57440206153846 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/07,7.994649993342501 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/05,9.2709750000475 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/07/28,3.0822250000000047 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/10,4.462636277380944 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/10,4.477738552380944 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/24,3.2067695616666656 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/24,3.681371854999993 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/29,8.699901670284142 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/28,2.957432668269229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/08/28,2.9604826682692296 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/30,13.712624999999989 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/29,3.3577250000000074 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/29,3.2028750000000046 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/22,3.2165235769230742 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/21,4.306674999999998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/09/21,4.3434636249999965 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/10/26,4.639768799465831 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/09,2.9698624871794856 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/08,2.437291830769229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/08,2.371395161538458 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/12/10,2.3579714307692283 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/12/10,2.361931897664834 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/12/02,2.613901625000003 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/12/02,3.184051050769229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/24,2.9571749999999986 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2022/11/24,4.393202250000001 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/01/11,21.675758333333352 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/01/11,21.675758333333352 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/02/04,22.25651666666668 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/02/21,9.955125000385 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/04/09,14.834408333333329 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/04/02,13.31084166647667 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/04/01,13.587374999857508 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/04/01,14.094349999857508 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/09,10.165391669504174 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/09,10.299166669704173 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/31,3.0943824346666657 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/31,3.0834468279999983 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/26,3.651736379999994 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/05,10.08995000028498 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/04,5.475575000119996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/04,9.917050000119996 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/28,14.299258338265842 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/27,23.766975002395 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/05/27,24.796058335728336 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/22,3.60137878666666 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/06/22,3.604693179999993 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/06,2.1855476 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/06,2.238731725 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/30,3.476200000000002 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/30,3.8306553548076954 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/23,3.175025000000005 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/22,5.493489399300824 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/07/22,5.491239399038324 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/06,7.058390909999998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/06,7.500762123333328 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/01,7.84322196683417 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/01,10.386935606666666 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/08/31,3.982040151666662 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/08/31,3.765251526666662 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/08/23,3.5050909049999968 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/08/23,2.9764369499999974 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/03,6.872386371666664 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/03,5.1099863650725 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/28,17.82208765660751 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/28,14.44815002740997 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/23,7.578545827470846 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/03,2.3906906650000024 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/02,3.008262592499997 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/10/02,2.266772624999998 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/09/25,2.523332043269229 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/11/03,2.7475734328571417 -Raquette Lake,15468377,-74.63812293096804,43.839814171798864,2023/11/03,2.482587142307689 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/01/05,21.838800000000013 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/01/29,22.26459166666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/01/29,22.26459166666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/23,22.351800000000008 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/22,21.675758333333352 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/22,21.675758333333352 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/23,22.351800000000008 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/22,21.675758333333352 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/02/22,21.675758333333352 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/03,7.224424999710005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/04,21.750616666666684 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/03,7.224424999710005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/04,21.750616666666684 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/28,7.881499996535002 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/06,6.697825000000005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/04/28,7.881499996535002 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/06,6.697825000000005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/06,6.032145835900836 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/06,6.323595835508335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/30,9.151362531299997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/07,11.471825000237487 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/29,4.671575000000004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/29,4.943050000000005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/22,5.722170096990824 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/06,6.032145835900836 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/06,6.323595835508335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/30,9.151362531299997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/07,11.471825000237487 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/29,4.671575000000004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/29,4.943050000000005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/05/22,5.722170096990824 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/08,4.749617270654999 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/08,4.762133937346665 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/22,12.71518333333331 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/22,13.164458333333314 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/08,4.749617270654999 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/08,4.762133937346665 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/22,12.71518333333331 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/06/22,13.164458333333314 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/24,10.468324997785006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/24,9.136325000220006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/01,7.235586249999998 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/01,3.2651385000000004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/24,10.468324997785006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/07/24,9.136325000220006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/01,7.235586249999998 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/01,3.2651385000000004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/03,6.858099997100015 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/25,4.941401841710837 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/25,4.71303713600667 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/11,3.2710011115384567 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/02,9.388833333550837 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/02,10.975133333623331 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/03,6.858099997100015 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/25,4.941401841710837 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/08/25,4.71303713600667 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/11,3.2710011115384567 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/02,9.388833333550837 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/02,10.975133333623331 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/10/05,6.122798483380833 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/26,6.663471228333335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/26,6.584121228333336 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/27,2.9746887710622683 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/10/05,6.122798483380833 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/26,6.663471228333335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/26,6.584121228333336 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/09/27,2.9746887710622683 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/05,2.676252255357141 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/05,2.072715624999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/05,2.676252255357141 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/05,2.072715624999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/29,6.862249998635011 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/29,6.37907499711501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/22,4.348979659263572 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/30,3.969871235576917 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/29,6.862249998635011 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/29,6.37907499711501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/22,4.348979659263572 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2015/11/30,3.969871235576917 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/01/08,21.77565833333335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/01/08,21.675758333333352 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/01/08,21.77565833333335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/01/08,21.675758333333352 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/05,16.02828987740111 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/05,11.392265284772764 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/05,16.02828987740111 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/05,11.392265284772764 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/07,11.216083335165845 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/07,11.810195837698336 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/30,7.002837138333331 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/21,6.34607311416833 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/21,6.312973112105831 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/29,3.815340889999996 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/29,3.09953638 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/07,11.216083335165845 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/07,11.810195837698336 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/30,7.002837138333331 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/21,6.34607311416833 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/21,6.312973112105831 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/29,3.815340889999996 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/04/29,3.09953638 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/23,8.071935076624168 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/23,7.094716322944171 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/31,5.683738636269169 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/31,5.391266294280834 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/24,15.323358333733324 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/23,8.071935076624168 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/23,7.094716322944171 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/31,5.683738636269169 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/31,5.391266294280834 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/05/24,15.323358333733324 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/03,4.514872006666654 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/24,14.27573333601834 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/24,14.947733336018343 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/02,3.497002250000008 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/02,2.670802250000006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/25,4.124322744999995 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/03,4.514872006666654 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/24,14.27573333601834 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/24,14.947733336018343 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/02,3.497002250000008 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/02,2.670802250000006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/06/25,4.124322744999995 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/11,16.250312516242506 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/11,16.40747084957584 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/04,3.6725749999999926 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/26,5.221709133584401 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/26,5.046637157328568 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/03,14.019750000094987 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/03,5.724350750072501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/27,1.9328745 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/11,16.250312516242506 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/11,16.40747084957584 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/04,3.6725749999999926 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/26,5.221709133584401 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/26,5.046637157328568 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/03,14.019750000094987 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/03,5.724350750072501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/07/27,1.9328745 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/05,3.971068001538456 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/27,14.296525013442492 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/27,14.70580834512333 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/04,4.595354589999995 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/04,4.690354589999995 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/28,11.113258333570824 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/05,3.971068001538456 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/27,14.296525013442492 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/27,14.70580834512333 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/04,4.595354589999995 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/04,4.690354589999995 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/08/28,11.113258333570824 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/07,2.8184644133333325 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/28,9.28744318000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/28,7.785155303333338 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/21,3.46459381466666 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/06,2.482894180769229 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/06,2.4351714307692283 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/29,4.869400000554993 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/07,2.8184644133333325 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/28,9.28744318000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/28,7.785155303333338 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/21,3.46459381466666 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/06,2.482894180769229 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/06,2.4351714307692283 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/09/29,4.869400000554993 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/08,4.290169639999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/23,5.100602309380947 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/07,7.681257668269235 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/07,2.93338266826923 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/08,4.290169639999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/10/23,5.100602309380947 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/07,7.681257668269235 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/07,2.93338266826923 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/10,22.47810000000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/23,2.9795772503125035 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/23,2.782477250047501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/10,22.47810000000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/23,2.9795772503125035 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/11/23,2.782477250047501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/01/02,22.539900000000006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/26,24.070899999999988 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/25,21.84966666666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/01/02,22.539900000000006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/26,24.070899999999988 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2016/12/25,21.84966666666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/01/27,10.342966666451671 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/04,22.69252500000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/01/27,10.342966666451671 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/04,22.69252500000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/28,10.000733333118344 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/03/08,10.039199999810013 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/27,21.77565833333335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/28,10.000733333118344 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/03/08,10.039199999810013 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/02/27,21.77565833333335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/03/23,22.177183333333343 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/09,21.611874999952523 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/03/23,22.177183333333343 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/09,21.611874999952523 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/24,12.886100025372512 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/24,12.929525029972512 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/24,12.886100025372512 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/04/24,12.929525029972512 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/11,6.034513240736783 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/11,5.917388240354284 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/03,14.46708333373332 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/03,14.429833333533317 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/11,6.034513240736783 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/11,5.917388240354284 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/03,14.46708333373332 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/03,14.429833333533317 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/27,7.472570829723345 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/27,10.042791671081686 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/05,4.487800000047498 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/05,4.828150000047495 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/28,5.373819230889222 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/27,7.472570829723345 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/27,10.042791671081686 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/05,4.487800000047498 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/05,4.828150000047495 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/06/28,5.373819230889222 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/29,6.281960233959998 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/29,6.434632958624997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/06,2.635827250000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/06,2.4174250000000024 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/30,3.024181274038462 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/29,6.281960233959998 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/29,6.434632958624997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/06,2.635827250000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/06,2.4174250000000024 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/07/30,3.024181274038462 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/30,3.1125174217391645 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/30,3.107469542999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/07,22.04370833328585 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/07,22.078008333285847 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/30,3.1125174217391645 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/08/30,3.107469542999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/07,22.04370833328585 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/07,22.078008333285847 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/10,6.604516657686676 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/01,3.947878866666658 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/01,3.933419766666658 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/24,2.810894701811665 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/02,2.949261754807693 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/23,4.801861409999989 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/23,3.8598113599999926 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/10,6.604516657686676 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/01,3.947878866666658 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/01,3.933419766666658 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/24,2.810894701811665 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/02,2.949261754807693 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/23,4.801861409999989 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/09/23,3.8598113599999926 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/11/11,4.963919747714279 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/25,5.300911429999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/25,5.655241713333329 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/11/11,4.963919747714279 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/25,5.300911429999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/10/25,5.655241713333329 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/12/04,6.151107698269401 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2017/12/04,5.025236560549171 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/01/06,21.867666666666683 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/03/26,21.04199166676169 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/05,6.806183339130823 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/05,7.124841672464158 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/29,15.58826667591417 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/29,15.33515834258084 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/05/30,8.138425003137495 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/07/09,4.787936399999984 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/06/30,19.92435833348582 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/06/30,19.00133333348582 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/07/08,7.031025000359994 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/07/08,10.431850007092486 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/07/01,7.5526 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/06/22,3.408252249999996 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/06/22,3.920265875072495 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/08/10,3.968945569999994 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/08/09,9.235541671266644 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/08/09,6.112775000215006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/09/03,4.30346643692346 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/10/05,2.4167387432692284 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/12/07,11.339700000585 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/12/07,11.218266665791669 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/12/08,21.75304166666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2018/11/22,21.75304166666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/02/09,9.941466666309184 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/02/09,10.832025000585002 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/02/01,21.848400000000016 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/01/25,14.950731254232496 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/03/06,22.34590833333334 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/03/05,22.69252500000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/05/09,5.220137311853576 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/05/08,3.4490490000000005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/05/08,2.893935840000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/04/22,2.0465475749999964 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/04/22,2.074747574999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/06/01,8.930916663089196 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/06/01,9.513374164726695 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/06/09,3.267281829999995 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/06/09,3.312389999999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/03,3.21797725 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/03,3.21855225 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/04,5.101825000072492 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/08/04,7.284543180622501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/08/04,7.927310607074171 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/08/05,2.9806795000000035 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/27,4.498175000215005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/07/27,4.553050000215007 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/05,3.5342696966666587 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/05,3.228869696666661 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/06,2.3407543499999988 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/21,8.21629848333333 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/21,8.44364848333333 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/10/08,3.4968001932692254 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/29,13.761583333333322 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/09/29,13.568083333333323 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/11/09,3.735270375047498 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/12/11,3.1719000000000097 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2019/11/25,8.932311023076922 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/02/05,22.137733333333344 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/02/20,21.75304166666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/02/20,21.791766666666685 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/04/01,3.3672442307692294 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/02,7.590213640072501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/02,7.420045460072499 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/04/25,13.47280004152 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/10,3.405625000000006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/10,3.0279750000000054 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/03,3.994300000309996 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/27,12.943900002750013 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/06/04,5.251125000622498 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/26,2.3502522500475 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/05/26,2.7429931250475024 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/07/05,13.51210834512083 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/07/05,13.816366669134156 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/06/28,11.962395835188342 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/07/06,2.4708086875000017 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/06,5.889960611666667 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/06,5.654601521666665 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/07/30,2.799287138695833 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/07,5.550154579999993 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/31,4.820492423835834 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/22,6.38906590678667 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/22,7.649713636786672 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/09/08,13.118700000199985 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/08/23,5.294099875047493 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/09,5.055379579999992 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/09,4.528152299999993 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/10,2.887650000000005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/09/24,4.222972730724999 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/11/10,8.768036379999996 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/11/10,6.759529559999994 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/25,7.095454165546663 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/10/25,9.376929165714166 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2020/12/29,21.838800000000013 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/02/06,21.919450000000012 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/01/30,21.848400000000016 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/03/02,22.47810000000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/04/03,19.32996667197668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/04/03,18.47826042333168 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/04/04,12.160192828266654 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/05/06,3.2013192307692293 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/06/06,7.739875000189996 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/06/06,8.632725001425001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/06/07,2.838252250047502 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/05/29,6.416297361179164 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/05/29,6.094973884265003 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/06/23,2.6078863500000007 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/02,7.920485002159991 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/10,3.4441772500000014 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/07/25,5.354749999999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/10,3.4448165175366285 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/10,2.875192530641024 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/03,8.231475006977497 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/25,6.834504546352502 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/25,6.548468181425003 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/08/26,3.3125195 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/26,8.841771970523324 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/09/26,9.29484167503916 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/06,5.05700686104761 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/10/28,6.511049999525007 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/10/29,2.725052105769231 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/24,2.573725980769229 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/24,2.540271430769228 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/21,3.922691733269229 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/11/21,2.220458999999997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/12/23,2.756570375047501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2021/12/23,12.038849999475008 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/02/01,22.348225000000006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/02/26,22.663366666666672 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/02/26,10.36655000000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/03/30,22.26459166666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/04/06,11.286885852893324 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/04/06,11.456322104438328 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/03/29,21.67155833333335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/03/29,21.67155833333335 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/03/22,12.320033333190834 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/09,2.1657413250000004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/08,3.5096174216666665 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/08,3.3087674216666665 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/01,4.854194100457494 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/04/30,5.4395750022999945 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/04/30,6.353991669111662 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/31,13.099108749795008 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/31,12.601949999879997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/06/10,2.5958772500000022 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/25,2.654852250000007 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/24,11.83658333358082 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/05/24,3.939800000289996 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/07/03,5.798546599301655 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/07/03,5.15707160124083 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/06/25,5.373300000000006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/06/25,5.292356820000005 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/05,2.5102022500000056 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/10,10.013277646931677 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/10,9.246315146931671 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/24,7.792749992035004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/24,7.205891658101674 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/29,3.4276296149999967 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/28,2.500199839999999 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/08/28,2.4557612149999994 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/10/08,2.7500250000000017 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/30,13.932666666666648 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/29,3.1744250001450043 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/29,3.344475000145004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/22,3.014727250000001 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/21,4.074134099999994 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/09/21,3.990034099999991 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/09,2.618423322664835 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/08,3.3428281182692308 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/08,2.7981326682692287 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/12/10,4.768429499999999 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/12/10,2.628683999999999 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/12/02,2.9606022500000067 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/12/02,3.617915875095006 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/24,15.172617804404153 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2022/11/24,12.5144250002625 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/02/04,22.14189166666668 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/04/10,12.199749999904991 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/04/09,11.85041666657166 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/04/01,12.290308333238324 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/04/01,12.445558333238328 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/09,10.242091669704177 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/09,10.333266669324177 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/11,6.218804555355 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/11,6.193698110628328 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/31,8.1471272700725 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/31,8.3578522700725 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/26,3.790688640072496 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/05,14.002362500409982 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/04,4.599877683982501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/04,6.429142819727502 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/28,17.373941666739174 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/27,21.61045833333334 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/05/27,22.974566668966688 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/22,2.5011445580725007 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/22,2.859533951405833 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/06,4.345600000217493 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/06,7.778252250145004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/06/21,4.365412123333328 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/05,11.27952436057083 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/30,2.723027250047501 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/30,3.644075000119997 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/23,4.796331749999999 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/22,6.127900403964994 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/07/22,5.7888147936941605 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/06,6.7938454599999965 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/06,6.861069706666664 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/01,7.857621966786664 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/08,2.904125000000004 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/01,4.265927300144991 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/31,3.91990213633333 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/31,3.956247591333329 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/23,4.850372739999994 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/08/23,4.920072739999994 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/03,16.73473560666669 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/03,17.82575834253334 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/28,6.792220823213341 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/03,2.6025068000000027 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/02,5.791756116666659 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/10/02,5.646608406666661 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/09/25,2.274431699999999 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/11/03,4.2770635574999964 -Shallow Lake,15468539,-74.73640623511909,43.818003707937045,2023/11/03,3.8051990774999975 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/01/05,3.187300000000004 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/05/05,7.672174996182495 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/05/05,7.672174996182495 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/06/06,9.254850009319991 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/05/29,3.731877250047498 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/06/06,9.254850009319991 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/05/29,3.731877250047498 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/07/08,10.500866665704187 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/07/08,10.500866665704187 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/09,4.180131061666656 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/07/24,4.001152274999992 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/01,3.192688600000001 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/09,4.180131061666656 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/07/24,4.001152274999992 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/01,3.192688600000001 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/25,5.732865926307508 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/08/25,5.732865926307508 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/09/26,3.4790090949999968 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/10/04,12.55882499999999 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/09/26,3.4790090949999968 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/10/04,12.55882499999999 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/11/05,2.734702250000006 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/11/05,2.734702250000006 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/11/29,9.850621092380946 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2015/11/29,9.850621092380946 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/01/24,21.77565833333335 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/01/24,21.77565833333335 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/05,7.446208958144991 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/05,7.446208958144991 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/07,7.316449999392505 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/21,8.73851668758667 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/29,4.423660019999996 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/07,7.316449999392505 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/21,8.73851668758667 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/04/29,4.423660019999996 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/23,3.5548068170291622 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/31,3.610568943333336 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/23,3.5548068170291622 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/05/31,3.610568943333336 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/06/24,3.315374245145829 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/06/24,3.315374245145829 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/11,18.59287083218584 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/03,4.363818794102558 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/11,18.59287083218584 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/03,4.363818794102558 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/27,3.563775024999997 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/09/04,5.3871340904099965 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/08/27,3.563775024999997 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/09/04,5.3871340904099965 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/09/28,15.296625015935 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/10/06,2.707818124999999 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/09/28,15.296625015935 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/10/06,2.707818124999999 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/11/07,2.0879655999999973 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/11/07,2.0879655999999973 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/12/09,22.00009166599167 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/12/09,22.00009166599167 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/12/25,16.730500000000003 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2016/12/25,16.730500000000003 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/02/19,12.79505833319083 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/02/19,12.79505833319083 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/05/10,12.390129170339184 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/04/24,11.374183358633347 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/05/10,12.390129170339184 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/04/24,11.374183358633347 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/06/11,4.811109864945002 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/06/03,2.9521045000475024 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/06/11,4.811109864945002 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/06/03,2.9521045000475024 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/07/05,2.2744713 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/07/05,2.2744713 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/07/29,3.681327274999991 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/08/06,2.7381750000000045 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/07/29,3.681327274999991 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/08/06,2.7381750000000045 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/08/30,3.025357580289997 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/08/30,3.025357580289997 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/10/01,3.106710596666663 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/09/23,3.2736250649999987 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/10/01,3.106710596666663 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/09/23,3.2736250649999987 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/11/10,2.755509925 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/10/25,2.7005490900000013 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/11/10,2.755509925 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/10/25,2.7005490900000013 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/12/04,6.4980374960725165 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2017/11/26,6.931544105769218 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/05/05,3.747275019999996 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/05/29,6.068454550119999 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/06/30,16.149404166666667 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/07/08,3.8149159099999936 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/06/22,4.400587299999992 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/08/09,5.571584089999996 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/12/07,8.094473332763355 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2018/12/23,10.14617499935502 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/02/01,22.68663333333334 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/04/30,7.826058349938329 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/05/08,3.304462344999999 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/06/01,11.428154166391684 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/06/09,3.745385685769222 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/07/03,2.434165147826669 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/08/04,6.376892424903335 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/07/27,3.820154600072493 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/09/05,2.583125604666666 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/09/21,2.645990910145 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/11/08,22.456960417911677 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2019/10/23,6.5004958290058505 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/02/28,10.554416666666684 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/02/20,11.662683333718329 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/05/02,14.577891696566684 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/05/10,2.8121022500000072 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/05/26,6.784625000890003 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/07/05,6.3823250042775 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/08/06,3.827175763333325 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/08/30,3.3974295000000008 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/10/09,5.203827177380945 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/11/10,6.492071996739162 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2020/10/25,14.699525002127512 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/04/03,9.300483340353328 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/04/27,20.58031666663667 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/05/29,13.11677499976999 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/07/24,15.560291666476656 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/09/10,4.533533337801665 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/08/25,5.759358334585838 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/09/26,3.062283333998333 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/11/05,2.924527475000001 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/11/24,4.925610000144992 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/11/21,2.343377250000002 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2021/12/23,21.519043749692496 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/04/06,9.026033339090842 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/04/06,5.412419169999989 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/03/29,4.216730447115382 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/05/08,4.878603040633333 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/04/30,2.703085000000001 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/04/22,3.3919500000000062 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/06/05,8.416875000360005 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/05/31,18.595375000569987 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/05/24,4.156450000892497 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/07/04,4.308749999999988 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/06/22,15.196481666596666 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/07/11,11.338024998779996 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/07/03,3.408709149999998 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/06/25,2.922736065 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/08/07,3.4755931999999934 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/09/10,3.483708326884164 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/08/24,4.081139100072493 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/08/28,2.5355608048076914 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/09/21,3.445034149999994 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/11/05,9.677975010315004 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/11/08,2.308421862499999 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/10/23,11.521416667066651 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/11/22,13.24131334943333 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/12/10,2.328158725000001 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2022/11/24,2.585802250000002 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/01/11,4.626384000000001 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/04/09,2.576161765000001 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/04/01,13.87765000025751 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/05/09,10.92927500139249 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/05/11,3.564330250000004 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/06/05,8.737258332723354 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/05/31,3.10947727029 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/06/04,4.855475000410007 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/05/27,15.143625000000002 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/06/27,13.036966667141671 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/06/22,3.8736840905074974 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/07/06,3.822445450192494 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/07/30,3.2309841099999947 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/07/22,8.492675000000007 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/09/11,5.600525001155001 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/09/06,3.4993288018116617 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/09/01,3.1929272718849977 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/08/31,3.011543199999997 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/08/23,2.9626789499999973 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/10/03,11.716100000525008 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/09/28,13.116610520289166 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/10/02,11.667925000697494 -Trout Lake,15477607,-75.2676354586424,44.36426166275202,2023/11/03,2.668195850000004 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/01/05,17.093231250237512 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/01/28,21.95438333328585 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/01/28,21.95438333328585 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/05,6.350091293460836 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/04,7.587282967509991 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/05,6.350091293460836 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/04,7.587282967509991 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/06,6.1504621302899976 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/05,11.77074999978499 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/29,12.364908333453329 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/06,6.1504621302899976 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/05,11.77074999978499 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/05/29,12.364908333453329 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/22,7.472916667816662 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/06/22,7.472916667816662 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/09,2.6467969716666646 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/31,16.701041696661676 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/24,2.996549102999998 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/01,4.528737301999996 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/23,8.248175006947505 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/09,2.6467969716666646 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/31,16.701041696661676 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/24,2.996549102999998 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/01,4.528737301999996 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/07/23,8.248175006947505 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/01,16.413751251534986 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/09,11.519083333333338 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/24,11.803349999784986 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/01,16.413751251534986 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/09,11.519083333333338 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/08/24,11.803349999784986 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/03,9.327931446176668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/26,10.04063015466666 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/11,4.883181822299996 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/04,14.785524999354983 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/25,21.394799999740016 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/03,9.327931446176668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/26,10.04063015466666 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/11,4.883181822299996 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/04,14.785524999354983 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/09/25,21.394799999740016 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/04,16.81789242896668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/05,2.761925000000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/27,14.112820833523331 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/04,16.81789242896668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/05,2.761925000000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/10/27,14.112820833523331 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/29,18.053254472334466 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2015/11/29,18.053254472334466 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/05,4.9742409200949975 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/03/27,10.335015912347489 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/05,4.9742409200949975 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/03/27,10.335015912347489 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/07,16.34495505113999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/28,13.898508386018351 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/21,11.186335615375826 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/06,16.701966666701665 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/29,4.707350000094992 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/07,16.34495505113999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/28,13.898508386018351 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/21,11.186335615375826 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/06,16.701966666701665 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/04/29,4.707350000094992 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/23,14.21789166666668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/07,2.897256750000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/31,20.2429666799417 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/22,4.66575 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/23,14.21789166666668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/07,2.897256750000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/31,20.2429666799417 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/05/22,4.66575 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/24,18.527208333405845 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/07/02,2.671002250000006 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/23,13.247025000264989 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/24,18.527208333405845 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/07/02,2.671002250000006 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/06/23,13.247025000264989 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/11,17.513366666666673 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/02,11.033500002647507 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/03,12.16284999999999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/11,17.513366666666673 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/02,11.033500002647507 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/03,12.16284999999999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/03,18.411100000000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/27,13.382234093333343 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/04,24.281035000000017 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/26,11.617906063333344 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/03,18.411100000000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/27,13.382234093333343 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/04,24.281035000000017 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/08/26,11.617906063333344 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/10/05,15.356551516714164 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/28,10.966432576666678 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/10/06,11.39778636999999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/27,2.423890700000003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/10/05,15.356551516714164 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/28,10.966432576666678 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/10/06,11.39778636999999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/09/27,2.423890700000003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/11/07,5.488229097435892 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/11/07,5.488229097435892 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/12/09,4.131706750000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/11/23,12.844100000065003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/12/09,4.131706750000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2016/11/23,12.844100000065003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/02/26,11.445149105579995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/02/19,12.845583333143331 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/02/26,11.445149105579995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/02/19,12.845583333143331 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/03/30,6.730499999955004 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/03/30,6.730499999955004 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/04/24,9.368541672594182 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/04/23,4.490390909999997 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/04/24,9.368541672594182 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/04/23,4.490390909999997 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/11,7.88832709180334 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/10,14.728233333405832 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/03,6.050947729999991 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/11,7.88832709180334 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/10,14.728233333405832 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/06/03,6.050947729999991 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/04,6.346645466739167 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/05,5.55552439533333 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/04,6.346645466739167 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/05,5.55552439533333 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/29,3.541747709999995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/08/06,25.20110833333334 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/07/29,3.541747709999995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/08/06,25.20110833333334 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/08/30,8.744752270000012 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/08/30,8.744752270000012 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/08,11.55892503462001 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/01,2.658540161666667 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/22,18.37779166666669 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/30,3.934250000000003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/23,4.737649999999995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/08,11.55892503462001 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/01,2.658540161666667 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/22,18.37779166666669 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/30,3.934250000000003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/09/23,4.737649999999995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/24,13.139235362331071 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/11/10,2.974891972435895 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/25,5.242197749999992 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/24,13.139235362331071 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/11/10,2.974891972435895 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/10/25,5.242197749999992 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/12/11,8.989886946914432 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2017/11/26,3.77459342307692 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/03/01,10.712608333333348 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/04/11,9.33309791469917 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/04/02,11.532637602980008 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/03/26,7.906795844673329 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/03/25,4.275547260769229 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/05/05,6.811097729999992 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/05/29,23.86148333338084 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/07/07,20.355091668966683 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/06/21,19.147250026307518 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/07/08,7.394440017999999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/06/29,9.47830833625833 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/06/22,5.01202594249084 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/08/09,24.91435833333336 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/07/31,9.839525010000012 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/08/24,20.688279166641667 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/08/25,22.058291671266677 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/10/04,23.45649166645165 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/11/04,2.987445349999997 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/12/07,8.599522952731668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/12/06,3.2313750000000043 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2018/12/23,11.109575 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/03/29,9.121116666524156 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/05/07,5.281518749522511 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/05/08,4.059200574999996 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/08,11.910766675866666 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/01,12.870866666866668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/09,3.501163839999998 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/05/31,14.447116669039168 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/07/03,17.128109090142498 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/24,20.35895833333332 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/06/25,2.7041522500000057 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/08/11,19.742654166284154 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/08/04,10.454434090190004 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/07/26,23.73701667112417 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/08/03,13.635866671314174 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/07/27,18.259750000000004 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/09/05,9.304903786666673 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/09/21,16.137820833333333 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/09/29,11.986349999999986 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/11/08,6.295024993000009 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/10/23,6.6303416576866745 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/12/10,7.468049995325011 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2019/11/24,7.941349992620005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/01/02,11.431491667876694 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/03/06,9.463833332858352 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/02/20,21.66638333333335 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/04/07,23.11193940136169 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/03/22,14.292046221266684 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/05/09,6.445274996377512 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/05/02,12.038783349170842 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/04/23,7.165314400000004 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/05/10,10.18130833405332 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/05/26,16.19805834023335 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/07/04,16.108210001392507 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/08/06,8.53620378666667 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/07/28,11.24410833578084 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/08/05,8.305600000435 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/08/22,9.957027270000008 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/09/06,13.298124999999988 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/08/30,3.629250000000007 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/10/09,9.306140911666668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/09/30,7.436541659331673 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/09/22,19.157533333333323 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/11/10,4.718927282490001 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/10/25,9.212439995534996 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/11/09,3.105925000000003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/12/03,5.5317999999975065 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2020/12/11,8.29904621757165 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/02/06,21.750616666666684 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/04/03,13.296100032200007 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/04/02,3.7888620883333295 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/04/26,5.311178991836667 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/04/27,4.60523846153846 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/06/05,5.690734090384995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/06/29,22.28480833333335 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/08/09,15.466899999169987 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/07/31,21.106635000000026 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/07/24,12.69946667126666 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/08/08,8.97597500058 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/07/23,3.535850000000003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/08/25,19.884175004147504 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/08/24,3.60321439333333 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/09/26,5.463268180000001 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/09/25,9.59934166810165 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/11/05,4.706124298717941 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/10/27,12.999458333333328 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/11/28,14.23650833348582 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/11/24,2.525015500000003 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/11/21,3.688400000312496 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2021/12/23,7.222724999834997 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/02/09,21.66638333333335 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/01/24,21.750616666666684 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/01/23,22.18061666666668 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/02/24,10.881416667051669 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/06,11.987741685161655 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/06,2.8019789250000007 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/05,4.121068928333329 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/03/29,4.552169042307691 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/08,6.048805308333326 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/07,6.104442045257501 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/30,9.08022636804749 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/29,4.200029553017499 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/04/22,2.85503857 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/05,21.1514266666667 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/31,22.30155000039001 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/08,6.128216671931659 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/31,11.62777083338083 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/05/24,5.387025000744999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/09,25.668979166666688 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/04,11.20141742333334 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/22,15.470987498757486 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/11,25.31597500920004 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/10,15.403575002447502 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/03,2.6299452100000043 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/02,17.560600013800023 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/25,5.297483336666666 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/06/24,4.667543049999999 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/08/07,15.29187500934252 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/27,17.78310833333335 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/07/26,4.489624999999997 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/09/10,7.680790523333338 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/08/24,8.343762876714173 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/08/28,4.743528816666665 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/02,6.883206066666666 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/06,9.186825609739165 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/09/29,4.849779734615379 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/09/21,7.0987977300725005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/05,4.910589777362496 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/08,5.649496360333327 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/07,3.9079243066666662 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/31,13.240275001599992 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/30,3.0547429499999987 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/23,6.196937499907497 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/10/22,6.017302284999995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/22,9.474929471988322 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/12/10,5.654333495333328 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/12/01,2.784750000000005 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2022/11/24,2.6785250000000054 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/02/11,11.539141666451666 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/04/09,3.507033299999997 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/04/08,2.5108131499999997 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/04/01,4.193304549999995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/09,21.84447714299964 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/04/22,8.29021249682751 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/11,7.5227166736141635 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/10,17.74583333505833 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/31,3.962434090144995 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/06/04,4.242771213333335 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/27,16.427175 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/05/26,3.308154549999996 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/06/27,14.99831667608416 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/06/22,8.748252270917506 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/06,2.44569878076923 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/05,6.907408333860843 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/10,9.285129167004156 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/24,24.81073500014502 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/06,4.250218338666663 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/30,8.308993180000009 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/07/22,3.835374999999992 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/09/11,14.887316260369987 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/09/06,6.663029170026673 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/09/01,2.2709507759183327 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/31,3.0509431899999977 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/23,10.301759100000016 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/08/22,12.440875756666662 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/10/03,11.285992917604158 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/09/28,8.613097109303329 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/10/02,4.041604423333326 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/10/01,3.1212786399999963 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/11/03,7.782189264666658 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/11/02,3.2815250000950056 -Hickory Lake,15483147,-75.51608732435778,44.46725773126506,2023/11/26,4.627829169861661 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/01/05,18.810995000380004 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/11,3.557750000000006 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/02,11.90679167232166 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/11,3.557750000000006 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/02,11.90679167232166 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/05/04,4.5955291898933295 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/27,3.346225000000006 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/05/04,4.5955291898933295 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/04/27,3.346225000000006 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/06,5.932225000265012 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/05,13.705874999784978 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/06,5.932225000265012 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/05,13.705874999784978 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/08,12.307825006324991 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/22,4.617123508333328 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/07,2.686225000000005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/08,12.307825006324991 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/06/22,4.617123508333328 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/07,2.686225000000005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/09,9.390578030072504 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/31,15.962775013900009 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/24,6.712992423550835 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/01,5.286499999999993 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/09,9.390578030072504 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/31,15.962775013900009 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/07/24,6.712992423550835 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/01,5.286499999999993 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/01,15.017050001315026 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/25,10.333952085303345 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/09,14.617283335105837 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/01,15.017050001315026 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/08/25,10.333952085303345 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/09,14.617283335105837 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/03,7.983074998445013 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/26,3.810282424739163 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/11,4.610329169314161 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/04,3.1921433 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/03,7.983074998445013 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/09/26,3.810282424739163 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/11,4.610329169314161 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/10/04,3.1921433 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/11/04,5.735537120072502 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/11/04,5.735537120072502 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/11/29,10.996950316491104 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/12/07,3.644000000000008 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/11/29,10.996950316491104 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2015/12/07,3.644000000000008 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/01/07,7.5417749986825156 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/01/07,7.5417749986825156 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/01/24,21.88613333333335 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/01/24,21.88613333333335 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/05,17.00954170379918 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/03/27,16.39410834038084 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/05,17.00954170379918 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/03/27,16.39410834038084 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/07,6.599634828103584 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/28,8.317725004385013 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/21,8.161183334993341 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/29,7.824941692086663 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/07,6.599634828103584 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/28,8.317725004385013 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/21,8.161183334993341 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/04/29,7.824941692086663 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/23,6.866432576739173 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/07,4.71405000029 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/31,3.4053068199999985 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/22,15.96105001840003 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/23,6.866432576739173 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/07,4.71405000029 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/31,3.4053068199999985 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/05/22,15.96105001840003 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/24,6.079450000890009 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/09,4.407961000533331 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/02,15.613683333613334 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/23,2.924832880769229 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/24,6.079450000890009 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/09,4.407961000533331 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/02,15.613683333613334 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/06/23,2.924832880769229 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/11,8.975368180000011 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/02,3.4758750026574994 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/26,4.650708333475833 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/03,7.388100000144999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/11,8.975368180000011 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/02,3.4758750026574994 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/07/26,4.650708333475833 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/03,7.388100000144999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/03,18.749321666761663 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/27,9.245140831623337 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/11,2.2876404500000005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/04,12.02130833333334 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/26,24.31557501197497 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/03,18.749321666761663 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/27,9.245140831623337 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/11,2.2876404500000005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/04,12.02130833333334 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/08/26,24.31557501197497 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/10/05,7.036937503812503 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/28,17.803233344833355 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/10/06,18.09123408999996 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/27,2.654417880000001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/10/05,7.036937503812503 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/28,17.803233344833355 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/10/06,18.09123408999996 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/09/27,2.654417880000001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/07,4.027632609615382 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/07,4.027632609615382 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/12/09,3.318913461538461 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/30,5.263352249999998 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/23,2.549606750000001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/12/09,3.318913461538461 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/30,5.263352249999998 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/11/23,2.549606750000001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/12/25,4.410974999999999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2016/12/25,4.410974999999999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/10,19.268712502162508 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/03,10.422558333118342 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/10,19.268712502162508 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/03,10.422558333118342 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/26,9.077600005382491 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/02/26,9.077600005382491 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/08,3.89878125695751 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/30,14.219908441498328 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/23,14.843522919314172 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/22,16.10169166661916 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/08,3.89878125695751 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/30,14.219908441498328 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/23,14.843522919314172 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/03/22,16.10169166661916 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/24,10.182533340065849 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/23,10.286850052900002 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/24,10.182533340065849 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/04/23,10.286850052900002 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/11,6.038180687184169 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/10,14.949283333405829 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/03,3.691511374999999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/11,6.038180687184169 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/10,14.949283333405829 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/06/03,3.691511374999999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/04,3.5267181899999933 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/05,3.089397247664836 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/04,3.5267181899999933 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/05,3.089397247664836 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/29,4.153445454999988 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/06,3.377975000000005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/28,15.857908333405824 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/29,4.153445454999988 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/06,3.377975000000005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/07/28,15.857908333405824 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/30,3.5490990885799967 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/29,7.534051513333338 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/30,3.5490990885799967 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/08/29,7.534051513333338 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/08,4.299684855775831 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/01,9.10030970473916 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/22,3.032060606811664 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/30,3.047550000000008 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/23,4.121999999999995 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/08,4.299684855775831 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/01,9.10030970473916 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/22,3.032060606811664 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/30,3.047550000000008 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/09/23,4.121999999999995 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/24,7.909827275119999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/11/10,3.786019427435895 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/25,3.154690513076923 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/24,7.909827275119999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/11/10,3.786019427435895 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/10/25,3.154690513076923 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/12/11,9.344418196891931 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2017/12/03,5.478937502572491 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/01/29,7.712349998975001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/03/01,10.63835752780499 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/04/11,3.638608333500842 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/04/02,9.045158332953353 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/05/05,7.212935457999986 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/05/29,5.882081820797505 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/07/07,14.462600032200005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/06/30,11.562700023455005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/06/21,4.397132177730949 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/07/08,4.852638636786669 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/06/29,5.592874650804164 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/06/22,3.4728057307692244 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/08/09,11.522046590047502 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/07/31,2.376075 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/08/24,8.03900834089084 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/09/01,5.02339999999999 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/08/25,2.4900546299999995 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/11/04,8.583591673014151 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/12/07,7.638379033922769 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/11/21,5.625874999340004 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2018/12/23,12.566424999915006 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/03/29,7.911483332668347 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/04/30,6.794603574781073 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/05/08,3.843372730769228 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/06/08,5.072695733672731 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/06/01,12.0180000002 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/06/09,5.989475000764993 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/05/31,15.416483333428324 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/10,21.77921666666665 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/03,5.060841669078334 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/06/24,10.705000001517506 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/02,2.699275000000004 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/08/11,22.67461666676168 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/08/04,10.17256742366584 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/26,11.156075000547494 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/08/03,9.65054166676167 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/07/27,14.35658194458693 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/09/05,11.231049992810002 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/09/04,3.759425000072498 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/09/21,14.799926666761673 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/11/08,8.201724030287766 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2019/10/30,6.224149999540007 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/03/06,14.0280749999525 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/04/07,19.28100834023336 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/03/22,15.792040912300015 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/05/02,5.155935830240837 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/04/23,7.145227281666661 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/05/10,3.6159562246153816 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/06/11,4.239261360577494 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/05/26,3.587919230769223 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/07/04,4.527575000192507 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/08/06,8.954895835995835 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/07/28,14.62414167816668 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/08/05,2.8509045000000013 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/07/29,5.38316679730768 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/08/22,11.447901510047496 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/08/30,2.590320375000001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/10/09,15.52756819679193 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/09/23,12.474868381533328 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/10/08,14.616399999999976 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/10/01,7.010213293076925 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/09/22,21.07371666666667 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/11/10,5.478290920427504 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/11/09,12.60729469333331 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/12/03,6.42124999690001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2020/12/11,4.375410614423331 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/02/21,22.337341666666678 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/04/10,16.52806670576667 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/04/03,13.52131668480417 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/03/25,7.842290462753337 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/04/02,6.389983354153328 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/04/26,11.872350006375012 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/06/06,9.689431668231675 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/06/05,6.0785382518841695 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/05/29,5.612425002372503 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/06/29,11.900949997267498 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/08/09,13.592949999504988 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/07/31,10.635073860000007 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/07/24,17.038470836005832 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/08/08,7.023000000217508 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/07/23,2.807375000000004 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/09/10,12.430853030072493 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/08/25,2.4806750005275 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/09/09,12.384451513333309 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/08/24,5.73292121333333 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/09/26,18.437365155633323 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/10/11,20.17392166714165 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/09/25,15.704018179999968 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/04,9.329683642555004 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/05,4.115814980769224 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/10/27,4.659470844451665 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/29,5.328390799047612 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/12/07,20.293116665441683 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/24,3.153309174999998 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/11/21,3.5704257774358954 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2021/12/22,5.630849995870007 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/01/07,12.393325000000004 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/01/23,22.25651666666668 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/02/24,7.466375001585005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/03/05,22.169733333333344 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/06,18.23298339571834 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/06,8.221290905072493 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/05,5.000253799999992 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/08,6.878319706739159 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/07,4.481263644429166 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/30,10.203862727999985 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/29,7.472108335563328 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/04/22,3.260644230769231 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/05,7.500563640192501 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/08,3.556550000000008 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/31,8.748067053805007 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/24,11.92230833338082 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/05/23,14.583874999999988 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/09,4.984046818144993 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/04,3.509189393333329 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/22,22.50616249923501 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/11,13.929975000237496 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/10,6.596879666198211 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/03,2.6414022500000005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/02,7.232783335268318 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/25,3.915515949999995 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/06/24,6.973366741999992 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/08/07,9.907630300000005 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/26,9.978499999617505 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/07/26,4.749975000507493 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/09/10,11.33622944463444 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/08/29,18.35415833813335 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/08/24,7.42924507671417 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/08/28,9.290092704102564 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/10/02,3.496600783333329 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/10/06,11.016710606714176 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/09/29,14.63349166706665 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/09/21,5.597723651999998 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/05,8.503902499699997 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/08,2.606467255 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/07,4.975861528739164 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/10/30,4.845543649435895 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/10/22,12.017035614999996 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/22,11.481942922374168 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/12/10,3.9984184407692287 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/12/01,2.537102250000004 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2022/11/24,6.637511023076916 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/01/11,4.259447754807693 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/01/10,12.32948333453335 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/04/09,3.4039377999999965 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/04/08,6.158485838666662 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/04/01,16.85523409019 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/09,9.757429167969176 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/10,18.49679227730001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/02,4.1862916786958335 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/31,4.226968180362493 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/06/04,17.39895000920003 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/06/03,8.106167046342504 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/27,18.714766671386663 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/05/26,15.07136000805001 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/06/22,17.218799999784995 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/06,2.9955216307692285 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/05,15.266875011737502 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/24,20.990408333333317 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/08/06,4.655402081538456 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/30,10.900395450000008 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/07/22,3.941715909999992 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/09/11,7.654560606761672 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/09/06,24.44116666666665 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/08/31,4.029361369999998 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/08/23,10.340034090000003 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/08/22,16.97600000004751 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/10/03,9.063682500594997 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/09/28,6.216999998420006 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/10/02,6.274625003380834 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/10/01,15.36087424333331 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/11/03,3.083545929999997 -Butterfield Lake,15483247,-75.77513226277546,44.31659915266023,2023/11/26,6.806515910452498 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/01/05,12.997404167769185 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2014/12/27,22.761225000000003 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/02/06,22.689058333333342 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/01/28,21.85934999973752 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/02/06,22.689058333333342 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/01/28,21.85934999973752 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/03/02,22.674233333333337 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/03/01,21.750616666666684 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/03/02,22.674233333333337 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/03/01,21.750616666666684 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/04/02,12.717991672369156 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/04/02,12.717991672369156 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/05,8.370771346024407 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/04,5.968964027919998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/05,8.370771346024407 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/04,5.968964027919998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/06/06,13.130725000047514 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/29,14.186200000190004 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/06/06,13.130725000047514 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/05/29,14.186200000190004 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/08,14.055216677096668 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/06/22,14.420450000237498 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/07,7.670800000435004 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/08,14.055216677096668 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/06/22,14.420450000237498 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/07,7.670800000435004 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/09,19.138216666966656 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/31,17.676383333333312 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/24,20.749176666666656 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/01,14.10908125009498 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/23,2.7640250000475017 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/09,19.138216666966656 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/31,17.676383333333312 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/24,20.749176666666656 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/01,14.10908125009498 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/07/23,2.7640250000475017 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/25,10.734037083675831 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/09,21.01232500017 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/08/25,10.734037083675831 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/09,21.01232500017 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/26,21.330391666529145 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/10/11,12.854975000295 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/10/04,5.9987035214598805 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/25,13.151758333333326 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/26,21.330391666529145 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/10/11,12.854975000295 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/10/04,5.9987035214598805 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/09/25,13.151758333333326 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/04,20.41683335417584 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/05,2.622075000000007 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/04,20.41683335417584 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/05,2.622075000000007 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/29,11.04320397055896 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/12/07,3.0081500000000063 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/11/29,11.04320397055896 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2015/12/07,3.0081500000000063 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/05,19.298500018495005 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/03/27,15.054762501085 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/04,3.5122750000000047 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/05,19.298500018495005 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/03/27,15.054762501085 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/04,3.5122750000000047 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/07,10.672216669376668 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/28,18.79065837243335 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/21,13.999412501422505 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/29,3.8482886399999967 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/07,10.672216669376668 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/28,18.79065837243335 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/21,13.999412501422505 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/04/29,3.8482886399999967 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/23,17.414058333165848 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/07,14.971458333413322 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/31,5.153447729999997 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/22,18.787925001150004 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/23,17.414058333165848 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/07,14.971458333413322 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/31,5.153447729999997 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/05/22,18.787925001150004 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/24,16.187924999999996 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/07/02,9.279600004214998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/23,13.74090908999998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/24,16.187924999999996 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/07/02,9.279600004214998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/06/23,13.74090908999998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/11,11.899285000047492 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/02,7.640725008715 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/07/26,10.37071666654667 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/11,11.899285000047492 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/02,7.640725008715 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/07/26,10.37071666654667 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/03,15.823801666714155 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/27,13.417710416714163 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/11,3.0694356900000006 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/04,17.15485374999999 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/26,23.681003337933344 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/03,15.823801666714155 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/27,13.417710416714163 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/11,3.0694356900000006 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/04,17.15485374999999 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/08/26,23.681003337933344 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/10/05,17.082016666664185 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/28,20.93785000000001 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/10/06,14.718199999999976 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/10/05,17.082016666664185 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/09/28,20.93785000000001 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/10/06,14.718199999999976 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/11/07,5.140351971102562 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/11/07,5.140351971102562 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/12/09,5.415925274999993 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/11/23,2.5736000000000026 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/12/09,5.415925274999993 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/11/23,2.5736000000000026 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/01/02,11.85984999981 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/01/01,21.95438333328585 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/12/25,20.81540625020001 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/01/02,11.85984999981 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/01/01,21.95438333328585 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2016/12/25,20.81540625020001 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/03,9.814750000000014 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/03,9.814750000000014 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/26,8.036081260132491 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/27,8.240320833520844 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/26,8.036081260132491 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/02/27,8.240320833520844 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/08,3.6579944637810735 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/03/30,9.47003333583333 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/08,3.6579944637810735 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/03/30,9.47003333583333 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/24,8.004199999077507 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/23,7.30200908999999 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/24,8.004199999077507 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/04/23,7.30200908999999 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/11,9.27632709261334 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/03,5.6680787916666615 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/11,9.27632709261334 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/03,5.6680787916666615 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/04,12.064775009860004 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/05,18.705166674184145 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/26,17.855549999540013 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/04,12.064775009860004 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/05,18.705166674184145 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/06/26,17.855549999540013 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/29,30.336133333333382 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/06,2.772302250047502 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/28,17.66310833302333 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/29,30.336133333333382 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/06,2.772302250047502 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/07/28,17.66310833302333 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/30,19.23226 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/29,11.799699999999998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/30,19.23226 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/08/29,11.799699999999998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/01,13.878850000452491 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/22,8.393298670175 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/30,6.195384099999991 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/23,16.926599999999976 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/01,13.878850000452491 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/22,8.393298670175 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/30,6.195384099999991 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/09/23,16.926599999999976 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/24,12.744976336724172 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/11/10,13.06330833353332 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/25,4.253791985576925 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/24,12.744976336724172 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/11/10,13.06330833353332 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/10/25,4.253791985576925 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/12/11,10.754110995221096 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2017/12/03,3.0600000000000067 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/03/01,8.519808340835825 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/04/11,14.833489584323363 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/05/05,12.211797734599996 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/05/29,6.331076515385006 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/07/07,18.233200002300013 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/06/30,13.372604182579158 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/06/21,29.587237500270003 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/07/08,6.560100000095003 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/06/29,7.578741068533342 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/06/22,17.99511742563331 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/08/09,14.742941666714165 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/08/24,8.063400025702501 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/09/01,8.694250000072499 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/08/25,16.71479166666666 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/11/04,4.796266606666662 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2018/12/23,14.433800000457516 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/01/31,22.76205 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/03/29,6.098524996530013 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/04/30,4.891279974290233 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/05/08,4.022576819999998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/06/08,9.647078041150843 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/06/01,11.259833333733338 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/06/09,7.916219547999994 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/05/31,7.006940910602504 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/10,12.907039999142496 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/03,5.355984090552502 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/06/24,17.495429166284154 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/02,4.873249999999993 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/08/11,10.449614173821663 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/08/04,17.997091666714155 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/26,20.78193333338084 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/08/03,18.11755 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/07/27,22.608133333333328 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/09/05,17.45295833333332 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/09/21,11.427156253284991 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/10/06,13.340649999784976 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/11/08,14.02341073012333 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/10/30,6.857074999785008 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/10/23,9.3654062552775 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2019/11/24,13.04043335408083 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/01/02,8.576449998902524 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/03/06,10.076408332858351 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/04/07,20.27041252975752 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/03/22,23.68231531007278 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/05/02,9.587975003670012 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/04/23,18.77866742896669 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/06/11,6.46772121340583 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/05/26,6.841483333475841 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/06/26,11.902695829148332 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/07/04,14.914458338005836 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/08/06,12.341656282532504 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/07/28,11.805133333760834 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/08/05,4.274163619999997 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/08/22,15.237758332498352 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/08/30,4.407858574615378 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/10/09,9.227531255092494 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/09/23,17.61961666528918 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/10/01,6.785427384615375 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/09/22,18.44861666666668 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/11/10,10.19524500259 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/11/09,16.551399999755002 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2020/12/03,6.80407499344501 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/02/21,22.34590833333334 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/10,15.752558333315823 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/03,12.558681260467496 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/03/25,10.319429167626677 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/02,18.05142503684751 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/26,16.343300002300012 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/04/27,10.969943749259995 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/06/06,7.960175000660006 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/06/05,5.0538772749049965 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/05/29,13.25594999935499 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/06/29,14.828741668681657 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/06/21,17.418750000585003 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/08/09,16.495051670926674 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/07/31,11.843756254287507 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/07/24,18.232824998822508 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/08/08,9.023050000047496 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/07/23,15.223595833070863 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/08/25,10.20851668830916 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/08/24,12.933566666761664 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/09/26,14.563175015837516 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/10/11,18.05289166709415 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/09/25,15.875531250522483 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/11/04,11.468994891767496 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/10/27,10.357758335205832 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/11/29,8.270870854170825 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/12/07,12.28779999999998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/11/24,10.510426506739158 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2021/11/21,3.2580214566666648 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/01/23,22.304175000000008 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/02/24,7.042850001785005 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/03/05,22.18061666666668 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/06,12.61949584549084 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/03/28,10.41331666666668 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/06,9.262106056666656 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/05,5.174878083333329 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/08,8.169950004999993 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/07,6.740161387263328 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/30,7.082535457999987 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/29,6.5918587640058375 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/04/22,3.3143750000000063 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/05,25.082341668966706 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/31,10.102649999805005 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/08,7.895190906577507 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/31,11.454466666809164 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/24,8.223410607294165 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/05/23,21.381749999540013 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/09,20.12222500009497 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/04,17.110183344703348 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/22,18.59257083219334 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/11,17.403185606856653 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/10,15.205775007522504 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/03,15.887633333428322 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/02,13.618866666714151 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/25,18.935583333433318 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/06/24,14.912091669014142 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/08/07,14.464559999737505 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/07/26,21.90473333333335 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/08/11,7.796175000290001 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/09/10,9.01850208395332 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/08/24,7.853425038237506 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/08/28,12.975756250047482 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/02,17.982433333475825 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/06,16.93255833309582 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/09/29,3.9224000002899952 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/09/21,18.339150000000007 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/05,4.326851674884994 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/31,5.5334500002350095 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/08,12.43897951999998 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/07,13.463601526666652 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/30,17.314754549999964 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/23,15.339000000189996 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/10/22,20.682133336393303 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/22,11.31045125182 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/12/10,3.0698386399999977 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2022/11/24,3.57188911538462 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/02/11,22.304175000000008 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/04/09,19.39962196910916 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/04/08,9.63082505 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/04/01,16.665734090452496 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/09,9.801741668399174 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/11,2.9855522500000005 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/10,14.879390833190834 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/02,12.991100000399989 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/31,10.463785603380838 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/06/04,13.90936666671418 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/06/03,4.80812083241333 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/27,14.65983333340583 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/05/26,6.750410607448337 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/07/06,6.685175000715009 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/07/05,22.956158333405845 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/10,8.612324993134997 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/06,7.0732499999999945 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/07/30,8.469812119999999 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/07/22,3.715209099999995 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/09/11,10.13450958465082 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/09/06,16.21969374962249 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/31,16.69818124976249 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/23,15.197522916666651 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/08/22,14.52219333333333 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/10/03,7.841628809798325 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/09/28,5.814699995255015 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/10/02,18.213016666381677 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/10/01,17.683633333333322 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/11/03,13.811058347233343 -Muskellunge Lake,15483329,-75.69388962091593,44.29763352140588,2023/11/26,20.20668333367084 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/01/05,15.380375000584984 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/01/28,21.64230833307085 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/01/28,21.64230833307085 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/03/02,22.44997500000001 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/03/02,22.44997500000001 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/05/05,10.980341668994184 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/05/04,12.607258345983348 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/04/27,6.790725000617494 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/05/05,10.980341668994184 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/05/04,12.607258345983348 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/04/27,6.790725000617494 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/06,2.8961515249283307 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/05,3.076975000095004 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/06,2.8961515249283307 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/05,3.076975000095004 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/08,17.039041666261664 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/22,3.9568757534058254 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/08,17.039041666261664 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/06/22,3.9568757534058254 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/09,2.668499999999999 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/31,3.552110607439163 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/24,3.794031641610956 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/01,4.4663507410256384 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/23,3.2210022500475004 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/09,2.668499999999999 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/31,3.552110607439163 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/24,3.794031641610956 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/01,4.4663507410256384 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/07/23,3.2210022500475004 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/01,10.772664586578353 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/25,6.648135645723338 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/09,6.644704925619997 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/01,10.772664586578353 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/08/25,6.648135645723338 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/09,6.644704925619997 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/03,7.105270827343346 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/26,3.3167528746666624 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/11,3.650274999999998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/04,4.300450000072496 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/03,7.105270827343346 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/09/26,3.3167528746666624 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/11,3.650274999999998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/10/04,4.300450000072496 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/11/04,6.072082573478327 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/11/04,6.072082573478327 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/11/29,7.036690042475951 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2015/11/29,7.036690042475951 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/01/07,6.67322499667001 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/01/08,2.8395250000000054 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/01/07,6.67322499667001 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/01/08,2.8395250000000054 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/05,6.018388258966675 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/03/27,15.486169444639442 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/05,6.018388258966675 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/03/27,15.486169444639442 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/07,4.560308335895832 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/28,14.475316687366671 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/21,6.841644165281671 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/29,6.543225759213321 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/07,4.560308335895832 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/28,14.475316687366671 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/21,6.841644165281671 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/04/29,6.543225759213321 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/23,3.5255090906524966 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/07,14.50041001272252 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/31,4.196131820797493 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/22,16.468558343683352 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/23,3.5255090906524966 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/07,14.50041001272252 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/31,4.196131820797493 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/05/22,16.468558343683352 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/07/01,13.870150000047513 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/24,7.713109091400002 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/23,3.8132443807692273 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/07/01,13.870150000047513 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/24,7.713109091400002 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/06/23,3.8132443807692273 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/11,4.090872577999993 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/02,4.909763640554998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/07/26,3.8906000018116593 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/10,2.5376250000000016 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/03,13.36063333331831 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/11,4.090872577999993 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/02,4.909763640554998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/07/26,3.8906000018116593 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/10,2.5376250000000016 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/03,13.36063333331831 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/03,4.069459843550828 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/27,3.0425931811599964 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/11,3.8598468047435857 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/04,3.962975000072496 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/26,2.6969329207692287 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/03,4.069459843550828 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/27,3.0425931811599964 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/11,3.8598468047435857 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/04,3.962975000072496 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/08/26,2.6969329207692287 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/10/05,2.486508941333333 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/28,2.2252697028991646 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/10/06,3.8501776153846152 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/27,4.586075758930835 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/10/05,2.486508941333333 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/28,2.2252697028991646 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/10/06,3.8501776153846152 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/09/27,4.586075758930835 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/07,2.874885425 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/07,2.874885425 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/12/09,4.334932978076916 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/30,6.204804171756657 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/23,2.687525000000006 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/12/09,4.334932978076916 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/30,6.204804171756657 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/11/23,2.687525000000006 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/01/02,7.455137084183321 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/12/25,6.078204161153841 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/01/02,7.455137084183321 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2016/12/25,6.078204161153841 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/10,14.190983333095843 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/03,9.83048333333335 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/10,14.190983333095843 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/03,9.83048333333335 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/26,8.697058339860826 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/19,10.644433333048337 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/27,19.743166667116665 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/26,8.697058339860826 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/19,10.644433333048337 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/02/27,19.743166667116665 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/08,4.12590304855083 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/30,9.295149999715 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/23,17.3194062519625 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/22,12.679312500190008 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/08,4.12590304855083 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/30,9.295149999715 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/23,17.3194062519625 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/03/22,12.679312500190008 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/24,7.515091666736668 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/23,4.625794549999994 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/24,7.515091666736668 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/04/23,4.625794549999994 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/11,6.662870834673332 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/03,4.070990019999996 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/11,6.662870834673332 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/03,4.070990019999996 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/04,2.705234089999997 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/05,4.415432786217945 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/26,11.025225000189982 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/04,2.705234089999997 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/05,4.415432786217945 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/06/26,11.025225000189982 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/29,4.263068185072489 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/06,5.277428330769221 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/07/29,4.263068185072489 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/06,5.277428330769221 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/30,3.413489998362495 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/29,3.112775230769228 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/30,3.413489998362495 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/08/29,3.112775230769228 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/10/01,3.3336795599999967 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/22,4.609348375859278 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/30,4.457138499999998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/23,2.6298784307692302 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/10/01,3.3336795599999967 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/22,4.609348375859278 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/30,4.457138499999998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/09/23,2.6298784307692302 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/10/24,3.813987267145 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/11/10,4.158833346153841 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/10/24,3.813987267145 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/11/10,4.158833346153841 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/12/11,8.480392250551098 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/12/03,3.480772729999996 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2017/12/27,9.95733958474085 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/01/29,21.151200000522508 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/03/01,6.552568775145005 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/04/11,10.96854586292084 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/05/05,5.5128613649999885 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/05/29,4.230512873623325 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/07/07,10.069533340305831 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/06/30,4.59072500209 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/06/21,6.969203332760839 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/07/08,5.047711387179478 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/06/29,3.7213575783333273 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/06/22,4.19860091826923 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/08/09,3.5459590999999966 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/08/24,7.148899999497493 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/09/01,14.98832499976998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/08/25,5.645438373076916 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/11/04,5.534404169351661 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/12/07,9.669226697556663 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2018/12/23,9.20516042045666 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/01/31,22.539900000000006 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/03/29,16.089702086945863 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/04/30,5.673174999955005 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/05/08,3.568517440769229 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/06/08,16.71514168736668 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/06/01,13.47030833351834 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/06/09,7.052675759155823 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/05/31,14.143708333405831 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/10,13.979775000167496 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/03,2.415183327971667 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/02,3.5498500000000064 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/08/11,2.6523060688416664 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/08/04,3.7908877282174944 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/26,15.361050002420011 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/08/03,3.659625000409994 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/07/27,4.614220450119996 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/09/05,3.2565121333333296 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/09/04,3.200697804999998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/09/21,4.617134089999997 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/10/06,11.432749999984985 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/11/08,8.701987672030265 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/10/30,11.507414184524183 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2019/10/23,5.878788613221119 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/03/06,8.775883333380845 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/04/07,12.896741689451677 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/03/22,15.846540912300018 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/04/08,14.751325004744976 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/05/02,4.79406916422167 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/04/23,7.522462876666671 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/05/10,4.7404249969230685 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/06/11,3.3922545000000053 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/05/26,4.037161370144999 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/07/04,7.957500002372503 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/08/06,2.508774999999998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/07/28,15.083391687366678 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/08/05,2.943450000000004 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/07/29,4.564881523076913 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/08/22,2.876565909999999 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/09/06,15.27177499999998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/08/30,3.2192545000000017 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/10/09,8.366627919047621 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/09/23,9.947725000522508 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/10/08,18.959741666421674 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/10/01,4.448625000427504 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/09/22,5.868065910965004 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/11/10,6.516697740190002 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/11/09,3.952762341666666 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2020/12/11,6.660951138519998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/02/21,22.26459166666668 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/04/10,18.147814619870832 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/04/03,9.669250003695003 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/03/25,13.57085467593584 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/04/02,5.085361399999991 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/04/26,10.09030833345333 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/06/06,15.16375583276335 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/06/05,7.820848888168335 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/05/29,4.239374999999995 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/06/29,13.007412500094985 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/06/30,8.916850000217496 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/08/09,16.54545416683413 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/07/31,4.454152270144991 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/07/24,11.066849998730008 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/08/08,6.595325000290009 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/09/10,2.934104549999996 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/08/25,2.962759091639999 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/09/09,3.95714621333333 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/08/24,6.358150000000002 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/09/26,3.383218789739161 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/10/11,3.245646540769228 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/09/25,3.3615149115384586 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/04,9.475388194634426 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/05,3.4330795000000056 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/10/27,8.17454167265415 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/29,3.807440151884166 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/12/07,23.165091666559164 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/24,3.069774218910254 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2021/11/21,3.954298322692308 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/01/07,11.615083333333338 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/01/08,4.283894230769231 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/01/07,11.591800000000005 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/06,4.661428792490001 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/06,5.554036379999991 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/05,4.161150000192494 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/03/29,4.18984775480769 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/08,3.5761113999999976 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/07,12.371341681616675 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/30,5.51826590999999 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/29,11.905225036800005 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/04/22,3.4182250000000085 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/05,4.4339083382366615 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/31,14.606125000094998 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/08,13.766141666856662 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/31,13.157837500357491 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/05/24,15.702849999725007 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/09,8.722062876666662 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/04,3.4562909123674954 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/22,14.48260833599083 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/11,4.099165909999991 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/10,7.164100015597491 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/03,3.8481805326923055 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/02,3.618239403333328 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/25,4.963084556410248 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/06/24,4.483449729487175 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/08/07,3.354953773333329 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/26,14.006812499810003 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/07/26,3.6911250015174977 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/09/10,3.154566514884163 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/08/29,18.58719999990499 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/08/24,9.293149998325 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/08/28,4.561443477884613 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/02,11.812175010142491 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/06,4.381525000072492 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/09/29,4.859630489423076 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/09/21,3.8367946711538417 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/05,11.902008334445837 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/31,7.132724998622512 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/08,3.205744042307688 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/07,3.159161415 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/30,3.429838640000001 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/23,19.397791668666656 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/10/22,4.4359409249999935 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/22,9.297141947181933 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/12/10,3.2122940582051256 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/12/09,18.14807499940501 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/12/01,19.31240833389083 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2022/11/24,5.253190630841726 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/01/11,3.663450004599997 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/01/10,2.7606626766666653 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/04/09,3.984178416923072 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/04/08,3.589285200769228 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/04/01,4.2443919855769225 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/09,10.33224166974168 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/10,18.621041666809163 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/31,3.6522022704349935 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/06/04,8.671625000144997 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/27,8.00610000033751 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/05/26,11.820854177939166 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/06/22,3.172119705604162 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/06,4.6780429865384505 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/05,15.784891675291671 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/10,16.437977274762478 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/24,7.167683338148334 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/06,4.9806507133333335 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/30,12.166850000247482 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/07/22,3.622868664102557 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/09/11,3.562696971811661 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/09/06,7.794162491337506 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/31,4.221620191346151 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/23,4.051026609615378 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/08/22,4.3682613500724905 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/10/03,8.854332500022494 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/09/28,8.281849999175018 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/10/02,4.171369696811663 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/10/01,3.1256978899999965 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/11/03,3.621880415384613 -Millsite Lake,15483347,-75.77536435260802,44.291211750125626,2023/11/26,17.71738333433332 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/01/05,3.642634094999997 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/01/28,22.27795833333335 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/01/28,22.27795833333335 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/02,22.26459166666668 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/10,21.11538333333335 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/01,21.750616666666684 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/02,22.26459166666668 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/10,21.11538333333335 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/01,21.750616666666684 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/25,12.441924999784996 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/04/02,13.382816666619163 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/03/25,12.441924999784996 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/04/02,13.382816666619163 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/05/05,10.5089059346825 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/05/04,4.932557987920831 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/04/27,2.618875000000007 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/05/05,10.5089059346825 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/05/04,4.932557987920831 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/04/27,2.618875000000007 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/06,3.7253507784783273 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/05,12.099075000279992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/06,3.7253507784783273 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/05,12.099075000279992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/08,15.149400002014994 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/22,3.155886449999997 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/07,7.827300000434998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/08,15.149400002014994 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/06/22,3.155886449999997 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/07,7.827300000434998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/09,3.1057249999999947 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/31,14.595108354033329 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/24,3.627503796739161 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/01,3.2075274199999986 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/23,6.271825000000008 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/09,3.1057249999999947 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/31,14.595108354033329 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/24,3.627503796739161 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/01,3.2075274199999986 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/07/23,6.271825000000008 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/01,8.690360414884193 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/25,7.451254540145 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/01,8.690360414884193 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/08/25,7.451254540145 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/26,3.211314254666661 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/10/11,14.799833333833329 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/10/04,6.8548587155108125 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/25,6.950633334315822 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/26,3.211314254666661 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/10/11,14.799833333833329 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/10/04,6.8548587155108125 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/09/25,6.950633334315822 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/04,21.221700020700023 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/05,3.4252250000000077 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/04,21.221700020700023 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/05,3.4252250000000077 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/29,11.067033199096938 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2015/11/29,11.067033199096938 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/01/07,7.411424998700011 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/01/07,7.411424998700011 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/01/24,21.675758333333352 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/01/24,21.675758333333352 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/05,14.249608352118331 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/03/27,16.088554168874186 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/05,14.249608352118331 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/03/27,16.088554168874186 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/07,14.588758356618346 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/28,7.997008337933326 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/21,5.286055257996896 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/29,5.012962123333335 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/07,14.588758356618346 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/28,7.997008337933326 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/21,5.286055257996896 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/04/29,5.012962123333335 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/23,8.491558333595835 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/07,2.847325000000004 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/31,5.362299999999998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/22,7.906616666714179 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/23,8.491558333595835 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/07,2.847325000000004 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/31,5.362299999999998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/05/22,7.906616666714179 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/01,16.94440000095999 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/24,19.882079166714146 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/09,3.6359250000000087 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/02,3.6832692307692296 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/23,4.032866060769224 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/01,16.94440000095999 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/24,19.882079166714146 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/09,3.6359250000000087 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/02,3.6832692307692296 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/06/23,4.032866060769224 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/11,4.672636971333322 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/26,14.312933335945836 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/03,7.847250000579996 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/11,4.672636971333322 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/07/26,14.312933335945836 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/03,7.847250000579996 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/03,10.1819795400725 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/27,3.0932727212324944 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/11,5.711259089999995 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/04,10.080258333665842 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/26,2.9297136649999977 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/03,10.1819795400725 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/27,3.0932727212324944 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/11,5.711259089999995 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/04,10.080258333665842 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/08/26,2.9297136649999977 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/10/05,9.704900004934998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/28,10.507483337910832 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/10/06,5.081997729999995 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/27,4.192525000627497 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/10/05,9.704900004934998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/28,10.507483337910832 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/10/06,5.081997729999995 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/09/27,4.192525000627497 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/07,4.182689348666663 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/07,4.182689348666663 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/12/09,5.18051235230768 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/30,16.492616667046665 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/23,5.101300000072491 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/12/09,5.18051235230768 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/30,16.492616667046665 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/11/23,5.101300000072491 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/12/25,20.942664583485843 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2016/12/25,20.942664583485843 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/10,18.945037502162503 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/10,18.945037502162503 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/26,11.428793768554993 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/27,17.06662500711503 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/26,11.428793768554993 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/02/27,17.06662500711503 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/08,15.926863641802472 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/03/30,11.537689584238342 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/03/22,15.245974999905007 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/08,15.926863641802472 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/03/30,11.537689584238342 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/03/22,15.245974999905007 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/24,8.908866666584169 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/23,12.521875006995002 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/24,8.908866666584169 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/04/23,12.521875006995002 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/11,8.649115544890833 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/10,13.09997499999998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/03,4.126856819999992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/11,8.649115544890833 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/10,13.09997499999998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/06/03,4.126856819999992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/04,14.251375013799992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/05,2.7347066807692304 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/04,14.251375013799992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/05,2.7347066807692304 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/29,4.374004599999994 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/28,13.091699999999992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/29,4.374004599999994 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/07/28,13.091699999999992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/08/30,10.230943180095004 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/08/29,11.295583335775838 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/08/30,10.230943180095004 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/08/29,11.295583335775838 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/08,7.947270827368343 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/01,23.93569394460001 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/22,25.755025 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/30,2.7889473600000008 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/23,22.35860833352332 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/08,7.947270827368343 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/01,23.93569394460001 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/22,25.755025 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/30,2.7889473600000008 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/09/23,22.35860833352332 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/24,6.968201521666662 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/11/10,5.353355692454161 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/25,2.424586 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/24,6.968201521666662 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/11/10,5.353355692454161 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/10/25,2.424586 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/12/11,12.11171395872861 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2017/12/03,13.394524999984982 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/01/28,13.628999999904996 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/03/01,8.52427501306999 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/04/11,15.000385418959194 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/05/05,16.472466682861686 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/05/29,3.919669703623325 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/07/07,8.497125000120011 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/06/30,9.385537502387496 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/06/21,8.053000000432501 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/07/08,3.7953568199999936 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/06/29,5.299550020706662 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/06/22,2.90673426730769 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/08/09,11.870375278300266 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/08/24,14.460043438945842 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/08/25,15.616487502584985 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/11/04,10.91801737666666 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/12/07,8.43633917350166 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2018/12/23,12.256499999715 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/01/31,22.76551666666667 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/04/30,9.132341677794166 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/05/08,3.10226645 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/06/08,14.426858350863345 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/06/01,11.873258331153329 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/06/09,12.818170469999972 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/05/31,15.056437499715 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/10,20.344458333285807 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/03,3.2181310573916653 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/02,2.878804500000005 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/08/11,24.83754166666667 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/08/04,26.601350000047518 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/26,15.25499999978499 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/08/03,12.4089000026 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/07/27,20.65159166910917 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/09/05,13.91164583350086 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/09/04,12.367916678266663 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/09/21,14.887914583333318 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/11/08,14.25238781435416 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/10/30,6.729199999725011 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2019/11/24,8.715374997760001 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/03/06,8.849975000000015 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/02/28,21.57322500000001 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/04/07,19.581720839803356 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/03/22,24.501758349550823 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/04/08,21.70892499904752 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/05/02,9.467775002282492 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/04/23,17.35459395610002 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/05/10,3.429495499999995 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/05/26,21.78642500000001 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/07/05,17.768262500022498 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/06/26,12.52251083314335 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/07/04,2.635341424999999 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/08/06,14.612283333333348 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/07/28,5.104138642224169 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/08/05,9.658000000217491 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/08/22,8.38454242333334 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/09/06,14.487008333333318 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/08/30,7.1701250001449965 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/10/09,5.586150002347508 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/09/23,16.09920000004752 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/10/08,13.408900000399983 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/09/22,20.364308333428315 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/11/10,10.242185517310268 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/11/09,10.88963697133333 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2020/12/11,15.154508333533316 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/02/21,22.26459166666668 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/04/10,10.061299998405 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/04/03,12.220645465587497 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/03/25,9.351606236545011 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/04/02,22.074141673709164 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/04/26,13.2004250124225 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/06/06,15.279881249050014 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/06/05,6.114070830898332 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/05/29,4.992675000867498 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/08/09,11.49031666688166 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/07/31,4.25848408999999 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/07/24,18.78876249999998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/08/08,23.41000833373332 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/07/23,6.898350756761679 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/09/10,10.422706056666671 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/08/25,3.3346000006950054 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/09/09,3.597800000000004 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/08/24,5.718274999999997 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/09/26,7.742141667476668 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/10/11,8.463128637999997 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/09/25,13.253949999999977 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/04,14.337073753380002 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/05,7.272436369999996 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/10/27,5.293331819999989 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/29,11.04641674742167 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/12/07,14.182225001605014 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/24,8.762587866666662 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2021/11/21,16.093684092300013 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/01/07,22.663366666666672 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/01/23,23.228724999999997 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/02/24,6.64867500131001 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/06,13.297395834788338 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/03/28,22.76205 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/06,15.568387127300005 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/05,4.90270307333333 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/03/29,5.756907973076913 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/08,5.301539398333323 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/07,5.669172365469997 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/30,8.082141524666659 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/04/29,7.028749246666664 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/05,20.24581666911169 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/31,14.850599999354998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/08,6.706010611610827 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/31,12.510420833595829 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/05/24,16.354424999984982 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/09,8.147552270142501 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/04,4.133127270072493 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/22,8.760981666374176 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/11,3.86682499999999 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/10,12.335012500119996 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/03,10.486134090000006 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/02,8.961283337933327 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/25,4.862871966666659 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/06/24,6.397034233666663 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/08/07,4.3882787978991615 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/07/26,18.496645832568312 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/09/10,7.456713256999168 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/08/24,5.303200017967503 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/08/28,17.72812802999998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/08/27,8.861900000479995 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/02,20.20625833333333 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/06,18.633616666766656 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/09/29,14.34131514671414 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/09/21,11.365271061333328 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/05,4.299898334695835 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/31,3.884591667226676 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/08,10.246061359999995 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/07,4.345224311666665 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/30,3.695700000119995 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/10/22,21.317108340233325 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/22,12.85705958879833 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/12/10,5.047969280769226 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/12/09,12.100600000384992 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/12/01,3.629350000000007 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2022/11/24,6.781652038461545 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/01/11,10.23715000012 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/02/11,22.35326666666668 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/04/09,28.82557833591829 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/04/08,19.69490834037585 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/04/01,22.467950004505006 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/09,10.928514589035856 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/10,17.014550004287493 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/02,2.871784000000001 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/31,10.438410603333336 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/06/04,20.69040833333335 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/06/03,5.034658338925831 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/27,14.631633335705828 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/05/26,3.750297729999996 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/06/22,17.052525000355 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/06,3.519275000192494 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/05,6.193650005650002 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/10,17.28761666800666 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/24,9.899660604030837 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/06,2.7205606 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/30,3.350252279999998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/07/22,3.6098962134058254 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/09/11,16.317315277730255 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/09/06,12.72435833352334 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/31,18.05635985229998 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/23,10.815108333333344 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/08/22,18.896818333428325 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/10/03,9.43108167615166 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/09/28,10.716379168081676 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/10/02,17.270599999762485 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/10/01,20.73196666666665 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/11/03,15.977101522933326 -Red Lake,15483399,-75.7359772760096,44.269220663090216,2023/11/26,18.31109166886666 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/01/05,8.389000001385 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/03/10,22.113474999737512 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/03/10,22.113474999737512 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/05/05,11.173366668491663 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/05/05,11.173366668491663 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/06/06,12.885641687366675 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/05/29,7.728864881739875 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/06/06,12.885641687366675 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/05/29,7.728864881739875 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/07/08,6.678633334648327 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/06/22,3.4269864249999955 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/07/08,6.678633334648327 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/06/22,3.4269864249999955 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/08/09,2.6938710616666635 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/07/24,6.433852085155828 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/08/01,3.0437522500000056 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/08/09,2.6938710616666635 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/07/24,6.433852085155828 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/08/01,3.0437522500000056 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/09/10,9.9965878862525 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/09/10,9.9965878862525 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/09/26,4.252525001200001 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/10/04,4.358464883444878 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/09/26,4.252525001200001 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/10/04,4.358464883444878 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/11/29,9.032963640215003 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/12/07,19.60209999954001 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/11/29,9.032963640215003 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2015/12/07,19.60209999954001 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/01/24,21.867666666666683 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/01/24,21.867666666666683 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/03/04,11.099458333118337 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/03/04,11.099458333118337 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/05,5.9578750050724985 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/05,5.9578750050724985 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/07,14.689720840218342 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/21,8.672650011620005 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/29,9.293875000239996 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/07,14.689720840218342 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/21,8.672650011620005 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/04/29,9.293875000239996 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/23,16.17304170576668 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/31,4.2699750000474985 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/23,16.17304170576668 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/05/31,4.2699750000474985 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/06/24,5.980526514733338 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/07/02,2.9411500000000075 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/06/24,5.980526514733338 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/07/02,2.9411500000000075 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/11,8.6077624988075 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/07/26,11.797408363233355 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/03,3.5279750999999986 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/11,8.6077624988075 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/07/26,11.797408363233355 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/03,3.5279750999999986 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/27,4.488480303453335 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/09/04,4.048675000144997 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/08/27,4.488480303453335 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/09/04,4.048675000144997 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/09/28,2.852921966739165 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/10/06,3.1019282480769226 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/09/28,2.852921966739165 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/10/06,3.1019282480769226 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/11/07,2.7909321236263724 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/11/07,2.7909321236263724 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/12/09,3.1092384615384594 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/12/09,3.1092384615384594 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/12/25,15.06378333465086 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2016/12/25,15.06378333465086 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/02/27,2.943475000000006 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/02/27,2.943475000000006 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/04/24,18.727991708066707 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/04/24,18.727991708066707 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/11,9.8258250007775 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/03,4.931500392172492 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/11,9.8258250007775 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/03,4.931500392172492 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/27,6.731874992585011 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/07/05,2.936980474038461 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/06/27,6.731874992585011 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/07/05,2.936980474038461 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/07/29,4.431834865072496 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/08/06,4.211475000072496 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/07/29,4.431834865072496 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/08/06,4.211475000072496 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/08/30,2.9672954501449977 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/08/30,2.9672954501449977 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/10/01,3.2579621133333303 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/09/23,2.7210223899999963 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/10/01,3.2579621133333303 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/09/23,2.7210223899999963 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/11/10,12.28042500026499 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/10/25,2.4205745999999992 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/11/10,12.28042500026499 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/10/25,2.4205745999999992 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2017/12/04,6.20242499492001 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/01/29,22.830552083423346 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/05/05,3.031306066666669 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/05/29,5.798345456956673 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/06/30,9.297824987802493 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/07/08,3.683015909999993 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/06/22,2.2883465499999995 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/08/09,3.422874999999993 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/08/25,3.4691791199999944 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/12/07,6.632083377520829 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2018/12/23,8.873222916334175 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/04/30,4.406397737419999 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/05/08,2.949423250000001 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/06/01,9.370545828095846 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/06/09,3.406186899999993 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/07/03,8.370441671314163 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/08/04,7.989650003627515 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/07/27,3.3942181999999947 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/09/05,2.413590909999999 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/09/21,5.80314924338084 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/11/08,5.409874999340002 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2019/10/23,7.649647925901672 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/05/02,11.126833374733351 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/05/10,3.0589052249999984 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/05/26,2.9709568204100005 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/07/05,8.773308336173331 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/08/06,3.254178787319162 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/08/22,3.397137123768327 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/08/30,3.2456750000000043 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/10/09,3.2483621334058306 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2020/11/10,9.294627919047612 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/04/03,15.17404167356668 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/06/06,21.014041666666664 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/05/29,4.763061365000003 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/09/10,3.547851571666661 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/08/25,6.247834091570004 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/11/05,3.3215139730769216 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/12/07,4.945529171291665 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/11/24,2.5293935999999984 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/11/21,3.737825919999996 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2021/12/23,13.678225000047489 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/04/06,8.042886745252503 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/04/06,2.566270825000004 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/03/29,7.150957578846144 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/05/08,2.7280918399999994 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/04/30,3.9063573199999935 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/06/05,13.792716692014162 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/05/24,3.911649999999989 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/07/04,3.5800250199999937 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/06/22,9.644473335588348 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/07/11,20.673033333733333 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/07/03,7.049666677064158 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/06/25,4.344930964999992 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/08/07,3.253105907999995 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/09/10,3.179412877029165 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/08/24,4.106918024066785 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/08/28,2.9227411057692283 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/09/29,5.856369924615377 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/09/21,3.966546213623332 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/11/05,12.702566692926675 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/10/31,6.58713485406583 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/11/08,2.4051842249999997 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/10/23,12.376599999999994 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/11/22,7.351365837073328 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/12/10,2.3449888499999973 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2022/11/24,3.660450000000005 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/01/11,3.9003955048076944 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/04/09,2.5224312500000003 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/04/01,16.655416668966694 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/05/31,3.4699431801449983 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/06/04,12.713891672416668 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/05/27,5.766750000385006 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/06/22,5.143402290217494 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/07/06,3.202923830769228 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/08/10,8.334631244225012 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/07/24,8.648386360700005 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/07/30,3.621557920769229 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/07/22,3.926868180000002 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/09/06,3.3762863605799964 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/09/01,3.593815128116664 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/08/31,2.6154998249999992 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/08/23,2.2091865307692307 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/10/03,8.968625000237509 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/09/28,11.019777083933365 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/10/02,2.463777330000001 -Mud Lake,15483673,-75.3939225907342,44.15145955153527,2023/11/03,3.1501598699999978 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/01/05,16.64721666706666 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2014/12/27,23.47630833333333 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/01/05,16.64721666706666 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2014/12/27,23.47630833333333 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/02/06,21.838800000000013 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/02/06,21.838800000000013 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/03/01,21.88613333333335 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/03/01,21.88613333333335 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/03/25,11.779008332258332 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/04/02,12.825941666619164 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/03/25,11.779008332258332 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/04/02,12.825941666619164 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/05/05,8.088674995944999 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/05/04,5.461337127736666 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/05/05,8.088674995944999 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/05/04,5.461337127736666 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/06/06,14.767300009200008 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/06/06,14.767300009200008 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/08,10.786456665954178 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/06/22,5.8210829625858365 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/08,10.786456665954178 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/06/22,5.8210829625858365 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/09,3.6385500001449937 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/31,12.682233333333343 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/24,14.837233355493336 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/01,12.550249999569989 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/23,6.652508333333347 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/09,3.6385500001449937 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/31,12.682233333333343 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/24,14.837233355493336 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/01,12.550249999569989 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/07/23,6.652508333333347 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/01,10.853789625218331 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/25,2.6444636302900006 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/09,9.409275000217498 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/01,10.853789625218331 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/08/25,2.6444636302900006 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/09,9.409275000217498 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/26,4.234237737999996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/10/11,4.635800000410005 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/10/04,4.741348217120713 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/25,11.827650000189992 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/26,4.234237737999996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/10/11,4.635800000410005 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/10/04,4.741348217120713 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/09/25,11.827650000189992 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/04,6.551867430145 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/05,17.695287500184993 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/04,6.551867430145 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/05,17.695287500184993 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/29,5.89614027233346 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2015/11/29,5.89614027233346 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/01/07,7.493114583225846 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/01/07,7.493114583225846 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/01/23,22.177183333333343 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/01/23,22.177183333333343 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/05,13.629088654132495 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/03/27,11.574225001754996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/04,12.17162499978498 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/05,13.629088654132495 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/03/27,11.574225001754996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/04,12.17162499978498 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/07,7.5093583351858335 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/28,12.41221668061417 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/21,7.430398891414172 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/29,6.67051742666665 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/07,7.5093583351858335 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/28,12.41221668061417 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/21,7.430398891414172 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/04/29,6.67051742666665 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/23,6.30415000019001 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/07,5.391575766666659 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/31,7.236141666761671 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/22,9.772125000119992 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/23,6.30415000019001 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/07,5.391575766666659 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/31,7.236141666761671 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/05/22,9.772125000119992 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/07/01,21.843083333688337 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/24,5.291259091157502 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/23,2.909302249999997 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/07/01,21.843083333688337 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/24,5.291259091157502 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/06/23,2.909302249999997 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/11,5.568300000237505 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/07/26,3.7240499999999943 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/03,10.361937497717488 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/11,5.568300000237505 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/07/26,3.7240499999999943 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/03,10.361937497717488 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/03,11.023746210072506 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/27,14.76548750019002 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/11,3.406949999999996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/04,17.893175000047503 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/26,8.55637424333333 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/03,11.023746210072506 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/27,14.76548750019002 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/11,3.406949999999996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/04,17.893175000047503 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/08/26,8.55637424333333 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/10/05,12.946350000095004 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/28,14.204725000240003 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/10/06,12.623405151333335 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/10/05,12.946350000095004 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/09/28,14.204725000240003 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/10/06,12.623405151333335 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/11/07,4.471326887435897 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/11/07,4.471326887435897 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/12/09,3.644000000000008 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/11/23,3.5901782334615344 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/12/09,3.644000000000008 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/11/23,3.5901782334615344 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/12/25,16.76410000253752 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2016/12/25,16.76410000253752 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/10,15.99553333463835 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/10,15.99553333463835 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/26,9.687415092077508 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/19,12.753408333190832 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/27,21.641749999650013 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/26,9.687415092077508 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/19,12.753408333190832 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/02/27,21.641749999650013 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/08,13.33352208644582 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/03/30,9.430799999714996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/08,13.33352208644582 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/03/30,9.430799999714996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/24,8.231508337028338 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/23,5.759563639999995 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/24,8.231508337028338 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/04/23,5.759563639999995 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/06/11,8.141616676196671 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/06/03,3.600410270769229 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/06/11,8.141616676196671 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/06/03,3.600410270769229 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/04,6.931450000237497 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/05,2.5097515 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/04,6.931450000237497 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/05,2.5097515 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/05,6.597474992800012 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/29,4.509344698333323 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/06,8.199050758765829 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/28,8.120241667174149 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/05,6.597474992800012 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/29,4.509344698333323 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/06,8.199050758765829 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/07/28,8.120241667174149 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/30,8.431867423573337 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/29,15.78218333338085 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/30,8.431867423573337 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/08/29,15.78218333338085 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/01,3.1866287868116627 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/22,6.264027275072507 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/30,3.3293250000000056 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/23,6.865008333333338 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/01,3.1866287868116627 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/22,6.264027275072507 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/30,3.3293250000000056 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/09/23,6.865008333333338 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/24,6.809475007347498 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/11/10,2.2732844875 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/25,5.432031814999993 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/24,6.809475007347498 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/11/10,2.2732844875 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/10/25,5.432031814999993 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2017/12/11,6.4236916580866765 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/03/01,13.872131250457526 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/04/02,11.083474999762512 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/04/10,8.48434999804251 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/05/05,10.111666708066664 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/05/29,14.786183333380851 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/07/07,13.583833333453349 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/06/30,5.530976519611669 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/06/21,9.525091676846673 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/07/08,6.096433333523335 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/06/29,7.600214426428332 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/06/22,3.632399999999994 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/08/09,9.28090909270501 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/08/24,6.8384000025375 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/08/25,7.146950000500009 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/11/04,4.696000971999995 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2018/11/21,10.333692970169164 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/04/30,5.471150006410007 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/05/08,3.9187477299999967 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/06/08,6.184689586725835 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/06/01,15.118362499952502 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/06/09,4.693804549999998 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/05/31,14.08580000024 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/07/10,17.368414169351674 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/07/03,7.872118181230002 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/06/24,19.218479166904157 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/08/11,17.729525000200002 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/08/04,7.825033333740836 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/07/26,23.430141666714167 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/08/03,5.824100000642504 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/07/27,10.574687502942496 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/09/05,4.057718180217494 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/09/04,2.8516250000000047 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/09/21,8.502525000237506 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/11/08,10.899575076680003 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2019/10/23,9.828808041087502 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/01/02,8.878258332905864 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/03/06,8.19425833245834 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/04/07,20.31211253205753 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/03/22,25.683966666761663 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/04/08,13.387433334323344 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/05/02,10.291943316320236 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/04/23,24.128183347133344 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/05/10,8.742362271999998 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/04/24,13.190625000970003 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/06/11,2.774025000000006 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/05/26,21.224341682886703 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/07/04,4.9504249999999965 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/08/06,6.457922170687501 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/07/28,19.470683335633357 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/08/05,3.110510611666665 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/08/22,4.359409090144994 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/09/06,13.22178333333332 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/08/30,6.000185634615374 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/10/09,6.352078788405836 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/09/23,19.63358333311832 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/10/01,2.4633124168956044 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/09/22,21.066008333405826 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/11/10,9.641744707913317 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2020/11/09,20.677441665991672 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/02/21,22.30574166666668 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/10,10.39116667071918 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/03,8.63074166732167 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/03/25,15.054481252497528 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/02,7.191499999999984 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/26,6.479751521714165 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/04/27,16.761066666836665 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/06/06,14.56982500019001 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/06/05,8.84637500047751 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/06/29,8.486316667944175 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/07/31,9.661309090000008 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/07/24,19.236833333333315 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/08/08,9.360050000169998 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/07/23,2.983677269999999 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/09/10,15.97320833333332 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/08/25,11.123083333620825 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/09/02,13.671083333413325 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/08/24,3.161149246811663 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/09/26,3.8862568100724943 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/10/11,4.462871219349164 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/09/25,4.940914551999997 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/11/04,15.62119166666667 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/11/05,4.691398388461532 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/10/27,15.395883333333328 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/11/24,2.853939480769231 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2021/11/21,4.550196899999993 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/01/07,22.40836666666668 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/01/07,21.517850000000017 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/02/09,21.791766666666685 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/03/05,22.18061666666668 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/06,11.716941667566664 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/06,6.158162881666657 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/05,4.303554172521662 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/03/29,4.2001500000000025 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/08,4.7690135014058255 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/07,6.348087878185837 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/30,6.090192277999995 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/29,6.249195464999994 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/04/22,3.905885606931665 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/06/05,8.285450000695006 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/31,16.90318333271331 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/31,11.581812504884992 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/05/24,20.648716666916684 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/09,7.681451513478334 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/04,3.547445450144996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/06/22,22.835233333675824 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/11,7.086928030072499 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/10,4.713307982339998 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/03,9.834164396666669 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/02,11.812634854101669 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/06/25,8.63612575678668 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/06/24,6.309294091999993 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/08/07,4.077975000362494 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/08/03,14.55562500011998 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/27,14.016716666951664 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/07/26,4.491800000674996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/09/10,4.196875000144996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/08/28,5.114744091999996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/08/27,4.3396499999999945 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/02,7.592381066666669 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/06,4.304558193072494 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/09/29,12.787774999569988 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/09/21,4.238493179999995 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/05,4.480698112580829 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/31,16.3030351294375 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/08,7.558994131999984 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/07,3.984214581999999 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/30,3.541631589999998 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/10/22,5.555075010047493 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/22,8.870727088958336 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/12/10,3.873853191999999 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/12/09,11.905974999999986 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2022/11/24,3.3403500000000044 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/01/10,4.0587212548076925 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/04/09,8.99013029999999 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/04/08,5.362821371999992 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/09,9.97041458378584 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/10,15.9584022787125 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/02,15.387225000199978 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/31,11.67457575700417 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/06/04,7.305158333928336 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/27,13.098375000024996 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/05/26,5.295243619319998 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/06/27,7.5726916552916705 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/06/22,8.553449998062499 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/07/06,7.970450759346672 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/07/05,9.83902500033751 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/10,15.987225000354988 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/06,9.657877273333336 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/07/30,9.726278026714184 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/07/22,4.0903090899999945 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/09/11,17.454675000155003 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/09/06,16.799691672869166 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/09/01,2.7926416766433304 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/31,2.2720204500000007 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/23,6.371436349999997 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/08/22,17.905066669014165 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/10/03,11.73257916946666 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/10/02,3.820706844999991 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/10/01,8.028756820000003 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/11/03,6.2404197009924935 -Yellow Lake,15490428,-75.59919733835632,44.32596257611572,2023/11/26,6.6441499990725 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/01/05,21.75304166666668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/01/05,21.75304166666668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/01/29,22.26459166666668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/02/06,21.919450000000012 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/02/06,21.919450000000012 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/01/29,22.26459166666668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/02/06,21.919450000000012 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/02/06,21.919450000000012 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/03,8.77181666579167 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/03,8.710316665791673 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/03,8.77181666579167 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/03,8.710316665791673 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/28,6.336986374767499 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/06,2.760934995 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/04/28,6.336986374767499 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/06,2.760934995 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/06,4.572320113386899 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/06,4.525709994389282 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/30,3.128296546174047 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/07,11.8078000002375 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/29,6.2709333338108175 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/29,6.473525000309985 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/22,5.913525002299995 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/06,4.572320113386899 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/06,4.525709994389282 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/30,3.128296546174047 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/07,11.8078000002375 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/29,6.2709333338108175 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/29,6.473525000309985 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/05/22,5.913525002299995 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/08,10.053225005852491 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/08,9.853666672946662 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/22,3.4392400549999933 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/22,3.732292354999994 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/08,10.053225005852491 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/08,9.853666672946662 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/22,3.4392400549999933 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/06/22,3.732292354999994 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/09,7.283075003117502 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/09,6.606950002972504 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/24,8.118700000287498 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/24,13.92300833587334 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/10,2.7334750000000043 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/01,2.807279500000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/01,3.053725000000002 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/09,7.283075003117502 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/09,6.606950002972504 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/24,8.118700000287498 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/07/24,13.92300833587334 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/10,2.7334750000000043 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/01,2.807279500000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/01,3.053725000000002 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/25,18.53133333352085 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/25,19.75392916656668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/11,3.5588292057692272 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/02,11.4955750000725 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/02,11.969850000072508 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/25,18.53133333352085 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/08/25,19.75392916656668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/11,3.5588292057692272 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/02,11.4955750000725 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/02,11.969850000072508 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/10/05,6.331937493180017 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/26,4.0430606966666565 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/26,4.374608396666655 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/27,3.0049317932692285 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/10/05,6.331937493180017 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/26,4.0430606966666565 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/26,4.374608396666655 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/09/27,3.0049317932692285 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/05,2.170483949999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/05,2.591956173626373 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/05,2.170483949999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/05,2.591956173626373 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/29,9.601253615858598 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/29,8.541974446196933 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/22,6.526770566847736 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/30,3.731385495512816 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/29,9.601253615858598 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/29,8.541974446196933 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/22,6.526770566847736 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2015/11/30,3.731385495512816 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/01/08,21.77565833333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/01/08,21.77565833333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/01/08,21.77565833333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/01/08,21.77565833333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/05,13.078371122516112 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/05,8.50189027988776 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/05,13.078371122516112 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/05,8.50189027988776 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/07,18.88611916704668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/07,13.688666671781675 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/30,4.247381205333329 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/21,12.611041696639177 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/21,13.032725029972504 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/29,3.4931179749999983 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/29,4.514077269999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/07,18.88611916704668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/07,13.688666671781675 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/30,4.247381205333329 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/21,12.611041696639177 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/21,13.032725029972504 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/29,3.4931179749999983 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/04/29,4.514077269999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/23,10.2436312519125 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/23,9.035091067053566 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/31,4.953236007449166 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/31,4.585831837712499 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/24,14.350358333118317 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/23,10.2436312519125 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/23,9.035091067053566 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/31,4.953236007449166 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/31,4.585831837712499 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/05/24,14.350358333118317 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/03,4.429989778934998 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/24,2.378410605725833 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/24,2.290494695653334 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/11,10.688300000237488 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/02,3.2041500000000083 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/02,2.7583192307692315 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/25,3.757845454999997 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/03,4.429989778934998 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/24,2.378410605725833 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/24,2.290494695653334 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/11,10.688300000237488 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/02,3.2041500000000083 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/02,2.7583192307692315 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/06/25,3.757845454999997 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/11,7.866058337145829 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/11,7.854325003717496 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/04,2.9638856 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/26,13.22067916722168 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/26,13.176520833675845 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/03,3.4945072949999973 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/03,3.716666419999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/27,2.910165158141025 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/11,7.866058337145829 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/11,7.854325003717496 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/04,2.9638856 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/26,13.22067916722168 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/26,13.176520833675845 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/03,3.4945072949999973 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/03,3.716666419999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/07/27,2.910165158141025 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/05,4.878459420769229 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/27,3.4905288016666622 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/27,3.241530301666663 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/04,3.5259431999999964 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/04,3.035452605769228 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/05,4.878459420769229 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/27,3.4905288016666622 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/08/27,3.241530301666663 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/04,3.5259431999999964 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/04,3.035452605769228 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/07,2.815664413333332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/28,5.001900002562501 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/28,5.146435610895833 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/21,2.564893200000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/06,2.8441486182692297 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/06,2.810948618269229 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/29,3.0217650375 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/07,2.815664413333332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/28,5.001900002562501 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/28,5.146435610895833 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/21,2.564893200000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/06,2.8441486182692297 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/06,2.810948618269229 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/09/29,3.0217650375 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/08,3.375035509999998 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/23,8.131195435072492 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/07,2.8666826682692306 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/07,2.8113735182692285 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/08,3.375035509999998 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/10/23,8.131195435072492 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/07,2.8666826682692306 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/07,2.8113735182692285 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/12/10,7.74992083263835 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/23,3.4821500000000065 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/23,3.2497500000000072 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/12/10,7.74992083263835 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/23,3.4821500000000065 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2016/11/23,3.2497500000000072 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/01/02,11.170050000185007 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/01/02,11.170050000185007 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/01/27,22.407050000000005 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/01/27,22.407050000000005 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/08,15.132762501150014 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/27,21.66638333333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/27,21.66638333333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/20,17.013283333285827 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/08,15.132762501150014 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/27,21.66638333333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/27,21.66638333333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/02/20,17.013283333285827 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/23,22.34590833333334 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/23,22.451158333333343 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/09,13.454658333238337 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/23,22.34590833333334 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/03/23,22.451158333333343 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/09,13.454658333238337 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/24,11.486133333405828 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/24,11.07179166673916 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/24,11.486133333405828 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/04/24,11.07179166673916 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/11,4.162728018216783 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/11,4.206911351120116 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/03,4.404317819653332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/03,5.685819708582496 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/11,4.162728018216783 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/11,4.206911351120116 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/03,4.404317819653332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/03,5.685819708582496 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/27,8.738937495462501 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/27,6.40786249022001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/05,2.5085658000000013 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/05,2.4155830750000025 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/27,8.738937495462501 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/06/27,6.40786249022001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/05,2.5085658000000013 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/05,2.4155830750000025 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/29,5.79734470673917 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/29,5.79364470673917 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/06,4.638193199999991 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/06,5.24009319999999 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/30,2.926433004807692 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/29,5.79734470673917 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/29,5.79364470673917 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/06,4.638193199999991 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/06,5.24009319999999 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/07/30,2.926433004807692 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/30,11.657612500902507 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/30,12.191200000142503 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/30,11.657612500902507 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/08/30,12.191200000142503 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/10,6.437599992140008 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/01,4.334702319999992 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/01,4.390502319999992 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/24,2.524616678333332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/02,3.1198274663461523 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/23,3.463197734999994 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/23,4.163638649999991 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/10,6.437599992140008 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/01,4.334702319999992 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/01,4.390502319999992 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/24,2.524616678333332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/02,3.1198274663461523 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/23,3.463197734999994 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/09/23,4.163638649999991 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/11,8.420146099047612 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/10,3.063300000000007 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/10,3.2117500000000074 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/25,2.322488550000002 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/25,2.307285300000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/11,8.420146099047612 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/10,3.063300000000007 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/11/10,3.2117500000000074 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/25,2.322488550000002 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/10/25,2.307285300000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/12/04,5.5297924170459565 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2017/12/04,5.210077501395002 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/01/05,22.26459166666668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/03/26,21.52226083333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/03/26,21.04199166676169 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/05,4.012838634999999 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/05,3.475995455 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/29,11.017558333453335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/29,12.99547500000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/05/30,8.186650000792483 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/07/09,4.100099999999987 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/06/30,19.947199999905 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/06/30,15.357475000095006 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/07/08,10.886675006947478 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/07/08,14.2617500207725 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/07/01,2.494375000000004 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/06/22,2.8795739999999985 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/06/22,2.786469455 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/10,2.997681229102564 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/09,5.824750000047498 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/09,6.392730303428339 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/09/03,3.644650971923073 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/25,6.102850002299996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/08/25,3.762974999999997 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/10/05,2.51135125 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/12/07,21.49190833333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/12/07,11.83479166666667 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2018/11/22,3.265400000000008 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/02/09,22.30117500000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/02/09,22.407050000000005 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/02/26,21.838800000000013 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/05/09,7.686035415569165 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/04/23,4.8624772774675 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/05/08,4.527118169999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/05/08,3.852993849999999 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/04/22,2.452039192307692 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/04/22,2.4239891923076917 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/10,12.150974997789996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/01,9.588180414954191 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/01,8.734199998797523 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/09,2.764305750000002 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/09,3.065173199999998 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/07/03,11.800900001249994 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/06/26,2.1569295576825 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/08/04,5.2624931804325 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/08/04,4.258783334143332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/08/05,4.994000049999993 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/07/27,3.544536365120001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/07/27,4.438150000072494 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/05,4.102215206666656 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/05,3.739537906666659 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/06,3.0757925480769246 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/30,8.826449993740006 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/21,3.6477954499999936 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/21,3.2379871133333307 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/10/08,2.8182353865384577 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/29,11.277324999999983 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/09/29,12.684683333333329 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/11/08,5.394949998235005 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/11/08,5.394949998235005 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/11/09,3.3721522500475025 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/12/11,3.662025000167505 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2019/11/25,3.36074696742769 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/05,22.34590833333334 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/28,9.823583333333348 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/21,22.539900000000006 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/03/07,21.675758333333352 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/29,21.750616666666684 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/20,21.88613333333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/02/20,21.88613333333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/04/01,13.919550000237509 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/02,4.328489412516669 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/02,4.3248894125166695 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/04/25,7.6132776568833345 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/10,5.5959886394325 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/10,4.8526541696191625 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/03,3.562600000000008 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/27,3.478640776333329 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/06/04,4.203024999999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/26,3.872475000000007 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/05/26,4.017375000000007 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/07/05,12.578300009319996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/07/05,12.647050009319996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/07/06,3.017119379807692 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/06,6.176981066811667 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/06,6.049681066811668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/07/30,9.391695842223331 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/07,3.192961092948717 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/31,2.7644995541025628 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/22,9.31505001239249 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/22,9.237950012657492 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/30,3.397929500000006 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/30,3.5610500000000083 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/08/23,2.6744342432692307 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/09,5.000034159999988 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/09,4.691822759999989 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/01,3.0459780630769218 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/01,2.8221826923076923 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/09/24,4.078975000554996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/11/10,4.136725163666663 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/11/10,3.8167797136666617 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/11/03,5.180199998665006 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/25,5.939140001672502 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/10/25,14.717204166669164 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2020/12/29,13.351641666404165 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/01/29,11.802908333333336 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/01/29,9.723433333333348 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/02/06,21.846700000000013 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/01/30,21.66638333333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/03/02,22.539900000000006 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/03/02,22.539900000000006 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/04/03,22.32207499935501 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/04/03,22.32207499935501 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/04/04,12.810249999952491 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/03/26,21.750616666666684 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/05/06,3.684686350072499 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/06/06,19.448408334003325 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/06/06,14.189225001192504 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/06/07,5.814324999999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/05/29,10.425518341430813 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/05/29,12.776301686264162 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/06/23,3.506925000095005 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/02,8.342064580920837 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/07/24,11.416220831718338 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/10,4.773417156410245 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/07/25,3.104225 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/25,6.896554546425 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/25,6.506118181497502 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/09/11,4.823162834615379 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/09/02,9.062275000000009 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/09/02,2.553004500000004 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/08/26,4.54134319999999 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/06,4.608302910714278 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/10/28,6.600613615072493 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/10/28,7.967269572380945 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/05,2.8562962823076936 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/05,3.62275264807692 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/10/29,2.70860535576923 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/12/07,2.9144272500000064 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/12/07,2.5339295000000037 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/24,2.678126605769229 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/24,2.653956868269228 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/21,3.314927980769228 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/11/21,2.95753025576923 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/01/08,21.75304166666668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/12/23,4.022357043269231 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2021/12/23,4.0071908125 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/02/01,22.26459166666668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/01/25,12.33914166705166 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/01/24,21.856800000000018 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/02/26,22.40535000000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/06,6.679849998265016 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/03/30,22.337341666666678 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/06,11.887022941039156 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/06,13.412584646505827 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/03/29,21.88613333333335 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/03/22,11.436808333238336 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/09,2.48202475 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/08,5.030299999999998 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/08,4.928175000000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/01,4.4830750003124935 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/30,3.565724062999997 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/04/30,6.802295454999999 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/25,2.385900000000002 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/24,3.0303189534783286 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/05/24,3.329478033768328 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/07/03,6.200125000262484 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/07/03,7.303966666666646 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/06/26,3.968565999999992 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/06/25,2.3914157000000027 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/06/25,2.394427075000003 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/07/28,4.584961365917496 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/10,3.022583327609164 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/10,3.479549237319162 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/24,7.031910350847739 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/24,9.125006202126071 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/29,4.984400000144988 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/28,3.524536168333332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/08/28,3.411898938333328 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/10/09,6.3944962497125 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/22,5.023150000185006 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/30,12.983774999999982 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/29,18.30777500015499 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/29,16.347191666836647 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/21,3.2355595949999945 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/09/21,3.1581527599999943 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/09,3.546882076923077 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/08,2.659058293269231 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/08,2.535749993269228 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/10,2.2822749499999992 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/10,2.417914849999998 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/02,20.59805833284333 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/02,20.257441665721675 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/24,3.297704500000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/11/24,2.734322250000001 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2022/12/26,7.733974999755005 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/02/04,22.14189166666668 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/04/10,11.76292499995249 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/04/02,22.19909999978501 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/04/01,14.95557500030501 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/04/01,14.161037499810009 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/09,10.282816669704175 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/09,10.316841669324171 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/11,8.291925003402488 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/11,8.16283333728332 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/31,3.102721827999998 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/31,3.097404406333333 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/26,3.98717562466666 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/06/04,7.400400002029984 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/06/04,7.762150001649982 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/28,15.007316669086675 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/27,19.955266668966665 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/05/27,24.31663333333334 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/06/22,3.105114997999996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/06,13.224958333118316 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/06,13.00518333311832 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/06/21,2.8252370807692317 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/05,2.8286750006174985 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/31,3.429500000000003 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/30,3.9422750001924936 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/30,5.374950000409992 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/23,3.842675713380837 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/22,4.863543958467497 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/07/22,4.736863654110829 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/06,3.663670450507496 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/06,3.464057573840829 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/01,2.7879121284783333 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/01,4.166900000119996 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/31,3.0917475999999997 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/31,3.08097485 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/23,2.6826703500000018 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/08/23,3.6896272999999953 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/03,7.201711371666664 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/03,9.253941666809176 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/28,15.089048153400803 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/03,2.5933436000000016 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/02,3.625389209999994 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/10/02,3.5524983099999927 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/09/25,2.5821096682692297 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/11/11,3.0337000000000067 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/11/03,4.231359719999993 -Big Moose Lake,15509692,-74.8482969668437,43.830704351883085,2023/11/03,2.254858874999999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/01/05,10.697191666451676 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/01/29,22.26459166666668 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/02/22,21.88613333333335 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/02/22,21.88613333333335 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/04/28,6.9921583405183325 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/05/06,4.515509099999994 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/06,4.122066051045117 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/06,4.124666051045116 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/07,14.431658333405812 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/05/29,6.934000000192507 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/05/29,7.067550000192506 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/05/22,3.450069350769225 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/07/08,4.873684101297504 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/07/08,4.929015160780836 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/22,3.182353048550829 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/22,7.055209105145 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/06/23,14.538033333413326 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/09,5.152788640409999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/09,5.3210727308450005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/10,5.006375000217493 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/03,5.784749992430017 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/25,6.389950005527499 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/08/25,5.5031250056 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/11,2.6739267803571427 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/02,12.314774999554992 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/02,3.453875000000005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/10/05,12.787850021884989 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/26,3.148276521666662 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/26,3.077701521666663 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/09/27,2.7333879615384613 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/05,2.4923686249999992 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/05,2.177533849999998 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/29,6.974274998835013 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/29,6.653524998190012 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/22,7.554424995625011 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2015/11/30,4.266437692307687 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/01/08,21.648191666666683 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/01/08,21.527391666666684 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/02/02,3.147988461538465 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/02/26,22.404625000000006 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/05,13.144879041582785 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/05,7.9729863049352705 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/03/29,6.34782499668501 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/07,3.357509871829172 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/07,3.8270201031916713 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/30,3.733331091666662 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/21,4.712009575438568 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/21,4.660159576966069 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/29,3.871364383333329 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/04/29,3.540931794999995 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/23,4.538354173689172 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/23,3.376884097498339 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/31,5.692285243268323 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/31,4.78221023912083 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/05/24,6.1504757568816695 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/03,3.6753454602899938 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/06/24,8.241324995667496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/06/24,6.723399995825007 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/11,14.633675000189976 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/06/25,3.352845461538456 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/11,7.131750005197502 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/11,7.183783338533333 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/04,3.190702274999998 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/26,3.939888660072496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/26,3.843638660072495 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/03,3.2484732249999984 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/03,2.6247108500000014 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/07/27,4.077749660256406 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/05,3.9865124807692256 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/27,12.57605416714168 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/27,12.977550000570009 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/04,3.789327249999996 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/04,4.352836349999995 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/08/28,6.893250000434998 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/10/07,3.214436994666664 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/28,3.1414650030724967 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/28,3.2166454550724977 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/21,3.3183595879999994 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/10/06,2.585856561538461 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/10/06,2.45105431153846 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/09/29,2.629585600000001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/08,3.2424525 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/10/23,3.5887009069999936 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/07,5.115310711538462 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/07,2.5813775682692306 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/12/10,7.673800416249183 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/23,3.043775000000005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/11/23,3.147825000145005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/01/11,20.847208333190856 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/01/02,22.47810000000001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/12/25,22.23560833333335 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2016/12/25,22.211958333333342 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/02/04,21.675758333333352 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/03/08,24.51653958378085 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/02/20,14.200408335585823 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/03/23,22.451158333333343 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/03/23,22.451158333333343 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/04/09,9.718349999762522 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/05/03,10.464890844108329 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/04/24,6.339484090217503 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/04/24,6.343250000217503 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/06/11,5.630820295424167 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/06/11,5.874445299976667 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/05,5.899261384050828 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/05,6.085837139919995 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/06/28,4.608595143076916 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/07,6.495912498502505 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/29,19.800625 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/29,19.899075 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/06,5.3900382730769225 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/06,4.029137880769224 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/07/30,2.7002662548076923 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/30,5.422441668989171 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/30,3.868525000524999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/08/23,4.758113256881664 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/10,14.33032083500585 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/01,3.0997551499999947 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/01,3.149094649999995 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/09/24,3.201579540217497 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/02,2.800945942307693 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/09/23,4.376703199999989 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/09/23,4.353903199999989 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/11/11,4.310291811999999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/11/10,3.2898692307692348 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/11/10,3.2519500000000026 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/25,6.154207789999991 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/10/25,2.6535912500000025 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/12/04,5.628680311460838 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2017/12/04,4.2332717257519015 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/01/05,22.539900000000006 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/03/26,20.92328333309586 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/05,8.429016671266655 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/05,6.378716666666657 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/29,13.50968334253333 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/29,13.129000006899998 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/05/30,7.928583339178334 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/07/09,3.936629599999992 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/06/30,16.400891666236657 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/06/30,16.51109166738665 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/07/08,5.233775386122496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/07/08,7.862581828101662 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/07/01,8.070350000144995 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/06/22,3.843811349999997 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/06/22,3.9179068249999967 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/10,3.3044643749999985 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/09,4.265606749999998 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/09,3.707008999999998 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/09/03,8.263854500000003 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/25,13.707331250385009 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/08/25,13.3993000002 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/10/05,2.5211925000000024 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/12/07,10.494183333333348 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/11/21,21.57322500000001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/12/08,21.67155833333335 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2018/11/22,3.0423750000000003 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/09,22.64890000000001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/09,22.64890000000001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/02,22.404625000000006 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/01,21.867666666666683 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/01/25,7.703625760406672 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/03/06,23.218616666666662 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/03/05,21.75304166666668 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/02/26,21.919450000000012 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/05/09,8.952474994430005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/04/23,6.57481099134667 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/05/08,6.748033337933327 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/05/08,8.835816675866655 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/04/22,2.503265399999999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/04/22,2.3697882999999997 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/10,13.16587499774 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/01,10.061412499687515 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/01,8.108722914476685 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/09,9.086344700065837 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/06/09,9.19001553263417 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/08/04,11.561572916856685 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/08/04,11.738168749905016 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/08/05,4.702552299999993 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/07/27,3.050052250000001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/07/27,7.891000000072499 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/05,3.9887947966666566 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/05,3.957769796666656 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/08/29,3.36411749666666 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/06,2.458841730769232 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/30,5.749799999265007 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/21,3.6979401466666606 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/21,3.60643787666666 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/10/08,2.879007261538458 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/29,7.442398490740818 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/09/29,7.461465157442485 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/11/08,4.5682749984650055 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/11/08,5.546575000200004 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/11/09,3.4257500000475023 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/12/03,15.02968710076333 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2019/11/25,4.950957366538454 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/02/05,22.34590833333334 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/03/08,22.308199999355008 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/02/21,22.137733333333344 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/04/01,4.2600419855769225 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/02,7.289161374999997 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/02,7.09255076833333 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/04/25,12.588508374853346 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/10,2.616602250000005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/10,2.610102250000005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/27,3.824063639999991 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/06/04,4.061006820625 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/26,3.9977749999999945 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/05/26,4.120600000072497 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/07/05,17.117966667676654 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/07/05,16.678758334253313 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/06/28,10.194329171271669 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/07/06,3.264349827472527 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/06,3.696877280072496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/06,3.656352280072496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/07/30,3.3151583417391635 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/07,2.6773360000000004 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/31,3.542370465869997 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/30,2.6907545000000037 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/30,3.1953750000000083 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/08/23,12.03842499999998 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/09,4.861584149999988 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/09,4.665804559999989 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/01,3.212111249999996 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/01,2.9489859999999983 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/09/24,4.878750000724997 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/11/10,4.308905466999995 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/11/10,4.320551680333329 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/25,7.691533339945832 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/10/25,4.396325000047504 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2020/12/29,2.98016802 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/01/29,10.91686666652418 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/01/29,10.441023333048356 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/02/06,21.848400000000016 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/02/06,21.867666666666683 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/01/30,21.856800000000018 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/03/11,9.601469166214187 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/03/02,22.674233333333337 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/03/02,22.663366666666672 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/04/03,9.145374999867498 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/04/03,9.119574999867496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/04/04,8.283009296606771 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/05/06,2.7803085 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/06/06,14.752387916524176 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/06/06,15.102129583190838 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/06/07,4.986150000047496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/05/29,12.37368333333332 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/05/29,12.35188333333332 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/06/23,3.047716173076923 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/02,3.188703035285001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/10,5.634475000547504 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/10,13.698012500555008 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/10,8.274470833360837 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/25,7.141659091570002 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/25,7.333834091570003 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/11,3.0170999499999995 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/08/26,3.078427250000003 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/26,6.89907198000833 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/09/26,6.9740594743983335 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/06,4.923809146047612 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/10/28,7.001949997545012 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/10/28,8.148524991065003 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/05,3.130699999999999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/05,3.117969230769228 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/10/29,3.0269160048076924 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/24,2.356602199999997 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/24,2.1135725999999964 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/21,2.483704350000002 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2021/11/21,2.308258725 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/01/08,21.919450000000012 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/02/26,12.558591666666668 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/02/26,22.23439166666668 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/03/30,22.26459166666668 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/04/06,5.214250001157496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/03/29,21.791766666666685 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/03/22,10.541574999810011 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/09,2.560530675000002 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/08,5.13745 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/08,5.389125 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/01,5.037175000264992 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/04/30,7.11285833943832 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/04/30,7.306625005987489 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/26,16.691158333733316 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/25,3.5216750000000063 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/24,8.752449993834999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/05/24,5.225340624589403 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/07/11,12.35039999999998 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/07/11,12.831358333405817 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/07/03,3.8758431999999927 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/07/03,3.2990212133333285 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/06/26,4.87222500052999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/06/25,2.983108925 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/06/25,3.076280087499999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/08/05,4.954075000144993 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/10,2.530141673333333 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/10,3.2242060573916635 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/08/29,3.2243724550000006 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/08/28,3.776977309999992 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/08/28,4.106812284999991 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/29,12.841308333333318 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/29,12.709333333118316 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/22,2.792854499999999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/21,4.190124999999991 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/09/21,4.045409100072491 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/10/31,7.326424987275005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/10/31,6.776841657886677 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/09,2.5735415668956048 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/08,2.484669175 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/08,2.233149849999999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/12/10,2.977845299999999 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/12/10,2.414470050000002 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/12/02,17.98332499995499 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/12/02,20.902841666606665 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/24,5.100925000384996 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2022/11/24,9.14087500024 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/02/04,22.22352500000001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/02/21,8.91315833431833 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/10,15.089835417371686 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/09,12.668933333238328 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/02,12.817399999737496 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/01,15.19929242357084 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/04/01,12.975559096153836 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/09,10.56587916991918 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/11,6.665275002492487 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/11,7.499125000192484 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/31,3.353627270144996 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/26,3.947150000072493 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/06/05,13.774300000357488 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/06/04,4.887847370613331 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/06/04,4.878381839562499 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/28,7.258883333955838 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/27,26.2878 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/05/27,25.053108333380838 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/06/22,3.398852270217493 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/06,4.767559100289994 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/06,3.946059100217491 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/31,10.67992179724429 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/30,7.913533342653315 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/30,7.218700004767477 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/23,4.258368199999991 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/22,4.031155313405823 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/07/22,4.119421213405825 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/06,4.220021218333326 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/06,4.189521218333323 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/01,2.723234858405833 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/01,3.804546972149162 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/08/31,3.722827249999997 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/08/31,4.1047272499999945 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/08/23,4.173050049999993 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/08/23,3.815974999999996 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/03,7.044213640000005 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/03,6.08166969840584 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/28,7.54589583196585 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/23,9.927337498720007 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/03,3.1564408500000014 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/02,3.134920390000001 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/10/02,2.717079450000002 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/09/25,3.1826991999999974 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/11/11,3.4955932001199987 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/11/03,3.141410325 -Eighth Lake,15509806,-74.7026928261701,43.77862140173964,2023/11/03,3.008240602499998 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/01/05,10.740675000890011 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/01/05,10.740675000890011 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/23,22.539900000000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/22,21.36779166666669 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/22,12.373549999999996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/23,22.539900000000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/22,21.36779166666669 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/02/22,12.373549999999996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/04/28,7.180908335513336 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/06,2.8422393450000016 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/04/28,7.180908335513336 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/06,2.8422393450000016 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/06,5.267345116834401 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/30,6.252099251560839 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/07,12.556883333333316 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/29,3.518511954999996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/29,3.545580154999996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/22,4.130675000142498 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/06,5.267345116834401 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/30,6.252099251560839 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/07,12.556883333333316 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/29,3.518511954999996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/29,3.545580154999996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/05/22,4.130675000142498 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/07/08,5.39909166883667 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/22,13.292366719566685 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/23,15.320449999984978 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/07/08,5.39909166883667 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/22,13.292366719566685 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/06/23,15.320449999984978 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/09,2.955953033333332 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/07/24,6.607137503555002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/10,3.514500000000008 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/01,2.256502249999999 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/01,3.316800000000008 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/09,2.955953033333332 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/07/24,6.607137503555002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/10,3.514500000000008 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/01,2.256502249999999 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/01,3.316800000000008 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/03,8.10721874862752 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/25,3.0400427897435907 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/11,2.847925000000004 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/02,12.632011365072506 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/02,11.135419230841729 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/03,8.10721874862752 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/08/25,3.0400427897435907 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/11,2.847925000000004 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/02,12.632011365072506 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/02,11.135419230841729 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/10/05,10.939658349338336 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/26,11.818675020749993 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/27,2.780338043269229 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/10/05,10.939658349338336 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/26,11.818675020749993 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/09/27,2.780338043269229 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/05,8.128150001617483 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/05,8.55717500142498 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/05,8.128150001617483 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/05,8.55717500142498 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/29,3.974722863739164 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/22,3.430076676282046 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/30,13.131958333533328 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/29,3.974722863739164 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/22,3.430076676282046 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2015/11/30,13.131958333533328 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/03/05,10.663224999785006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/03/05,10.663224999785006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/05,12.05133667344916 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/05,12.05133667344916 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/07,7.057885421511665 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/30,3.4411638237391644 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/21,4.496430678052495 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/29,3.238234549999996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/29,3.1936481749999968 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/07,7.057885421511665 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/30,3.4411638237391644 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/21,4.496430678052495 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/29,3.238234549999996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/04/29,3.1936481749999968 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/23,12.587845838035843 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/31,3.976075002907496 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/31,4.885512506367496 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/24,3.915550000000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/23,12.587845838035843 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/31,3.976075002907496 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/31,4.885512506367496 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/05/24,3.915550000000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/06/24,8.707624997102497 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/11,4.022436349999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/02,2.686679500000003 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/02,3.560650000000008 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/06/25,4.193250491025635 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/06/24,8.707624997102497 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/11,4.022436349999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/02,2.686679500000003 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/02,3.560650000000008 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/06/25,4.193250491025635 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/11,7.588815146956671 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/04,2.5770356066666653 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/26,4.038250002612503 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/03,2.9616772500475013 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/03,2.9244022500475007 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/27,2.7774044999999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/11,7.588815146956671 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/04,2.5770356066666653 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/26,4.038250002612503 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/03,2.9616772500475013 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/03,2.9244022500475007 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/07/27,2.7774044999999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/05,3.4826682399999966 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/27,2.353781820000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/04,3.106109099999997 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/04,2.8355249999999965 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/28,5.083816667101665 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/05,3.4826682399999966 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/27,2.353781820000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/04,3.106109099999997 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/04,2.8355249999999965 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/08/28,5.083816667101665 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/07,4.278155356120112 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/28,3.2773506264058296 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/21,2.6703432000000014 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/06,2.7868099182692294 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/06,2.8532871682692296 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/29,4.021929499999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/07,4.278155356120112 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/28,3.2773506264058296 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/21,2.6703432000000014 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/06,2.7868099182692294 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/06,2.8532871682692296 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/09/29,4.021929499999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/08,4.643141669986667 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/23,3.728368313811665 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/07,3.109018754807692 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/07,3.213580254807693 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/08,4.643141669986667 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/10/23,3.728368313811665 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/07,3.109018754807692 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/07,3.213580254807693 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/10,9.344666533457769 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/09,3.3341000000000105 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/23,3.557488499999999 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/23,3.744809 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/10,9.344666533457769 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/09,3.3341000000000105 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/23,3.557488499999999 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/11/23,3.744809 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/01/02,22.539900000000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/25,10.344541666571676 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/01/02,22.539900000000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2016/12/25,10.344541666571676 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/03/08,15.119309851694164 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/02/20,14.997674999905009 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/03/08,15.119309851694164 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/02/20,14.997674999905009 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/03/23,21.179198333285854 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/04/09,20.869923335543348 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/03/23,21.179198333285854 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/04/09,20.869923335543348 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/04/24,8.108187506900014 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/04/24,8.108187506900014 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/11,15.863924999999997 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/03,9.25498864211501 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/03,10.194029921815837 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/11,15.863924999999997 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/03,9.25498864211501 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/03,10.194029921815837 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/05,2.637752250000005 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/05,2.652802250000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/28,4.606925000072494 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/05,2.637752250000005 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/05,2.652802250000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/06/28,4.606925000072494 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/07,8.5509733904436 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/29,15.257108356333331 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/06,6.878750000290001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/06,2.573431750000003 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/30,3.004736791895604 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/07,8.5509733904436 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/29,15.257108356333331 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/06,6.878750000290001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/06,2.573431750000003 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/07/30,3.004736791895604 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/08,6.49450840423333 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/30,3.576687877174161 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/23,6.25810229321 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/22,2.380775000000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/22,3.5759795000000025 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/08,6.49450840423333 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/30,3.576687877174161 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/23,6.25810229321 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/22,2.380775000000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/08/22,3.5759795000000025 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/10,3.9720388907135695 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/01,5.4504207541025576 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/24,3.630632573405828 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/02,2.732890980769229 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/23,3.6099913749999946 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/23,3.457834055 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/10,3.9720388907135695 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/01,5.4504207541025576 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/24,3.630632573405828 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/02,2.732890980769229 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/23,3.6099913749999946 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/09/23,3.457834055 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/11,4.730500806047612 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/10,3.235025000000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/10,5.117175 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/25,6.982825001472484 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/25,10.601625000832485 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/11,4.730500806047612 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/10,3.235025000000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/11/10,5.117175 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/25,6.982825001472484 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/10/25,10.601625000832485 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2017/12/04,4.109338214050716 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/01/05,22.47810000000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/01/06,21.791766666666685 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/03/26,21.265948333285856 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/05/05,3.435431829999997 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/05/05,3.424024979999998 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/04/28,2.546677250047497 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/05/29,13.918683347228349 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/07/09,4.078434199999993 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/07/08,5.320550000889996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/07/08,7.45272500074499 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/07/01,5.668654499999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/06/22,2.780846625000002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/06/22,2.493429500000002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/08/10,3.519165085164832 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/08/09,10.69430833367083 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/08/09,10.817833333670828 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/09/03,2.495225000000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/10/05,4.923325000289994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/12/07,5.688574997160006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/12/08,13.587974999707503 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2018/11/22,3.4806567500725 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/02/09,11.757974999124997 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/01/25,12.651566667019168 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/03/05,22.115583333333348 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/02/26,21.75304166666668 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/05/09,4.244605340902739 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/04/23,3.1071091005949985 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/05/08,4.3498500002875 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/05/08,4.426625000119999 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/04/22,2.49563229230769 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/04/22,2.393405104807691 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/09,2.8540136 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/09,2.874586274999999 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/07/03,3.375718200434997 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/26,2.423471221740832 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/25,2.3348522500000035 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/06/25,3.4114500000000008 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/08/05,2.7434726059981696 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/07/27,3.736130000072493 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/07/27,3.569980000072492 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/05,3.82191970666666 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/08/29,3.795120404487179 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/06,3.1397947932692296 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/21,2.6892075783333342 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/10/08,2.87489226153846 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/29,4.839025000192502 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/09/29,4.457665909999999 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/11/08,8.063524176734159 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/11/09,3.241449999999998 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/12/03,12.027285222541462 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2019/11/25,5.081512201923069 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/02/05,22.451158333333343 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/02/21,22.476608333333346 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/04/01,22.82094999985752 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/02,9.197512509200015 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/04/25,6.993116674171668 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/10,2.8863317500000005 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/10,3.1914317500000027 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/03,2.5605618999999984 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/27,8.796533340805839 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/06/04,5.562200002540007 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/26,5.155200000434993 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/05/26,12.846708333118322 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/07/05,3.953425000072494 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/06/28,3.545994161379165 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/07/06,3.956643952152009 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/08/06,3.3368992634058285 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/07/30,3.110656820072498 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/08/07,4.289127979487177 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/08/31,3.5157325834783277 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/08/23,2.856904655769233 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/10/09,5.236466565714279 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/09/23,12.622854170419188 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/10/10,14.432600002019994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/11/10,4.709064449380947 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/11/03,5.820799998665008 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/10/25,10.849490833165824 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2020/12/29,2.9370913199999986 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/01/29,23.02285 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/01/30,21.838800000000013 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/03/02,22.137733333333344 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/04/03,9.98953333323833 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/04/04,4.416274999999999 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/05/06,2.4972797750000013 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/04/27,20.440224999955 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/04/27,13.953083333118313 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/06/07,3.509025000000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/05/29,3.841100000167499 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/05/29,3.219325000192498 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/06/23,2.77406968076923 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/08/02,6.104752501015002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/07/24,11.3347000009975 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/08/10,4.7615554423076825 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/07/25,2.48230225 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/09/03,3.439414125235831 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/08/25,4.876233335188331 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/09/11,2.803354500000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/08/26,5.247852289999992 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/11/06,9.272400635714275 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/10/28,5.165986377514994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/10/29,2.9721668207417564 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/11/24,2.93059166826923 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/11/21,2.3387214750000003 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2021/11/21,3.620870961538456 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/01/08,21.867666666666683 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/01/24,21.75304166666668 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/02/26,22.169733333333344 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/03/29,21.66638333333335 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/03/22,4.449856134615383 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/09,2.479545130000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/08,3.9577289633333272 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/08,3.876198488333328 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/01,9.234075000692483 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/04/30,4.590625002300001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/04/30,3.8245250000000017 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/31,13.33237499988 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/25,2.7627772500000027 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/24,14.508541669181657 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/05/24,12.036125000887484 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/06/29,16.352741666236646 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/07/11,9.02351488190986 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/07/11,5.336731548906543 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/07/03,4.242775002752498 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/07/03,4.772575005314995 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/06/26,21.32645833473834 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/06/25,2.623902175 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/06/25,2.633749925 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/10,3.1912742416666617 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/08/24,7.3320666576716755 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/08/29,2.4806249999999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/08/28,2.5463586250000025 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/08/28,2.517158625000002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/22,4.658285829775838 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/29,3.154925000000007 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/29,3.205825000000009 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/22,2.607393020000002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/21,4.020572724999994 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/09/21,3.78494773 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/10/31,11.46582500654 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/10/26,5.723399990910014 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/09,3.2075019230769226 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/08,2.169102099999998 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/08,2.198061074999998 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/12/10,4.784025792307695 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/12/10,2.0843225749999963 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/24,5.081575000192496 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2022/11/24,3.478425000000006 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/02/04,22.25651666666668 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/10,16.13472500062 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/09,14.899197916834185 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/09,17.237809089715 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/02,13.157441666524171 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/01,14.113099999857509 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/04/01,13.566474999857505 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/09,19.538895837480847 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/11,6.826135606666671 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/11,5.063885606666666 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/31,8.690579540119998 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/26,3.649619706739161 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/06/04,4.428585233858334 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/06/04,5.171926903014996 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/28,7.296625000647505 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/27,25.448950000095 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/05/27,25.448391666666662 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/06/22,7.016339995545009 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/06,3.2983522500000024 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/06,3.305402250000004 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/06/21,4.641654019230771 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/31,6.444228330986727 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/30,3.9238250001449937 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/30,3.051502250000002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/23,3.6687007133333354 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/22,5.513673112740829 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/07/22,3.919104171491664 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/06,7.0560750002174935 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/01,3.356193190072495 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/01,4.380959753846144 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/08/31,2.7154271000000016 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/08/31,2.621013475000002 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/08/23,3.4811431999999964 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/08/23,3.370393199999997 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/10/03,17.367658347133343 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/28,9.365945832288356 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/10/03,2.662023850000001 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/10/02,4.077850000145003 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/10/02,4.913785606884165 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/09/25,2.9984145592032974 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/11/03,2.4168187803571417 -Little Moose Lake,15509928,-74.92195721958889,43.69102256615327,2023/11/03,2.1560656999999974 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2014/12/26,8.297873370458337 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2014/12/27,13.55511818004748 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2014/12/26,8.297873370458337 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2014/12/27,13.55511818004748 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/04/02,12.815250000242504 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/04/02,12.815250000242504 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/03,4.670562046332505 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/04,7.495908335633325 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/03,4.670562046332505 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/04,7.495908335633325 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/28,9.385399998217498 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/05/28,9.385399998217498 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/07,9.269879549191652 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/07,9.269879549191652 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/08/07,8.281256665796683 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/31,8.594076136985006 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/22,11.747244999927505 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/23,3.5224936153846165 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/08/07,8.281256665796683 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/31,8.594076136985006 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/22,11.747244999927505 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/07/23,3.5224936153846165 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/08,10.10201837328333 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/01,16.740191692291685 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/09,3.409152250047504 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/08,10.10201837328333 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/01,16.740191692291685 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/09/09,3.409152250047504 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/10,12.236441665924156 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/11,10.73647575666666 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/10,12.236441665924156 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/11,10.73647575666666 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/11/04,13.318766529350276 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/26,12.352915811839436 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/11/04,13.318766529350276 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/10/26,12.352915811839436 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/12/06,6.625774995380011 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2015/12/06,6.625774995380011 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/01/07,9.23164809389945 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/01/07,9.23164809389945 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/03/27,7.777266671709162 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/03/27,7.777266671709162 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/04/28,19.75418333396584 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/04/28,19.75418333396584 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/06/07,2.3614272500000038 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/06/07,2.3614272500000038 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/06/22,9.000150000015008 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/07/09,7.552725000554995 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/06/22,9.000150000015008 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/07/09,7.552725000554995 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/09,10.272699999617512 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/02,7.826385003365 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/10,4.689987747692299 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/09,10.272699999617512 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/02,7.826385003365 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/10,4.689987747692299 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/03,9.338844444444446 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/11,17.004625000189993 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/26,3.439550000000001 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/03,9.338844444444446 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/11,17.004625000189993 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/08/26,3.439550000000001 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/10/05,22.52221333342835 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/27,22.790341669156657 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/10/05,22.52221333342835 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2016/09/27,22.790341669156657 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/01/01,6.839663392051276 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/01/01,6.839663392051276 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/10,7.640274999977513 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/02,22.689058333333342 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/10,7.640274999977513 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/02,22.689058333333342 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/05,10.517892392727498 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/26,6.18512499604001 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/06,6.869070835835827 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/05,10.517892392727498 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/02/26,6.18512499604001 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/06,6.869070835835827 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/22,7.346909090289996 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/03/22,7.346909090289996 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/05/09,12.508179500144983 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/04/23,13.707625000095009 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/05/09,12.508179500144983 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/04/23,13.707625000095009 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/06/02,7.289212494980012 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/06/02,7.289212494980012 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/07/04,10.764806249855 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/06/26,2.3315249999999987 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/07/04,10.764806249855 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/06/26,2.3315249999999987 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/08/29,17.820325004409998 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/08/29,17.820325004409998 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/09/22,16.895875000544997 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/09/30,4.551344296153838 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/09/22,16.895875000544997 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/09/30,4.551344296153838 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/10/24,10.283295853128331 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/10/24,10.283295853128331 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/12/03,23.95450833793332 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2017/12/27,11.75503958606335 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/04/02,7.694725451539163 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/03/25,7.603524180512814 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/05/28,7.199850000047499 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/07/07,15.141158333333344 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/06/21,5.82562501109501 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/06/29,5.810775000902495 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/07/31,9.661000000072503 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/08/24,13.183896527872768 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/09/01,12.204900000247497 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/11/04,4.3771390280566616 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2018/12/06,3.12000000000001 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/01/31,11.758474999762504 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/03/04,22.26459166666668 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/02/24,11.9401250004275 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/06/08,5.209660613623335 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/05/31,12.883649999849997 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/07/10,4.15633182249 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/08/11,21.215795832185844 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/07/26,11.123020833405803 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/08/03,8.080075000452506 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2019/09/28,13.198450001809997 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/01/02,12.639992367341105 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/04/07,7.782658085755241 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/03/22,7.679549751206115 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/06/26,14.069608363423354 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/07/04,2.8683750000000003 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/07/28,3.192631068840829 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/08/29,6.853899996885011 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/09/06,13.442083333428329 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/09/22,20.03637500016749 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/11/09,3.415653883974357 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2020/12/03,10.399786670799166 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/01/28,21.75304166666668 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/04/10,10.896554168471674 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/04/02,3.9766091099999943 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/04/26,12.17481876144001 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/06/05,19.052562499999997 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/06/29,4.940189997999997 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/07/07,5.031650000072491 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/07/31,8.620558347448327 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/07/23,2.623675000000002 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/08/24,6.818607731999992 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/09/25,12.951908333570833 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/11/04,10.62826666541418 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/11/07,13.311225000095009 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2021/10/27,13.841917423380805 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/02/24,9.656016666666682 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/03/28,4.57892499997001 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/04/05,2.714575000000002 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/03/28,6.356898384358966 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/05/07,18.124133333380826 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/04/29,9.288490911666662 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/10,4.8868333403758335 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/05,3.912924999999993 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/05/24,15.187720833475828 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/08,2.460125000000001 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/05/23,6.678549999999999 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/09,3.5937571075808967 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/27,5.20749613556083 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/22,6.87601668070167 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/10,2.72766379 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/02,5.193883333428333 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/06/24,3.5011831999999954 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/31,8.088987502470008 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/26,3.8681568258449976 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/08/11,4.701938649999995 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/08/03,4.033888679999993 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/07/26,5.536495110256401 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/08/29,20.567515833428335 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/08/27,14.419883333333315 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/10/02,6.26442499691501 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/11/10,3.4732166805074987 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/10/24,8.427646865714282 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/11/07,3.291252540769229 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/10/30,5.475380461999989 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/10/22,3.8439363099999992 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/11/22,9.384068762080004 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/12/01,9.544449160607828 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2022/11/23,4.236691930769223 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/02/08,7.049799997990013 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/03/07,8.88117010307692 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/04/08,12.51445625033248 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/04/27,8.054438654684997 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/05/10,3.351800000434997 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/04/24,6.632800000674995 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/06/03,18.989045833285832 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/05/26,3.32446096474359 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/07/05,9.779018179999994 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/07/24,17.993725000214994 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/08/06,9.207615146666662 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/09/11,6.741824997990011 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/08/22,3.770145673076923 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/10/08,3.5626833336183377 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/10/01,7.744051368000002 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/11/10,18.626366666666662 -Honeoye Lake,15538831,-77.51161075804161,42.75436772629984,2023/11/26,12.03347499844 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2014/12/26,10.166463748752498 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2014/12/27,4.650511370131662 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2014/12/26,10.166463748752498 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2014/12/27,4.650511370131662 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/05,9.71926666666668 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/05,9.71926666666668 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/28,22.34590833333334 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/20,21.75304166666668 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/28,22.34590833333334 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/02/20,21.75304166666668 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/04/09,17.96755833418333 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/04/09,17.96755833418333 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/03,9.03644754561 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/11,10.47422916737917 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/04,11.302123513394998 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/03,9.03644754561 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/11,10.47422916737917 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/04,11.302123513394998 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/28,19.838375000095024 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/06/05,19.191135607663355 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/05/28,19.838375000095024 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/06/05,19.191135607663355 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/07,20.55494999999998 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/07,20.55494999999998 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/08/07,18.30046666542168 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/31,9.450875005394984 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/22,9.064141665756678 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/30,2.9086818249999964 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/23,7.674611111681113 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/08/07,18.30046666542168 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/31,9.450875005394984 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/22,9.064141665756678 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/30,2.9086818249999964 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/07/23,7.674611111681113 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/08,10.25526500133001 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/01,16.650933333665822 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/09,9.362400000652498 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/08/31,2.6976500000000003 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/08,10.25526500133001 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/01,16.650933333665822 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/09,9.362400000652498 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/08/31,2.6976500000000003 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/10,6.066206709192619 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/24,6.037500006840003 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/11,6.451439541999992 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/10,6.066206709192619 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/09/24,6.037500006840003 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/11,6.451439541999992 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/11/04,6.479602265000002 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/26,5.877463635072502 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/11/03,7.813569121999985 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/11/04,6.479602265000002 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/10/26,5.877463635072502 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2015/11/03,7.813569121999985 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/01/07,7.75714842632944 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/01/06,5.63845893935897 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/01/07,7.75714842632944 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/01/06,5.63845893935897 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/02/07,4.914265318666666 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/02/07,4.914265318666666 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/03/27,9.998363635645012 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/03/26,12.08428636229999 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/03/27,9.998363635645012 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/03/26,12.08428636229999 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/04/28,3.717760709983213 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/04/27,11.927884095511676 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/04/28,3.717760709983213 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/04/27,11.927884095511676 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/07,3.316358202948716 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/07,3.316358202948716 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/22,7.872999996340005 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/23,8.985250000167495 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/22,7.872999996340005 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/06/23,8.985250000167495 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/09,6.354870828823339 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/02,15.1881124998925 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/07/24,18.746549999755 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/10,2.766425000000004 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/07/25,11.71787499848 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/09,6.354870828823339 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/02,15.1881124998925 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/07/24,18.746549999755 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/10,2.766425000000004 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/07/25,11.71787499848 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/10,2.497953182688334 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/03,4.973838630217493 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/11,3.433834099999995 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/02,3.915648675384612 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/26,2.6984250000000047 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/10,2.497953182688334 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/03,4.973838630217493 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/11,3.433834099999995 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/02,3.915648675384612 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/08/26,2.6984250000000047 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/10/05,2.6665287867391667 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/26,5.968899997330007 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/10/04,4.232178330769226 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/27,4.165086379999994 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/10/05,2.6665287867391667 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/26,5.968899997330007 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/10/04,4.232178330769226 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/09/27,4.165086379999994 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/12/07,3.64823794230769 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2016/12/07,3.64823794230769 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/01/01,7.18989883358974 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/01/01,7.18989883358974 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/10,8.078149999270009 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/09,4.515737078846146 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/02,2.944025000000005 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/10,8.078149999270009 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/09,4.515737078846146 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/02,2.944025000000005 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/05,8.821618090906941 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/26,23.64040833333333 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/05,8.821618090906941 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/02/26,23.64040833333333 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/29,12.114287501335 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/22,7.71129861230769 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/29,12.114287501335 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/03/22,7.71129861230769 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/05/09,12.911860001730012 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/04/30,16.568083333405838 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/04/23,16.306025002822498 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/05/09,12.911860001730012 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/04/30,16.568083333405838 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/04/23,16.306025002822498 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/09,4.388026848773217 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/02,6.599564130601907 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/01,6.371655686328319 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/09,4.388026848773217 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/02,6.599564130601907 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/01,6.371655686328319 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/07/11,8.73537499902001 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/07/04,3.996152270362499 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/26,4.1744682999999965 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/07/11,8.73537499902001 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/07/04,3.996152270362499 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/06/26,4.1744682999999965 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/08/05,3.0021809379999995 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/08/05,3.0021809379999995 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/08/29,7.228875001477502 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/08/29,7.228875001477502 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/29,7.036641660051674 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/30,3.685931750119999 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/21,3.0505250000724926 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/29,7.036641660051674 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/30,3.685931750119999 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/09/21,3.0505250000724926 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/11/08,9.810602269999992 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/11/08,9.810602269999992 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/12/03,20.714745848510816 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/11/24,9.407761369999989 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/01/03,12.575233338258348 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/12/27,8.453700009949994 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2017/12/26,15.269450004744977 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/02/05,13.360541666404169 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/02/28,4.363800006929165 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/02/21,23.081675000000004 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/04/09,5.016195832078341 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/04/02,11.637275098152504 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/03/24,9.773603813782506 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/03/25,6.224113686153843 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/05/28,2.6864795000000017 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/07/07,15.049800025300016 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/06/21,9.02737284615274 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/06/29,16.297216702389193 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/07/31,5.921978330841724 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/08/31,4.565733336418333 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/08/24,4.982275003697503 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/09/01,4.524875000144994 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/08/23,7.44987500021751 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/10/10,3.248700941999997 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/09/24,13.68596668168919 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/11/11,3.604425000000008 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2018/11/04,6.072682587961665 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/01/06,6.095030437290002 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/03/11,8.507058332668356 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/02/24,12.73380000000001 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/03/27,9.132883335633329 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/05/06,7.655275373980836 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/06/08,5.575850000142506 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/06/07,4.496091614043328 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/05/31,13.183683335468343 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/07/10,3.606852270289997 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/07/09,20.603000000189997 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/06/23,8.213924999624998 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/08/11,5.530050001372502 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/07/26,3.991229167169172 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/08/10,8.821437748373333 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/08/03,8.151141668091658 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/07/25,5.309400000144993 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/09/03,18.99595000018752 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/08/26,20.050975003497538 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/10/05,7.243391666739182 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/10/06,4.771200000767495 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/09/27,6.266081820000002 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/10/29,8.505474999999988 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2019/11/30,5.984804170924159 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/01/02,8.6867873643186 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/03/05,11.996542425633328 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/04/07,6.724875001342508 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/03/22,7.9372277787802705 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/04/06,13.755753783333308 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/05/25,12.10137506447249 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/06/09,2.7425795799999992 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/05/24,15.789091666756688 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/06/26,3.8619333369566617 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/07/11,3.0368250000000017 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/07/04,5.461683333670833 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/06/25,4.373112757692304 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/07/28,4.218627269999992 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/08/05,4.112285504871789 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/09/06,17.755174999999987 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/09/22,24.060199999999988 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/11/09,5.92113938666666 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/12/03,8.952040838848333 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2020/12/11,6.725155687807496 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/01/28,13.470133333613326 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/02/20,21.75304166666668 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/04/09,9.061066666749175 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/04/02,3.99596666666666 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/04/26,6.276253031309166 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/05/11,2.549954500000002 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/05/04,5.137634854994997 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/06/05,17.67154999999998 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/06/29,4.2938500003575015 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/07/07,9.816819231106727 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/06/28,8.613941676271667 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/08/08,13.200416666739171 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/07/23,7.161159109999995 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/09/09,2.994118447115385 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/08/31,5.680603638072497 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/08/24,3.829486389999992 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/10/11,4.755600002169996 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/10/02,2.966990969999998 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/11/04,7.804960416426685 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/11/07,14.006100000332497 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/11/03,3.354925000000006 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2021/10/27,13.553424999984983 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/01/07,10.546758333333347 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/01/06,4.685277498461531 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/03/03,13.835041666571662 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/03/28,14.480720830558337 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/04/05,6.479516792307691 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/05/07,19.22378333361334 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/04/29,10.9858250193625 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/04/28,9.257224999892514 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/05,3.5265621357974943 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/05/24,13.302425000142504 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/05/30,5.538868279972501 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/05/23,5.129759100047491 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/09,3.0148969666666634 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/27,7.555379162186671 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/22,6.908048335923338 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/10,6.4097358974358976 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/09,13.028393760942508 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/02,3.057102309999998 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/24,4.261606749999999 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/06/23,5.462808333405833 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/31,14.16636249852501 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/07/26,15.494524998924996 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/08/11,3.284365430769228 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/08/03,3.869744696739165 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/08/29,3.084296971739162 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/09/03,13.036024999999997 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/08/27,4.747195430000001 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/02,5.98769999409001 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/05,5.100712231999994 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/10,10.883632595280826 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/05,9.730216665736682 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/24,10.51588777238094 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/07,5.615396311999993 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/06,3.758765761538457 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/30,2.9107506282051263 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/29,4.766854579999993 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/10/22,5.021000901999994 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/22,13.157427101528334 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/12/01,4.110015594230762 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2022/11/23,23.19800001610001 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/01/09,3.888925305769226 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/02/08,13.86966666666666 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/02/03,12.838241666666674 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/03/07,4.473701591153838 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/02/26,4.774168933846143 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/10,9.889175000722506 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/08,14.3741533208167 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/07,5.359109195082499 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/27,9.877958333573345 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/05/10,5.619903026714172 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/05/09,19.91961666628169 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/04/24,11.131746480841723 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/06/10,11.530112498812509 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/06/03,17.962933333500835 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/06/02,10.954441668139156 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/05/26,5.725016666761672 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/05/25,12.3159250016225 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/07/05,7.673443180047496 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/07/04,22.27234166828168 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/06/27,2.326525 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/07/24,8.423600000795 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/08/06,3.552340909999996 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/07/28,5.896394459510953 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/11,3.9225117990109855 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/06,3.4453067500000003 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/08/30,3.522352250000004 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/08/29,7.7157000012074946 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/08/22,2.754525000000005 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/10/08,3.5884212104099986 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/21,3.5155242468116588 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/10/09,5.921557176923069 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/10/01,4.363431820072495 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/30,3.394322909999996 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/09/22,7.575335003492496 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/11/01,5.50791061688416 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/10/24,17.79117499975501 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/11/26,9.79632500016748 -Hemlock Lake,15538833,-77.60908660870261,42.72572259906789,2023/11/25,23.35102500009249 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2014/12/26,6.810974996470011 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2014/12/27,4.219030461999997 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/02/05,22.47810000000001 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/02/28,22.34590833333334 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/04/01,10.667116665591674 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/04/02,10.078900004599989 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/05/03,10.658138003664169 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/05/04,15.283343343683352 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/05/28,9.060258349235834 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/06/05,5.762001147213327 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/06,9.125608333578356 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/07,21.080554166666644 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/08/07,9.561819167094182 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/22,7.747062500235006 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/30,5.408787904277499 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/07/23,6.613800000047504 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/09/08,13.357350416286677 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/09/01,5.389604167001675 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/09/09,3.880424999999991 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/08/31,8.116750000144995 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/10/10,5.436536404380944 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/09/24,9.412512499499998 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/10/11,3.260603647435892 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/11/04,7.659486354999996 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/10/26,6.195560608405828 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/11/03,3.0114135666666657 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2015/12/06,6.485424997975009 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/01/07,9.909451528227766 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/01/06,5.437775490384606 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/02/07,18.351866673566647 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/03/27,6.639996980995836 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/04/28,8.858345835075838 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/06/07,3.179475 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/06/22,5.897099992815006 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/09,7.146191665711668 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/02,6.524056823047505 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/07/24,10.903049999237492 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/10,3.852172488717944 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/01,3.1566500000000066 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/07/25,17.109074999554988 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/10,11.641332499715018 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/03,4.457711360217491 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/11,4.4338894384615335 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/02,12.538125000072482 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/08/26,4.333326146410249 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/10/05,3.1551916584058306 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/26,7.996366655661667 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/10/04,5.185954120256403 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2016/09/27,3.8812273999999936 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/01/01,2.949677250000006 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/02/10,22.090908333333346 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/02/09,22.373083333333344 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/02/02,21.268550000000022 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/03/05,13.596905841970838 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/02/26,23.317533333333326 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/03/30,6.58937499711501 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/03/22,13.176991666389164 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/05/09,11.904300000047495 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/04/30,20.529043749215017 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/04/23,13.624700002347502 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/09,12.396683334805832 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/02,5.040850831923333 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/01,4.732577249999991 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/07/04,4.289021213788335 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/25,6.250799993415009 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/07/03,2.595506749999998 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/06/26,3.910865909999993 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/08/29,3.112834091522501 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/09/29,8.269249987764997 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/09/22,9.875125001282504 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/09/30,8.334525001182493 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/09/21,10.515216668081647 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/12/03,9.36442106140582 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/11/24,4.246922948666666 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2017/12/27,7.504762518882502 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/02/21,11.092641666666664 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/04/09,6.842991664384165 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/04/02,7.398775055344996 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/03/24,8.162499186409168 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/03/25,10.52675600051282 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/05/28,2.623504499999996 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/07/07,2.5092113399999985 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/06/21,4.910808343350836 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/06/29,3.77899924666666 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/07/31,2.6659750000000035 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/08/31,13.09759166808917 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/08/24,3.89400000082 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/09/01,2.9816022500475 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/10/10,5.318522769999991 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/09/24,12.891564775629988 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/11/11,5.111350000434993 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2018/11/04,6.953700391728329 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/01/31,12.123875000047503 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/02/24,13.122988256619166 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/05/06,6.364679552372492 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/06/08,4.845700002632502 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/06/07,25.68502500058001 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/05/31,9.34853333391333 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/07/10,2.3093750011174987 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/07/09,14.68482500007249 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/06/23,11.281212506204994 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/08/11,8.131658338740829 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/07/26,2.876475000720001 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/08/10,3.1288272500000063 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/08/03,6.97964167028167 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/07/25,18.655691666284174 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/09/04,2.7154250000000046 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/08/26,4.434199999999995 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/10/06,3.142201060769226 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/09/27,4.04887425166666 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/10/29,3.7614548107692274 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2019/11/30,6.458804170449155 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/01/02,17.115564449566925 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/03/05,6.496698621999991 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/04/07,9.759060416436668 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/03/22,8.682356066013323 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/05/25,6.42322499995 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/06/09,4.039872730072502 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/05/24,12.344112508975025 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/06/26,5.62353560963583 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/07/11,8.173200000937495 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/07/04,3.11405893 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/06/25,3.840675000000001 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/07/28,4.11986817999999 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/08/05,3.6828249999999954 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/09/06,13.634350000405009 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/09/22,16.990591666739178 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/11/09,3.071094311538461 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/10/31,4.656258200072496 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/12/03,11.366275309481658 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2020/12/11,21.54156250240001 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/02/05,20.07072291915669 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/04/02,4.418256258666662 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/04/26,6.424644700113333 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/05/11,2.440254500000003 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/05/04,8.218045079736665 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/06/05,17.321033333405822 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/06/29,11.586879166524186 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/07/07,5.149825000624997 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/06/28,5.600786667911675 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/07/31,8.881520879258337 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/08/08,16.986050000187493 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/07/23,18.81881667136166 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/09/09,3.401305376923075 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/08/31,2.673952250000006 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/08/24,8.666640155775843 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/10/11,5.647990540809996 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/10/02,6.1192477300725 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/11/04,7.194874999977517 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/11/07,13.915200002585005 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2021/10/27,9.892425000217496 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/01/06,20.16255833335084 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/02/24,10.080983333333348 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/03/28,7.378026266712498 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/04/05,14.384116666866651 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/05/07,15.483449999997513 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/04/29,7.703074999040002 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/04/28,11.76771458204584 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/10,2.6410250010224985 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/05,4.20514317999999 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/05/24,11.560408333380838 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/08,3.309034000000001 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/05/30,20.29800833333085 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/05/23,2.9522067500000007 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/09,3.5984431799999936 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/22,4.113825002129999 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/10,3.037920286538461 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/09,8.131266666976675 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/02,4.256352270144994 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/06/24,3.1162886899999984 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/26,20.337774999999983 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/08/11,3.5000331307692267 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/08/03,3.275422730652498 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/07/25,4.519792055563331 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/08/29,2.894059105072499 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/08/27,5.2692295 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/02,8.118674993235006 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/11/10,4.007832844102561 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/24,8.413528685714281 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/11/07,2.8314953499999973 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/30,3.6069759666666656 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/29,3.5002068300725018 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/10/22,5.854606918739162 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/11/22,10.381420850013336 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/12/01,4.3980544788461495 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2022/11/23,8.391686976405824 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/02/08,6.585124992555008 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/03/07,3.214581897435894 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/04/08,14.81418819582192 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/04/27,9.183163645665008 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/05/10,21.143858335965845 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/04/24,8.568052250144994 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/06/10,17.99972460036585 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/06/03,18.46083144396668 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/06/02,10.970224999572494 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/05/26,2.766178370769229 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/07/05,2.742700000000002 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/07/04,4.253524999999991 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/07/24,4.103187729012497 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/08/06,3.801146223333325 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/07/28,8.124800003289995 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/09/11,4.158294533470124 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/09/06,12.316116666666645 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/08/29,2.9744500000000045 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/08/22,3.680923069102556 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/08,3.630833333403341 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/09,2.7611522500000065 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/08,12.52038333311832 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/01,4.194099999999993 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/09/30,3.522625000000001 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/09/22,13.51046668053918 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/11/01,3.609944884615385 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/10/24,18.31148333373334 -Canadice Lake,15538847,-77.5688492452005,42.7183438611844,2023/11/26,20.328716667411665 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/26,13.888409556094173 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/27,20.336450004599996 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/27,4.50747124666666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/26,13.888409556094173 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/27,20.336450004599996 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2014/12/27,4.50747124666666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/01/27,22.47810000000001 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/01/27,22.47810000000001 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/02/28,22.30574166666668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/02/28,22.30574166666668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/01,22.29679999935501 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/09,7.62099999412 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/01,22.29679999935501 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/09,7.62099999412 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/03,6.057100001997503 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/11,17.134666666666657 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/04,4.974106822299999 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/04,20.726816689094196 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/25,6.334512727999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/03,6.057100001997503 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/11,17.134666666666657 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/04,4.974106822299999 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/04,20.726816689094196 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/04/25,6.334512727999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/28,6.479625001697503 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/27,17.64405416659666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/28,6.479625001697503 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/05/27,17.64405416659666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/06/29,8.577635417274184 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/07,11.9340000006275 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/07,8.918725000435005 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/06/29,8.577635417274184 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/07,11.9340000006275 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/07,8.918725000435005 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/07,10.147760036824993 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/31,13.26307500014251 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/22,5.6200400786116695 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/30,3.932681819999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/23,3.136352250047501 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/23,5.102434100047493 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/07,10.147760036824993 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/31,13.26307500014251 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/22,5.6200400786116695 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/30,3.932681819999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/23,3.136352250047501 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/07/23,5.102434100047493 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/08,14.04122500987499 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/01,17.337035010170027 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/09,2.536125000047498 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/09,2.510450000047498 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/31,19.451341666761675 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/24,13.797608333333342 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/24,13.025374999857512 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/08,14.04122500987499 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/01,17.337035010170027 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/09,2.536125000047498 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/09,2.510450000047498 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/31,19.451341666761675 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/24,13.797608333333342 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/08/24,13.025374999857512 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/10,9.03842709858583 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/24,7.211545878080833 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/11,17.18439291728415 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/11,21.75586166685668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/25,16.836520833478342 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/25,18.31848750016752 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/10,9.03842709858583 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/24,7.211545878080833 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/11,17.18439291728415 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/11,21.75586166685668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/25,16.836520833478342 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/09/25,18.31848750016752 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/11/04,19.46205835197083 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/26,20.588687502494984 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/11/03,10.79088638999999 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/11/04,19.46205835197083 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/10/26,20.588687502494984 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/11/03,10.79088638999999 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/12/06,19.110154167616667 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2015/12/06,19.110154167616667 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/01/07,9.811025005292503 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/01/06,10.631094455384607 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/01/07,9.811025005292503 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/01/06,10.631094455384607 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/02/07,18.92891666666669 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/02/07,18.92891666666669 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/02,7.89317499971001 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/02,7.89317499971001 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/04/03,4.775924999970009 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/27,15.327602912700012 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/26,4.963713659999997 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/04/03,4.775924999970009 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/27,15.327602912700012 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/03/26,4.963713659999997 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/05/06,5.605625002047491 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/05/06,5.335887503162496 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/04/27,5.019170469999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/05/06,5.605625002047491 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/05/06,5.335887503162496 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/04/27,5.019170469999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/07,3.522975000000008 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/07,3.1934750000000025 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/07,3.522975000000008 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/07,3.1934750000000025 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/22,5.851324999570008 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/06/22,5.851324999570008 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/09,7.676575010362502 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/02,9.74277291707666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/07/24,8.631996241537488 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/10,15.387966676666649 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/10,12.77968408999998 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/09,7.676575010362502 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/02,9.74277291707666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/07/24,8.631996241537488 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/10,15.387966676666649 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/10,12.77968408999998 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/10,11.31847340324583 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/03,12.646556813405825 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/25,8.144649985694992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/11,16.69446818999997 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/11,10.037308488666664 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/02,3.094650000000002 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/26,10.04735833340584 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/26,11.092783333453331 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/10,11.31847340324583 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/03,12.646556813405825 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/25,8.144649985694992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/11,16.69446818999997 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/11,10.037308488666664 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/02,3.094650000000002 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/26,10.04735833340584 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/08/26,11.092783333453331 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/10/05,4.541872031047615 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/26,20.656149999087503 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/27,7.178376367999991 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/27,8.040949999999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/10/05,4.541872031047615 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/26,20.656149999087503 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/27,7.178376367999991 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2016/09/27,8.040949999999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/02/02,21.791766666666685 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/02/02,21.791766666666685 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/05,8.700439174254164 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/05,8.700439174254164 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/29,8.183545833833332 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/22,5.375428035679157 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/29,8.183545833833332 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/03/22,5.375428035679157 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/08,4.246328166712736 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/09,2.619966906666667 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/09,3.957894006666665 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/30,20.13479583340585 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/23,10.862262873333318 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/23,11.803681063333316 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/08,4.246328166712736 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/09,2.619966906666667 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/05/09,3.957894006666665 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/30,20.13479583340585 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/23,10.862262873333318 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/04/23,11.803681063333316 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/09,5.610610825183337 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/02,3.854602299999991 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/10,10.603101667984143 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/10,6.815104551937501 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/01,3.533912561538461 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/09,5.610610825183337 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/02,3.854602299999991 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/10,10.603101667984143 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/10,6.815104551937501 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/01,3.533912561538461 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/07/11,5.140917428550832 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/25,27.41561250110252 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/07/03,12.085012499974985 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/26,6.601336359999989 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/26,3.4578704799999973 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/07/11,5.140917428550832 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/25,27.41561250110252 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/07/03,12.085012499974985 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/26,6.601336359999989 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/06/26,3.4578704799999973 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/30,11.460500231282037 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/30,10.224571910512823 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/21,15.5607250001675 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/30,11.460500231282037 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/30,10.224571910512823 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/09/21,15.5607250001675 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/11/08,5.4619838027692245 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/11/08,5.4619838027692245 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/12/03,13.918016669061666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/12/03,3.5162213566666645 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2017/11/24,9.750536359999993 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/02/05,21.75304166666668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/02/05,21.791766666666685 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/02/28,17.165611364842484 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/04/02,9.294508334915829 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/04/01,14.348502084303355 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/04/26,3.977395450217496 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/04/26,5.022034856666655 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/05,6.38464999128001 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/05/27,11.454041666474156 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/04,5.470520154474164 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/05/28,6.74335000385 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/05/28,10.8633750185675 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/07/07,7.587379398119998 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/21,3.143341666581671 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/07/06,2.7830750000000046 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/29,19.791391684946667 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/06/29,10.394266667279163 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/07/31,6.455575000192497 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/07/31,5.773775001424999 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/08/31,17.815666249999996 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/08/24,15.25557083340581 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/09/01,5.96135728087667 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/09/01,6.301861754101664 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/08/23,14.55254166671417 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/10/10,8.22350227999999 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/09/24,16.014375013560006 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/11/04,6.361266406673212 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2018/11/04,6.005540546154999 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/01/31,22.447608333333346 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/03/03,21.791766666666685 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/02/24,23.96396666666665 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/03/27,11.803526270122491 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/04/04,7.701054167051671 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/05/06,4.413687727999996 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/06/08,6.150975000145013 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/06/07,14.559983351733354 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/05/31,16.63115833769333 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/05/31,13.771800004170007 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/07/01,13.862414768810002 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/07/09,12.64431041645417 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/06/23,16.28543334497584 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/02,10.013945861245828 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/07/26,8.410074998692524 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/10,18.03473334019085 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/03,10.882673112933334 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/03,10.757609170979164 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/07/25,13.700837507905 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/09/11,7.880304170249154 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/09/04,3.748934250769228 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/09/04,7.602201050769237 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/08/26,8.572631441116664 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/10/05,21.433625000000028 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/10/06,4.691950000000005 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/09/27,21.608025006900004 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/11/06,21.88374168736668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/10/29,8.754818179999985 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/11/22,3.5587166638741694 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/11/23,18.410995836133345 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2019/11/23,19.067825000399992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/01/09,11.26175833333334 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/01/02,10.589550007874998 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/04/07,12.363437501492506 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/03/22,14.888158340760832 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/04/06,8.096234089999989 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/04/22,8.544650002517495 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/10,5.964862502822493 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/01,5.527924232798448 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/05/25,9.537874999999996 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/09,3.746987128333328 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/05/24,7.823251576914996 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/03,16.29677500002249 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/26,4.388869120072492 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/11,9.034025021929995 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/04,3.014633999999999 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/04,2.937156749999998 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/06/25,4.753350000724995 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/07/28,10.046541667429178 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/08/05,21.573020005217494 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/08/05,15.049868180047472 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/05,8.14397041927418 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/08/29,7.309499999649994 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/06,11.96313333333332 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/30,12.485053913738335 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/21,8.859570453333333 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/22,17.96075833307083 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/09/22,18.26950833333332 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/11/08,22.869725016479983 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/10/23,13.725295833433314 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/11/09,15.797176513333293 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/11/09,3.752268450769229 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/10/31,4.723093199999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/12/03,9.082891672556672 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/12/11,5.104022729999996 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/12/11,4.299590909999995 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2020/12/02,5.694551923076916 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/02/05,22.34590833333334 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/01/28,21.88613333333335 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/01/28,21.66638333333335 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/04/01,12.03611502694249 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/03/25,9.859626678316904 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/04/02,4.059484099999995 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/04/02,5.084122799999998 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/04/26,9.086855300000003 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/05/11,3.397279500000006 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/04,7.557067423478344 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/05,6.527091675914173 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/05,4.297600000145 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/05/27,5.213327250072493 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/29,14.821039998955008 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/06/28,5.029160609273334 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/07,15.441283336063345 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/07/31,12.35424166992918 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/07/22,7.196685832003348 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/08,9.94590000009499 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/08,3.261550000000002 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/07/23,18.69281666671416 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/07/23,7.663275000047515 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/31,8.84825833359833 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/24,11.409068750309986 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/08/24,12.524837083593328 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/10/10,6.3497249953800114 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/10/02,17.459716666879164 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/11/04,6.543908324720848 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/11/07,8.921574236666663 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/11/03,4.067166812307689 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/11/02,4.082569924615382 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/10/27,2.811152250000006 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2021/10/27,2.831925000000006 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/01/07,12.093999999984998 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/01/07,12.173624999985 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/01/06,8.099904949933594 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/01/30,22.14189166666668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/03/03,22.47810000000001 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/03/03,22.14189166666668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/02/24,22.29457500000001 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/02/24,22.14189166666668 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/04,3.747275000022511 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/05,2.736452250000005 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/05,3.362902250000006 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/04,3.3025750000000067 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/07,18.320458333533324 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/07,18.035054166866654 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/04/28,11.910750003307507 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/10,10.036920834773332 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/05,3.036071229565831 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/05,5.918817428840835 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/24,18.24541250460002 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/30,7.283250001034989 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/23,4.698034100072496 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/05/23,5.227759100072491 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/09,9.7379162501425 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/09,9.104691250142505 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/27,18.17476666685669 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/10,20.571291669061644 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/10,15.886983333380815 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/09,7.929203054259172 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/02,19.160375002157483 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/02,13.435853033824156 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/01,8.482585872664057 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/24,12.554568179999992 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/24,8.219313660000001 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/06/23,11.1468000055275 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/26,10.22472916654666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/11,14.297718180047474 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/11,14.991677270047472 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/10,8.243611340072498 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/03,12.216958335200834 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/03,9.562254170756663 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/02,2.5865250000000013 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/07/25,12.732630254499163 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/29,24.598941669014184 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/27,11.654177250000002 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/08/27,11.389874999999986 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/07,6.872474993875011 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/05,6.340155476999995 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/10,11.453809860914166 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/05,12.450666668686672 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/05,9.425250001765002 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/24,5.95704546 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/07,11.680026506739155 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/07,12.235919686739148 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/29,9.756481016739167 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/22,10.349942416666666 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/10/22,2.6186429499999986 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/22,9.39076000474499 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/22,10.50449792063916 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/12/01,6.7117033836372375 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/12/01,5.92983660140205 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/23,5.2260874585897374 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2022/11/23,5.78158432135455 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/01/09,4.705937896153838 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/02/03,22.337341666666678 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/03/07,7.624060057948714 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/03/07,10.506658449116856 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/02/26,5.190128019487171 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/10,14.819350002300016 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/08,31.079533340233347 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/08,12.253285603380816 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/07,7.16999166898166 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/03/30,4.192909730769225 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/02,15.518677361206104 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/04/27,6.014221441249166 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/10,20.454258333333332 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/10,23.504183333333334 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/09,5.188340079510838 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/10,14.065945833500828 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/24,10.703004170764189 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/10,5.212761435979169 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/03,15.298366670116682 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/03,12.395050006367514 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/02,16.581000000262474 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/26,3.4179397307692265 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/26,2.7536149007692297 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/05/25,5.328701267593217 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/05,3.8143453751925 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/05,3.7590362501925023 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/04,4.61311250236 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/06/26,19.086670834598337 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/24,18.913302083333317 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/24,21.18154791673916 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/06,10.25512575671418 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/06,15.2376111111111 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/07/28,20.313283333333334 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/09/11,3.6080925803333286 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/30,9.434992674615382 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/30,9.28009702615384 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/29,4.404427963333334 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/22,14.625174999984976 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/08/22,17.867812499954997 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/08,8.850483222600822 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/08,10.337918754597492 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/09/21,14.579237504862473 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/01,8.270241666666674 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/01,16.71545833361833 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/09/30,17.194680833333333 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/09/22,20.85708333338083 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/10/24,3.127281750000002 -Silver Lake,15548613,-78.03287406408758,42.69405154831357,2023/11/25,6.19114556853988 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2014/12/27,11.893458338550827 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2014/12/27,11.893458338550827 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/02/06,21.31009166666669 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/02/06,21.31009166666669 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/04/26,9.483730047257506 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/04,13.110763272336664 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/04/26,9.483730047257506 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/04,13.110763272336664 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/06/06,7.742912512352502 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/28,9.79766666711668 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/29,18.74810833399837 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/06/06,7.742912512352502 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/28,9.79766666711668 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/05/29,18.74810833399837 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/08,13.23616666695167 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/06/22,12.29299167986417 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/07,3.4456750000000023 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/08,13.23616666695167 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/06/22,12.29299167986417 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/07,3.4456750000000023 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/08/09,14.686975000000004 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/31,8.113647920851662 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/24,12.250952084000849 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/08/01,8.356322922554169 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/23,21.929299999380035 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/08/09,14.686975000000004 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/31,8.113647920851662 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/24,12.250952084000849 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/08/01,8.356322922554169 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/07/23,21.929299999380035 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/02,3.6544045000000023 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/02,3.6544045000000023 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/26,9.960041665804177 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/10/11,14.90685000009501 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/10/04,20.93803750103754 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/25,11.245708717484176 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/26,9.960041665804177 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/10/11,14.90685000009501 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/10/04,20.93803750103754 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/09/25,11.245708717484176 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/11/04,13.608775001877495 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/11/04,13.608775001877495 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/11/29,3.698778046409168 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2015/11/29,3.698778046409168 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/02/01,8.172949998065013 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/01/24,21.88613333333335 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/02/01,8.172949998065013 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/01/24,21.88613333333335 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/05,9.721781251332496 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/03/27,5.260162493310002 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/05,9.721781251332496 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/03/27,5.260162493310002 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/07,9.69443750193001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/28,6.422024993230009 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/21,15.35802499825249 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/07,9.69443750193001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/28,6.422024993230009 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/04/21,15.35802499825249 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/23,7.514777089043329 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/07,8.175125758525835 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/31,8.807770839160833 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/23,7.514777089043329 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/07,8.175125758525835 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/05/31,8.807770839160833 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/24,12.77475000725751 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/07/02,9.34465796765416 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/23,25.95255000116001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/24,12.77475000725751 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/07/02,9.34465796765416 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/06/23,25.95255000116001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/11,10.900933340468333 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/02,8.69880211394583 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/07/26,16.387311369600013 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/10,2.9835250000000024 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/03,12.070380833370823 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/11,10.900933340468333 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/02,8.69880211394583 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/07/26,16.387311369600013 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/10,2.9835250000000024 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/03,12.070380833370823 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/03,13.656991673589186 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/27,7.51029542432916 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/11,10.670095833570835 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/04,10.967845835823333 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/26,14.038950000000009 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/03,13.656991673589186 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/27,7.51029542432916 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/11,10.670095833570835 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/04,10.967845835823333 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/08/26,14.038950000000009 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/10/05,12.250220833428347 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/28,11.856891667359177 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/10/06,15.765650000000036 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/27,15.029083333333352 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/10/05,12.250220833428347 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/28,11.856891667359177 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/10/06,15.765650000000036 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/09/27,15.029083333333352 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/11/07,16.613175000047505 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/11/07,16.613175000047505 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/12/08,8.789441666464182 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/12/09,8.684149997174998 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/12/08,8.789441666464182 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2016/12/09,8.684149997174998 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/01/02,23.365949999999994 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/01/01,12.50615833333333 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/01/02,23.365949999999994 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/01/01,12.50615833333333 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/08,13.188175025044998 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/03/23,9.61980833558583 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/03/22,3.7385341298076953 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/08,13.188175025044998 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/03/23,9.61980833558583 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/03/22,3.7385341298076953 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/24,14.057024997884987 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/23,16.012662769999974 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/24,14.057024997884987 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/04/23,16.012662769999974 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/11,8.93006669605917 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/02,7.798991667176682 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/03,14.269037502855 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/11,8.93006669605917 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/02,7.798991667176682 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/06/03,14.269037502855 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/04,9.011093764334992 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/05,14.036525000237514 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/04,9.011093764334992 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/05,14.036525000237514 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/05,15.590306250237536 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/29,24.103131250140017 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/06,12.515208333428337 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/28,16.63406250014001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/05,15.590306250237536 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/29,24.103131250140017 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/06,12.515208333428337 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/07/28,16.63406250014001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/30,13.876556251437512 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/22,21.200175000337524 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/30,13.876556251437512 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/08/22,21.200175000337524 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/08,8.8191136400475 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/01,9.275572403807494 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/09/22,7.293606261109996 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/09/23,15.30020000009501 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/08,8.8191136400475 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/01,9.275572403807494 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/09/22,7.293606261109996 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/09/23,15.30020000009501 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/24,8.651581249455012 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/11/10,3.929357415384613 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/25,13.47580833350086 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/24,8.651581249455012 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/11/10,3.929357415384613 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2017/10/25,13.47580833350086 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/01/05,22.47810000000001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/04/02,15.557775139677515 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/04/10,3.2498500000000075 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/06/05,6.026149995807514 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/05/29,10.604329168909176 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/05/28,8.469380684045 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/07/07,14.564879167404186 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/06/30,12.998772506437511 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/06/21,10.95577708899834 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/07/08,12.072031250630012 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/06/29,16.18908333629836 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/08/09,22.969143749447504 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/08/24,18.71440834138085 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/09/01,12.96466168383667 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/08/25,16.57834810862334 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/11/04,4.294041692779998 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2018/12/07,10.11286666666668 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/03/05,21.750616666666684 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/04/30,6.619940850783338 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/05/08,15.925983351375857 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/06/08,17.721860606666677 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/06/01,6.397470826853351 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/06/09,5.584302884666663 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/05/31,19.743791666591672 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/07/10,8.555967916011666 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/07/03,9.593585412439165 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/06/25,8.77090734205128 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/08/11,20.35844166692421 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/08/04,13.53886875124002 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/07/26,18.589364586270836 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/08/03,11.431877085080846 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/07/27,13.557283333333348 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/09/05,15.433772918724197 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/09/28,14.912606250810011 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/09/21,11.533747919059168 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/09/29,13.1590250003375 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/10/23,11.163369183286669 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2019/11/23,21.014300000140015 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/04/07,11.269733334475829 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/03/22,26.800000011522503 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/05/02,8.348673361515834 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/04/23,9.956625001964987 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/05/25,6.966970826040846 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/05/26,25.21572500512248 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/07/05,16.966780833143336 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/06/26,8.255245861555835 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/07/04,8.143414289569279 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/08/06,15.45923750973501 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/07/28,10.407149998965002 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/08/05,13.433506252307502 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/07/29,2.471374999999997 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/08/30,10.66817728 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/10/09,10.597162508544995 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/10/01,13.703400000072516 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/09/22,15.540247919844155 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/11/10,14.931339583633324 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/10/25,10.353372918871669 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2020/11/09,18.94227575910915 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/02/06,21.77184999973752 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/04/10,12.600612530447489 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/04/03,14.54660000230749 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/03/25,13.92190833302834 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/04/02,16.065966669836676 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/04/26,10.0966124947525 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/06/29,10.347320835145842 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/07/07,12.126866666666666 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/08/08,15.639195833595842 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/07/23,17.094383333808356 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/09/10,10.249341674391664 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/08/25,12.358356262787508 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/09/02,8.007350000047497 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/08/24,12.216741669659166 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/09/26,9.7143875076175 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/10/11,11.17784375043 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/09/25,14.364525000167507 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/10/28,11.35478585421584 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/11/05,24.834941666809183 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2021/11/24,11.98289128307692 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/01/07,22.47810000000001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/02/01,22.451158333333343 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/03/04,11.282841666651672 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/03/29,4.880806037179481 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/03/28,4.050333446153838 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/05/08,22.948883340375826 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/05/07,5.107652657070832 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/04/30,20.76977500546501 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/04/29,7.628831083552501 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/04/22,3.370125000000003 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/05,20.905376668966667 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/08,2.542325000000005 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/05/24,14.429041666784167 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/09,16.757470839250846 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/04,13.651900006252518 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/22,13.39877500358001 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/11,14.540333335010846 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/10,14.866750002442512 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/03,13.3734249997375 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/02,11.462550768016682 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/25,11.372814166834178 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/06/24,17.147345078786685 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/11,3.3837714807692327 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/03,13.18050000841249 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/07/26,4.951308335350825 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/09/10,14.931266671451676 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/29,17.979566672476675 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/24,11.986760417829183 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/28,14.797020836398378 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/08/27,12.034420459999994 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/10/02,17.46540416543168 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/10/06,19.589593750590037 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/09/29,3.143675000000002 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/09/21,10.054202084435826 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/11/08,12.6242750003325 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/11/07,16.420233333190854 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/10/23,11.268265567942493 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/10/22,16.271658334915863 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/11/22,8.414779166974185 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/12/10,10.307797987435883 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2022/11/24,3.0968250000000035 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/02/03,10.618100000000013 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/03/07,13.631479167816677 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/04/09,26.562025000475025 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/04/08,25.1720166687992 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/04/01,32.4437333380283 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/09,9.818360416334173 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/04/27,14.985266666219175 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/11,25.40009167356668 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/10,12.103518476275944 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/06/05,6.1941249993775065 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/31,14.423315013572507 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/06/04,7.415981673434166 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/06/03,11.558636666844174 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/27,10.152404184501664 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/05/26,8.347492827260835 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/06,18.23172291690416 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/05,12.585372916714157 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/06/27,7.853543942791674 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/24,9.254595831310862 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/08/07,14.53501666685666 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/08/06,8.109041686079166 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/30,13.185070833333336 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/07/22,8.139710610200837 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/09/06,10.062462498895004 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/08/31,11.527012502752498 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/08/22,13.936525002300009 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/10/08,7.260690878550839 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/10/03,9.497333349848333 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/10/02,12.530108333285831 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/10/01,14.186750002062482 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/11,3.644000000000008 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/10,26.199200004599984 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/03,15.610100000474995 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/02,14.80650000225252 -Lake Neatahwanta,21971978,-76.43714497062815,43.30811755160254,2023/11/26,17.108208379428344 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2014/12/27,3.3726779307692256 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2014/12/27,3.3726779307692256 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/02/05,9.86362499967751 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/01/28,7.468653619607933 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/02/05,9.86362499967751 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/01/28,7.468653619607933 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/03/25,22.156224999570007 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/04/02,13.133225019194995 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/03/25,22.156224999570007 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/04/02,13.133225019194995 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/05/04,3.7303545000000025 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/05/04,3.7303545000000025 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/05/28,17.728616666951666 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/06/05,19.78975000016752 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/05/28,17.728616666951666 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/06/05,19.78975000016752 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/07,13.823475004720017 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/07,13.823475004720017 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/31,4.614766516405823 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/23,7.084872730289998 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/31,4.614766516405823 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/07/23,7.084872730289998 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/09/01,6.3144500239024985 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/09/01,6.3144500239024985 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/10/11,3.537240427435897 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/10/11,3.537240427435897 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/11/04,7.462303672380949 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/11/04,7.462303672380949 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/12/06,10.461312500465011 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/12/06,10.461312500465011 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/01/07,10.045904285761788 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/12/30,7.073831948461532 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/01/07,10.045904285761788 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2015/12/30,7.073831948461532 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/03/27,8.231302083098324 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/03/27,8.231302083098324 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/06/07,3.696934 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/06/07,3.696934 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/02,3.028269697101665 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/10,4.461902430256402 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/02,3.028269697101665 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/10,4.461902430256402 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/03,4.222168933550828 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/11,6.307793600000001 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/26,3.743963923846155 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/03,4.222168933550828 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/11,6.307793600000001 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/08/26,3.743963923846155 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/10/05,6.339206709047615 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/27,5.327845479999992 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/10/05,6.339206709047615 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/09/27,5.327845479999992 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/11/06,2.989916666034171 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2016/11/06,2.989916666034171 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/01/01,6.982619720695962 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/01/01,6.982619720695962 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/10,6.194770829498349 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/02,2.6107817500000023 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/10,6.194770829498349 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/02,2.6107817500000023 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/26,24.44116666666665 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/02/26,24.44116666666665 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/03/22,4.959198446153836 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/03/22,4.959198446153836 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/05/09,8.455788640264997 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/04/23,6.883121282307685 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/05/09,8.455788640264997 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/04/23,6.883121282307685 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/06/02,4.444149873579886 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/06/10,2.7160750000000053 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/06/02,4.444149873579886 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/06/10,2.7160750000000053 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/07/04,4.009976531884165 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/07/04,4.009976531884165 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/08/29,14.197008341578336 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/08/29,14.197008341578336 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/09/22,13.79647250119752 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/09/22,13.79647250119752 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/10/24,3.386372491152497 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/10/24,3.386372491152497 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/12/03,10.826375004647508 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2017/12/27,11.638139590805832 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/01/28,12.837858222380923 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/04/02,4.752116668009171 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/04/10,2.7677522500000054 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/03/25,7.705134615384599 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/05/28,8.110325000379992 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/07/07,3.48965302876833 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/06/21,8.436325038645 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/06/29,5.916145474798335 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/08/24,1.88815000038 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/09/01,6.000025000359996 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/11/04,8.768451521620838 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2018/12/06,3.6864377988461503 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/01/31,8.551629174126663 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/02/24,23.96396666666665 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/06/08,4.623433333500834 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/05/31,9.116950000217496 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/07/10,4.768403256714169 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/08/11,5.420225000664996 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/07/26,3.988434846979168 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/08/03,5.430100003012501 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/09/04,3.607900000000007 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/09/28,7.318404168311666 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/11/23,19.993116667019176 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/01/02,8.080652015809282 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2019/12/25,21.638841668426668 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/04/07,4.432069163771669 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/03/22,4.283172730000001 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/05/25,6.428808333548333 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/06/26,7.104328582831066 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/07/04,5.301401100769227 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/07/28,5.139675000382502 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/08/05,2.6433022500000023 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/10/08,6.357975001539988 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/09/22,5.558734100530001 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/11/09,3.32144706813187 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2020/12/03,9.13168319277943 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/02/05,14.31618750140502 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/01/28,6.319461191585954 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/02/21,4.217900000000001 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/04/10,10.277360421609169 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/04/02,3.1162886899999998 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/04/26,5.954386367442505 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/05/04,2.926075000000005 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/06/05,13.755200000200007 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/06/29,8.662887492092509 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/07/31,5.682552500047507 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/08/08,8.662250759130831 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/07/23,3.5185000000000035 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/09/09,4.062451407692302 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/08/24,8.935574999999995 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/10/11,5.546525000382494 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/09/25,10.29073750012249 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/11/07,14.7963727032383 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2021/10/27,3.530185392307692 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/01/31,6.90776772217204 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/02/24,6.750549998850009 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/03/04,7.82095286294127 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/02/24,5.022502181538453 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/03/28,18.484316666851647 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/05/07,15.722449999999997 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/04/29,3.682221981739167 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/10,4.256823531931901 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/05,3.338189408405829 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/05/24,6.001233334045839 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/08,5.65980910014499 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/09,3.631327270145 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/27,6.767683339463329 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/10,13.799954167261667 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/02,3.435675000000005 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/06/24,2.4112022499999988 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/26,5.129408336230835 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/08/11,3.792156819999997 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/08/03,3.636066832307685 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/07/26,3.4619294999999983 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/08/29,4.260890910264998 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/08/27,3.0775249999999987 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/10/02,5.962449994320008 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/11/10,4.224919230769232 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/11/07,2.80675225 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/10/30,4.0801015172466615 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/10/22,4.079440358653844 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/11/22,11.88892501719 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/12/01,6.991261121538454 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/11/23,3.734438679999998 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2022/12/25,5.76101666764416 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/02/08,8.140724998850015 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/02/03,4.756499999985002 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/02/03,13.366933333333334 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/02/20,10.32045337233084 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/03/07,4.169137957307686 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/04/08,4.548249431730764 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/04/27,10.243354166474166 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/05/10,15.286283343683344 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/05/02,7.286025000289998 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/04/24,4.720977249999993 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/06/03,4.608338575050002 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/05/26,2.938050094999996 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/07/05,9.645961333333338 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/07/24,5.818540000167501 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/08/06,4.135558761217943 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/08/30,3.233254500000001 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/08/22,3.6097750000000057 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/10/08,6.432624997975009 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/10/01,4.907577259999994 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/11/10,12.892775000199991 -Canandaigua Lake,21980955,-77.304832451172,42.778012598072046,2023/11/26,2.8943022500000044 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/01/05,8.125707578514167 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2014/12/27,9.213650221932504 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/01/05,8.125707578514167 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2014/12/27,9.213650221932504 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/02/22,22.689058333333342 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/02/22,22.689058333333342 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/05/04,5.467151234699165 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/05/04,5.467151234699165 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/06/06,26.53650834962335 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/05/29,21.18635833235336 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/06/06,26.53650834962335 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/05/29,21.18635833235336 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/06/22,10.929212120000004 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/07,5.510278797748339 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/06/22,10.929212120000004 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/07,5.510278797748339 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/09,9.59733485000001 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/31,12.265930300094986 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/24,6.694967426739166 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/01,14.212227782757768 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/23,7.650114805506669 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/09,9.59733485000001 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/31,12.265930300094986 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/24,6.694967426739166 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/01,14.212227782757768 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/07/23,7.650114805506669 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/25,3.83837708358084 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/09,16.767850002299998 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/02,14.689555610680838 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/08/25,3.83837708358084 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/09,16.767850002299998 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/02,14.689555610680838 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/26,11.85306666676168 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/10/11,14.526801515728325 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/10/04,22.600187500184983 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/09/26,11.85306666676168 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/10/11,14.526801515728325 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/10/04,22.600187500184983 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/04,25.607918342723348 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/04,25.607918342723348 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/29,9.827434788364442 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/21,13.070175000072474 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/29,9.827434788364442 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/11/21,13.070175000072474 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/01/07,9.465343755592505 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/12/30,10.50741319639194 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/01/07,9.465343755592505 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2015/12/30,10.50741319639194 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/02/09,14.658895834680836 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/02/09,14.658895834680836 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/03/03,12.106942961538454 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/03/03,12.106942961538454 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/05,10.35158708478583 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/03/27,11.721554655435837 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/05,10.35158708478583 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/03/27,11.721554655435837 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/07,16.629774999289975 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/28,5.108023885654166 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/21,11.274265849328334 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/07,16.629774999289975 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/28,5.108023885654166 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/04/21,11.274265849328334 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/23,11.872875000569984 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/07,14.837828035411656 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/31,11.393558333333331 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/23,11.872875000569984 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/07,14.837828035411656 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/05/31,11.393558333333331 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/24,22.741190417146655 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/07/09,3.107502250000004 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/07/02,9.734608333333329 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/23,6.053785606570837 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/24,22.741190417146655 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/07/09,3.107502250000004 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/07/02,9.734608333333329 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/06/23,6.053785606570837 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/11,10.934764583838328 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/02,19.110633335590823 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/10,5.810305769230762 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/03,2.9027022500000017 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/11,10.934764583838328 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/02,19.110633335590823 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/10,5.810305769230762 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/03,2.9027022500000017 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/03,24.93303333333337 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/27,22.67585227342833 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/11,11.78593335429083 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/04,12.642191666666667 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/26,8.955308333698325 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/03,24.93303333333337 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/27,22.67585227342833 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/11,11.78593335429083 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/04,12.642191666666667 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/08/26,8.955308333698325 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/10/05,8.155091666666666 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/28,18.024377275633345 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/10/06,14.177323496666638 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/27,8.552086369999992 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/10/05,8.155091666666666 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/28,18.024377275633345 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/10/06,14.177323496666638 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/09/27,8.552086369999992 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/11/06,6.1763249940300105 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/11/07,21.24199167145668 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/11/06,6.1763249940300105 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/11/07,21.24199167145668 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/12/08,8.73415832730584 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2016/12/08,8.73415832730584 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/01/02,23.208250000000003 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/01/01,11.911288638270005 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/01/02,23.208250000000003 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/01/01,11.911288638270005 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/02/19,18.31330000211501 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/02/27,11.287700000237496 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/02/19,18.31330000211501 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/02/27,11.287700000237496 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/08,7.4935125033349905 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/03/23,10.6093225001425 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/03/22,10.698378320959227 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/08,7.4935125033349905 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/03/23,10.6093225001425 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/03/22,10.698378320959227 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/24,8.243370417314154 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/23,19.74230833342832 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/24,8.243370417314154 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/04/23,19.74230833342832 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/11,18.196129166666665 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/10,7.535237500667498 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/03,19.23419167185915 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/11,18.196129166666665 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/10,7.535237500667498 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/03,19.23419167185915 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/04,7.628371682629164 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/05,20.474025002964986 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/26,8.090625000902492 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/04,7.628371682629164 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/05,20.474025002964986 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/06/26,8.090625000902492 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/29,15.369791666666668 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/08/06,13.515599999999989 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/07/29,15.369791666666668 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/08/06,13.515599999999989 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/08/30,19.85414166671417 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/07,5.632678310769234 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/08/30,19.85414166671417 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/07,5.632678310769234 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/08,13.170380420186662 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/01,14.541958335155842 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/22,5.499101823472504 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/23,26.85706000690003 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/08,13.170380420186662 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/01,14.541958335155842 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/22,5.499101823472504 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/09/23,26.85706000690003 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/24,13.448603670822486 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/11/10,14.124925010634994 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/25,34.004250000094984 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/24,13.448603670822486 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/11/10,14.124925010634994 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/10/25,34.004250000094984 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/12/04,5.994445828803349 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/12/03,10.064129174460824 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2017/12/28,23.96060833333333 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/02/06,22.529033333333334 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/02/05,22.69252500000001 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/04/02,5.329299999245007 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/03/26,10.021235424859164 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/03/25,12.019952780885264 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/05/05,6.600405308526672 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/05/29,12.085665153428344 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/05/28,6.530875013946666 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/07/07,25.026220000000013 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/06/30,22.608933338028347 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/06/21,5.443304164276669 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/07/08,24.4361750120225 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/06/29,12.583087500332486 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/06/22,13.54346666743167 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/08/09,11.880525000642486 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/08/24,19.58593214295213 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/09/01,13.154550000525012 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/08/25,20.33532499931003 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/11/04,3.114106750000002 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2018/12/07,8.245708361803326 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/02/01,11.190358333718336 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/03/04,22.348225000000006 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/03/05,21.75304166666668 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/04/30,6.055374996655007 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/05/08,16.70352500459999 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/06/08,14.556600006230015 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/06/01,8.730577499002518 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/06/09,4.841851550932501 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/05/31,18.492283332213347 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/07/10,9.42660416686667 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/07/03,5.010890915940001 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/06/25,3.322852310072496 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/08/11,13.73871249952501 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/08/04,20.201629166379185 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/07/26,16.304586666856654 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/08/03,22.112270833380823 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/07/27,8.335458333380833 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/09/05,9.227928030000005 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/09/04,5.719670843259996 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/09/28,12.961022083473326 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/09/21,26.79182000000001 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/11/08,10.223866667509158 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/10/23,14.911629171174171 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2019/11/23,28.297876946981948 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/03/07,12.382617423618326 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/02/20,21.919450000000012 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/04/07,13.441450014812496 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/03/22,14.369881249307491 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/05/02,8.981114166691663 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/05/25,5.582479163656672 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/05/26,24.041191671789147 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/07/05,22.358004166666674 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/06/26,8.421905320894169 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/07/04,11.17390833333334 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/08/06,8.185274368115271 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/07/28,11.167225016495005 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/08/05,14.719308335633338 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/09/07,6.247583324228344 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/08/30,3.41408974076923 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/10/09,12.782606317550004 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/09/23,7.140249989990012 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/10/01,4.827626764615379 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/09/22,18.66620833350084 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/11/10,15.270391676369163 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/10/25,6.8266749917250085 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/11/09,6.217166636666661 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2020/12/03,9.255352085045825 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/04/10,7.955749985735004 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/04/03,14.77903333708582 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/03/25,11.748673377605837 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/04/02,18.40549170581418 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/04/26,14.181450064825004 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/05/29,18.732883332658336 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/06/29,18.606693750095005 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/07/07,5.098500000072491 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/07/31,8.657420476324996 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/08/08,19.45041666709667 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/07/23,6.721075003982504 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/09/10,5.398183333548334 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/08/25,9.568175002890005 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/09/09,6.699804550932499 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/08/24,7.400434090000012 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/09/26,8.519724097999992 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/10/11,20.26997500234753 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/09/25,24.865775000285 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/11/04,6.77886168820917 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/10/28,8.328275035355007 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/11/05,20.030725002347506 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2021/11/24,3.740695133076916 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/02/24,8.594058333048345 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/02/24,24.120997916714167 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/04/05,15.748908335398344 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/03/29,14.27329755158594 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/05/08,3.4228840999999965 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/05/07,19.47774583470834 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/04/30,20.37108337576836 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/04/29,8.418920822670842 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/04/22,3.4935750000000074 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/06/05,10.425377270047507 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/05/31,6.256381181438214 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/05/24,9.5343250109925 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/09,2.8096733348116647 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/04,3.4286810568116657 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/06/22,13.736641666809184 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/11,21.184195708719443 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/10,28.642016669061675 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/03,5.505412727999993 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/02,14.265687498470012 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/06/25,13.754221221266658 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/06/24,11.83918337018084 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/07,7.208687487870006 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/07/26,20.421685606666664 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/11,16.444608343275846 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/03,14.323175004694992 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/09/10,22.29692500230001 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/29,15.50747500595997 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/24,3.918528003478332 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/28,17.568068940284977 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/08/27,15.354108359018335 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/02,21.56592499923501 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/06,5.679704657499879 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/09/21,19.596782578966653 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/08,16.055751513428312 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/07,11.411846966666657 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/30,7.515540929062499 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/23,5.3367831063408335 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/10/22,35.07946666676162 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/22,16.267477095645837 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/12/10,5.347636673589736 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/24,5.754367066699168 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/11/23,11.613864406947494 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/12/26,8.37957434930936 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2022/12/25,8.649258743221917 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/02/03,23.486291666666656 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/04/09,11.003522916951663 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/04/08,12.878408334483336 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/04/01,21.42467500301248 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/04/27,17.02782916685667 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/11,13.419945001844985 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/10,13.566333361900826 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/31,14.778283333025833 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/06/04,11.18404687808834 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/06/03,10.762241667094177 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/27,11.57520750090749 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/05/26,6.873883331420842 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/07/06,10.374983335290825 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/07/05,8.760118340255822 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/06/27,2.9853750000000083 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/08/06,21.073133333428338 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/07/30,7.3824500002175135 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/07/22,9.799702500162487 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/09/06,12.148246528205268 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/08/31,22.71874861628109 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/08/23,11.677127269999987 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/08/22,27.97612083333336 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/10/08,13.028996215000008 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/10/03,13.218100000095005 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/10/02,11.561799847999978 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/10/01,3.1824500000000087 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/11/10,9.90279166691167 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/11/03,16.91543334820584 -Cross Lake,22025222,-76.47957094937696,43.12428622782162,2023/11/26,22.571758333338337 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2014/12/27,4.046679172926664 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2014/12/27,4.046679172926664 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/02/05,22.407050000000005 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/02/05,22.407050000000005 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/02/22,23.552474999999998 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/02/22,23.552474999999998 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/04,4.436101535544163 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/04,4.436101535544163 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/06,18.238800006900014 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/28,6.6922249944000125 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/29,14.790133333428328 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/06,18.238800006900014 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/28,6.6922249944000125 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/05/29,14.790133333428328 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/29,13.506818750769998 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/22,21.412660606666677 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/07,16.468837500000017 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/29,13.506818750769998 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/06/22,21.412660606666677 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/07,16.468837500000017 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/09,17.953618940000002 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/31,17.889235608966686 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/24,10.959153030000005 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/01,14.746350013994997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/23,5.279940207635829 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/09,17.953618940000002 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/31,17.889235608966686 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/24,10.959153030000005 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/01,14.746350013994997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/07/23,5.279940207635829 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/25,10.188148750502494 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/09/09,15.07617499991498 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/09/02,10.54733333342833 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/08/25,10.188148750502494 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/09/09,15.07617499991498 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/09/02,10.54733333342833 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/10/11,21.44906667145668 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/10/11,21.44906667145668 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/04,28.16550000718497 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/05,2.793200000000003 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/04,28.16550000718497 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/05,2.793200000000003 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/29,14.503623043933612 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/12/07,2.8575272500000013 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/11/29,14.503623043933612 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/12/07,2.8575272500000013 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/12/30,5.1558750004349925 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2015/12/30,5.1558750004349925 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/05,8.145912502727489 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/03/27,11.007040021872497 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/05,8.145912502727489 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/03/27,11.007040021872497 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/07,14.403902153210838 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/28,19.47598333361835 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/21,12.699570851123324 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/07,14.403902153210838 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/28,19.47598333361835 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/04/21,12.699570851123324 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/23,10.682341667309164 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/07,14.517444230769234 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/31,10.928550001662504 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/23,10.682341667309164 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/07,14.517444230769234 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/05/31,10.928550001662504 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/24,18.17952499999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/07/02,15.642016684349176 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/23,6.755904181713326 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/24,18.17952499999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/07/02,15.642016684349176 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/06/23,6.755904181713326 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/11,17.15331666671418 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/02,19.928083333333344 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/10,9.949700000072497 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/11,17.15331666671418 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/02,19.928083333333344 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/10,9.949700000072497 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/03,22.022835000000025 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/27,3.588209090072496 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/11,5.973001367999997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/04,5.3171045801449965 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/26,15.24890833338084 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/03,22.022835000000025 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/27,3.588209090072496 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/11,5.973001367999997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/04,5.3171045801449965 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/08/26,15.24890833338084 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/10/05,26.79548333563337 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/28,19.60833560896669 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/10/06,12.813436971333331 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/27,10.557509089999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/10/05,26.79548333563337 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/28,19.60833560896669 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/10/06,12.813436971333331 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/09/27,10.557509089999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/11/06,14.94408750441752 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/11/07,3.083085923076924 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/11/06,14.94408750441752 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/11/07,3.083085923076924 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/12/08,7.720819681666661 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2016/12/08,7.720819681666661 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/10,24.02516666666665 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/10,24.02516666666665 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/26,11.922041666666663 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/27,3.924301547435894 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/26,11.922041666666663 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/02/27,3.924301547435894 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/08,13.153983348468344 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/03/22,16.536599999999993 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/08,13.153983348468344 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/03/22,16.536599999999993 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/24,10.740625000950008 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/23,4.349997729999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/24,10.740625000950008 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/04/23,4.349997729999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/11,23.01265833340584 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/02,11.706849995849998 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/10,11.71710417119917 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/03,11.689950023000002 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/11,23.01265833340584 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/02,11.706849995849998 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/10,11.71710417119917 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/03,11.689950023000002 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/04,20.52750000004748 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/05,4.864968189999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/26,6.796300001012496 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/04,20.52750000004748 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/05,4.864968189999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/06/26,6.796300001012496 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/29,20.541370833380803 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/06,4.231977799999993 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/07/29,20.541370833380803 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/06,4.231977799999993 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/30,6.422101514273338 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/07,8.868375000362493 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/22,10.633699999952482 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/30,6.422101514273338 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/07,8.868375000362493 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/08/22,10.633699999952482 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/22,17.797287499999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/30,2.925729500000003 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/23,4.346731819999993 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/22,17.797287499999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/30,2.925729500000003 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/09/23,4.346731819999993 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/10/24,13.912865840303317 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/11/10,5.45782206615384 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/10/25,6.395591816999989 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/10/24,13.912865840303317 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/11/10,5.45782206615384 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/10/25,6.395591816999989 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/12/04,6.299320829005849 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/12/03,4.289422730094992 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/01/05,24.02516666666665 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2017/12/28,22.476633333333343 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/02/05,21.77565833333335 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/04/02,4.274941666569179 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/03/26,10.020135425216663 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/03/25,6.445143391282048 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/05/04,6.7986249923700095 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/05/05,17.191025000169997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/05/29,11.725358335918337 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/05/28,2.737375000000005 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/07/07,9.140478786666677 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/06/30,17.30006666685668 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/06/21,23.233137501625 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/07/08,6.588725756739165 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/06/29,9.21247500032001 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/06/22,4.421681819999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/08/09,8.0625000003625 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/07/31,3.2637500000000057 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/08/24,24.18385416906165 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/09/01,10.437291667576654 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/08/25,5.585898671999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2018/11/04,21.660624999477523 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/02/08,3.995375000239996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/03/04,23.64040833333333 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/04/30,8.9251250685925 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/05/08,4.705006859999992 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/06/08,15.20526668276668 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/06/01,9.193340000522518 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/06/09,6.1313500004275 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/05/31,5.843771214758334 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/07/10,10.446277084728358 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/07/03,3.931277274999993 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/06/25,4.531566174615377 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/08/11,20.73125000006999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/08/04,11.893749998655004 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/07/26,16.353774999714997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/08/03,12.829600000409991 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/07/27,20.24257500237249 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/09/05,2.802459089999998 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/09/21,7.392631820144995 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/11/08,9.45312417584416 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/10/23,11.439129822111054 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2019/11/23,6.097439671999997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/01/02,9.793177494719998 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/03/07,8.266050000479991 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/04/07,14.900375014109994 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/03/22,22.62705835642833 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/05/02,12.5166000006475 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/05/25,8.13692000056751 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/05/26,5.700018189999993 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/07/05,19.301841676009165 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/06/26,14.999450013182509 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/08/06,8.765176111491112 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/07/28,14.129625000047508 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/08/05,3.920551379999992 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/08/30,9.093434089999992 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/10/09,8.241511556016663 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/10/01,2.3930810000000005 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/09/22,16.531875000099987 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/11/10,20.002966692299168 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/10/25,6.806224991910009 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/11/09,11.685204559999988 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2020/12/03,12.832810419851688 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/02/05,14.044808333285827 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/02/06,21.750616666666684 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/04/10,7.680374997942502 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/04/03,13.027308336830831 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/03/25,12.6440750090675 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/04/02,11.9133000369475 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/04/26,5.307321273866073 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/05/29,12.847149999569988 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/06/29,20.423975000072502 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/07/07,13.63757500008001 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/08/08,9.83229166666666 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/07/23,4.994650000289987 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/10,15.022683335633332 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/08/25,18.45130833276081 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/09,11.35963333352332 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/02,6.065504520072498 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/08/24,17.946741668966673 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/26,9.095527270845002 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/10/11,9.580450004672487 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/09/25,11.613750002372496 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/11/04,8.977731084377497 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/11/05,3.538797299999997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2021/11/24,4.223842229230766 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/01/07,22.274983333333346 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/02/24,11.9213999996775 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/04/05,4.464622729999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/03/29,5.2790456484615325 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/05/08,4.384692282999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/05/07,6.056083719561668 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/04/30,4.398099999999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/04/29,6.614324255793331 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/04/22,2.750397749999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/06/05,5.688947730145 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/05/31,5.624402275457503 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/05/24,8.027160608593315 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/09,6.18170568 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/04,3.950368179999992 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/11,3.2046363599999963 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/10,13.232866666809173 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/03,3.7074621233333263 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/02,7.497093944304166 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/06/25,4.107649999999992 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/06/24,5.315937514155833 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/07,3.268300016957498 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/26,9.707225015327504 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/11,3.2092750000950026 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/03,14.816733333333342 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/07/27,11.770958333333324 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/09/10,8.71252500036 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/29,8.105675001447501 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/24,3.0840068399999963 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/28,10.028244696739163 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/08/27,4.356111249999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/02,10.861083333428333 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/06,17.121108333785823 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/09/29,4.690005253846151 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/09/21,6.303722729999996 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/08,5.495184786666661 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/07,8.508846976666664 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/30,3.926075000047498 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/23,9.43634168046666 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/10/22,4.22894169833333 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/22,16.1155437600125 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/12/10,5.151714196153836 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/24,6.753073873745831 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2022/11/23,3.9704022499999994 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/02/20,23.60554166666666 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/03/07,8.614575000384997 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/02/27,4.306399774038463 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/02/20,16.45563333369333 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/04/09,6.600308326666661 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/04/08,7.97247726999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/04/01,7.680877289999989 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/04/27,18.276591666666683 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/05/10,16.942716673191672 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/05/31,16.02970001370749 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/06/11,12.664824999354988 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/06/04,19.70925833793336 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/06/03,8.82894999816001 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/05/27,22.407425002300005 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/05/26,12.952060006070017 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/06,10.652966669061676 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/05,3.741122730072497 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/24,19.34330833295081 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/07,7.187539532307685 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/06,12.930891666666671 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/30,3.496527943333333 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/07/22,23.090733337670866 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/09/06,12.227094693453322 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/31,12.480941286714158 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/30,10.822825000000002 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/23,12.42473825666667 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/08/22,3.984562876739163 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/08,5.804316673333334 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/03,4.596259090289994 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/02,8.162334699666658 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/01,5.76026817999999 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/11/10,19.373695833408306 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/11/03,6.390208335483327 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/10/25,22.426991667051677 -Otter Lake,22025228,-76.53312261114418,43.14009226468098,2023/11/26,6.560733338125826 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/01/05,2.8571295000000028 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2014/12/27,8.974874993274993 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/01/05,2.8571295000000028 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2014/12/27,8.974874993274993 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/04,10.198975000714997 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/04,10.198975000714997 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/06/06,12.034775013967508 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/28,10.773306250000012 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/29,4.69033724176821 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/06/06,12.034775013967508 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/28,10.773306250000012 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/05/29,4.69033724176821 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/08,9.52695625016502 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/06/22,5.575884845833331 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/07,4.022700000000004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/08,9.52695625016502 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/06/22,5.575884845833331 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/07,4.022700000000004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/09,7.063896976666667 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/31,8.621768395577499 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/24,5.451591666786672 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/01,6.994650000072503 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/23,7.61349727533501 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/09,7.063896976666667 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/31,8.621768395577499 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/24,5.451591666786672 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/01,6.994650000072503 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/07/23,7.61349727533501 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/25,3.926273017435896 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/02,8.40729473333333 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/08/25,3.926273017435896 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/02,8.40729473333333 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/26,12.643465834940846 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/10/11,19.323338391538435 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/10/04,19.57151666700917 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/25,6.499165912217501 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/26,12.643465834940846 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/10/11,19.323338391538435 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/10/04,19.57151666700917 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/09/25,6.499165912217501 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/04,8.612215141666656 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/05,5.047529169639165 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/04,8.612215141666656 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/05,5.047529169639165 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/29,5.719174999785006 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/21,10.165800000564996 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/29,5.719174999785006 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/11/21,10.165800000564996 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/01/07,9.1236250083475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/12/30,10.887531750512808 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/01/07,9.1236250083475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2015/12/30,10.887531750512808 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/03/03,11.530838639030003 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/03/03,11.530838639030003 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/05,9.272799627696658 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/03/27,14.382003674570006 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/05,9.272799627696658 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/03/27,14.382003674570006 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/07,15.33237500474751 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/28,6.706579158486677 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/21,12.036223463538349 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/07,15.33237500474751 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/28,6.706579158486677 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/04/21,12.036223463538349 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/23,10.522618751762494 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/31,21.51886667601418 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/23,10.522618751762494 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/05/31,21.51886667601418 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/06/24,7.884900000000005 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/06/23,13.641512504790018 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/06/24,7.884900000000005 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/06/23,13.641512504790018 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/11,5.223868180072507 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/02,5.0844657193108365 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/07/26,8.200750003719994 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/10,6.139960140769224 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/03,11.717808333333338 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/11,5.223868180072507 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/02,5.0844657193108365 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/07/26,8.200750003719994 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/10,6.139960140769224 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/03,11.717808333333338 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/03,4.728838630217495 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/27,4.265695747435895 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/11,4.6963090901449975 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/04,8.587478763333342 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/26,17.067266671314176 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/03,4.728838630217495 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/27,4.265695747435895 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/11,4.6963090901449975 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/04,8.587478763333342 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/08/26,17.067266671314176 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/10/05,3.573899236884162 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/28,8.886969696666673 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/10/06,3.380487575000001 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/27,4.917443269999997 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/10/05,3.573899236884162 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/28,8.886969696666673 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/10/06,3.380487575000001 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/09/27,4.917443269999997 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/11/06,6.037224995810008 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/11/07,6.700857662307686 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/11/06,6.037224995810008 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/11/07,6.700857662307686 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/12/09,16.485975000142478 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2016/12/09,16.485975000142478 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/01/01,5.245248715432108 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/01/01,5.245248715432108 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/10,6.55354999825251 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/03,8.714566251057498 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/10,6.55354999825251 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/03,8.714566251057498 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/26,10.044300000000025 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/19,9.974562127549172 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/27,14.87806742338081 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/26,10.044300000000025 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/19,9.974562127549172 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/02/27,14.87806742338081 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/08,10.752918749167511 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/03/23,10.0503500066475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/03/22,2.666725000000004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/08,10.752918749167511 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/03/23,10.0503500066475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/03/22,2.666725000000004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/24,9.5772250009475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/23,14.49419467338081 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/24,9.5772250009475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/04/23,14.49419467338081 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/11,8.6151943832225 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/02,5.026000000145004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/10,17.631116669066675 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/03,7.798384859674162 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/11,8.6151943832225 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/02,5.026000000145004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/10,17.631116669066675 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/03,7.798384859674162 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/04,11.152612500002512 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/27,9.88695403075278 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/05,13.133400000427496 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/26,3.066550000000004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/04,11.152612500002512 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/27,9.88695403075278 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/05,13.133400000427496 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/06/26,3.066550000000004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/29,12.15799166666667 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/06,3.1566499999999995 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/07/29,12.15799166666667 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/06,3.1566499999999995 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/30,6.333234090047507 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/07,3.2615272500000065 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/22,6.406101896973321 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/30,6.333234090047507 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/07,3.2615272500000065 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/08/22,6.406101896973321 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/08,7.793447735095001 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/01,7.480600011835006 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/22,3.7825413200590425 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/30,2.710350000000005 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/23,15.659660613333296 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/08,7.793447735095001 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/01,7.480600011835006 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/22,3.7825413200590425 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/30,2.710350000000005 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/09/23,15.659660613333296 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/11/10,21.573491674279158 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/25,5.360477916666662 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/11/10,21.573491674279158 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/10/25,5.360477916666662 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2017/12/04,6.1100249951800105 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/04/11,7.833324999892511 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/04/02,11.192675003520012 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/03/26,10.89990792264167 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/03/25,7.444173717948709 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/05/29,8.754011867687773 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/05/28,11.66348598836167 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/07/07,14.721191669161662 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/06/30,5.58330000613 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/06/21,10.957322923106677 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/07/08,7.135850000332491 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/06/29,10.661299999965006 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/08/09,3.739656750000004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/09/02,8.239604168341671 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/08/24,16.313904166856652 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/08/25,3.927553086666664 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/11/04,8.453425025400001 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2018/12/07,14.346006251225036 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/02/08,4.15216102307692 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/03/05,9.454400892427683 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/05/08,3.790566693550829 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/06/08,5.064552779642495 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/06/01,12.293520833048358 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/06/09,7.510458334805818 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/05/31,20.779768747420025 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/10,8.517024999060027 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/03,10.809197719999997 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/02,7.107279924999992 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/06/25,3.5357500000000037 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/08/11,14.0782800459975 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/26,12.925676250047491 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/08/03,14.862762500380002 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/07/27,3.18160225 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/05,3.6445721153333297 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/04,4.790556820072493 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/28,6.953050000272503 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/21,11.5292090900475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/09/29,6.27049633487738 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/10/23,11.12107625138 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2019/11/23,6.187023532307688 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/01/02,11.002037503180016 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/03/07,16.64373194721943 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/04/07,15.43226666657166 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/03/22,17.919556951296926 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/05/02,6.427072937191664 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/04/23,7.486841666521668 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/05/25,2.6510250005475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/05/26,9.381260422856665 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/07/05,9.19985948907834 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/06/26,5.313228334190838 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/07/04,13.651468711538444 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/08/06,14.408846105714264 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/07/28,4.861558332755837 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/08/05,11.261595084153344 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/08/30,4.293274999999995 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/10/09,6.612724993845011 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/10/01,3.0529660346153844 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/09/22,9.612175003064984 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/11/10,9.17940064580928 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/10/25,16.085629181304157 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/11/09,2.82386945 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/12/03,3.651325000217507 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2020/12/11,18.945316667499164 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/02/06,19.87951458348584 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/01/28,21.75304166666668 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/03/10,4.366920316346156 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/04/10,14.547422604243334 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/04/03,9.40662542019166 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/03/25,11.061024999197503 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/04/02,8.30800000004749 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/04/26,5.618085411199165 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/06/06,11.72914166749668 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/05/29,20.81805000069252 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/06/29,9.150563194776945 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/07/07,4.663873489137494 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/08/09,10.388120832665834 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/07/31,15.724625029900016 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/08/08,3.0883772500475004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/09/10,12.6801500021 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/08/25,13.360987500142514 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/09/02,3.0114442307692317 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/08/24,8.622004169541656 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/09/26,3.969742288072497 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/10/11,2.681790989999998 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/09/25,11.618789396666672 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/11/04,7.335865056597501 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/10/28,11.960127082193344 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/11/05,7.815709090000001 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2021/11/24,4.278434100512815 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/01/08,5.525702399239359 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/02/09,16.457324999999994 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/02/24,11.357607530827496 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/03/04,21.920716666666685 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/02/24,11.4613625096475 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/04/05,26.57435001854247 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/03/29,11.793037413211737 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/05/08,9.459359097347509 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/04/30,9.344024999999991 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/04/29,6.694115636004171 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/04/22,9.550579837435892 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/06/05,10.071353786666672 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/05/31,10.662554166999168 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/05/24,25.461433333333343 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/09,9.03387651666667 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/04,7.952738640144997 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/06/22,12.476414172714168 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/11,11.917461359999978 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/10,3.7100182099999968 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/03,12.053816671456666 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/02,32.21043749998501 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/06/25,9.647124950145004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/06/24,5.655323496259164 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/07,7.0028749994975055 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/26,4.798637511780838 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/11,3.792917430769225 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/03,4.963415153768329 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/07/26,4.461758338865831 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/09/10,3.232406056811665 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/29,9.325681816666672 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/24,15.574999999984998 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/28,4.838996198974357 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/08/27,3.647275000000004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/02,10.357409584900845 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/06,4.097461508739164 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/09/29,2.772519230769232 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/09/21,6.112434991999994 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/05,15.086462501677511 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/08,5.734179582307686 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/07,3.981092610333331 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/30,4.061999999999997 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/23,20.343845833213344 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/10/22,4.80922806833333 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/22,12.402880906526672 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/12/10,5.7118989948717855 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/24,7.016900004355824 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/11/23,10.38864997027763 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/12/26,12.078930993988642 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2022/12/25,7.653388273076921 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/03/07,15.02618333392333 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/02/27,8.853075000072495 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/03/26,9.033489590615837 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/04/09,13.187247916999176 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/04/08,12.5072250003325 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/04/01,27.46778334281831 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/11,10.46491439 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/10,5.053164036412497 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/06/05,14.18653458460584 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/31,14.87806916679417 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/06/04,15.606243194295832 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/06/03,4.942578930764162 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/27,12.195609584235832 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/05/26,9.468354166211675 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/07/06,8.86672728 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/07/05,11.2600436120236 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/08/07,2.921975000000005 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/08/06,11.337110606666664 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/07/30,11.06893958969583 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/07/22,2.4910750000000035 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/09/06,4.029149999905004 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/09/08,8.332034615384611 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/08/31,2.927949125 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/08/22,11.33601211666666 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/10/08,11.385221066478325 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/10/03,4.182861329999998 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/09/28,3.256033491410255 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/10/02,7.388637856739157 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/10/01,4.87194962307691 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/11/03,2.9927404999999982 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/11/02,21.352758333473343 -Onondaga Lake,22025262,-76.21032960832576,43.08909313903099,2023/11/26,7.659133349433327 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/01/05,3.4511384307692285 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/01/05,3.4511384307692285 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/05/05,8.37736666857917 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/04/27,5.871555769230763 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/05/05,8.37736666857917 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/04/27,5.871555769230763 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/06/06,7.378253273857025 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/05/29,8.402809102896661 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/06/06,7.378253273857025 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/05/29,8.402809102896661 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/06/22,3.63500702166666 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/06/22,3.63500702166666 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/08/09,4.7074846963333234 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/07/24,3.858970307999993 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/08/09,4.7074846963333234 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/07/24,3.858970307999993 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/08/25,3.343850528205126 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/09/02,7.464150000362498 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/08/25,3.343850528205126 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/09/02,7.464150000362498 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/09/26,10.585550000855 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/09/26,10.585550000855 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/04,8.305537098333323 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/04,8.305537098333323 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/29,3.1897886300000007 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/21,20.608008333918328 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/29,3.1897886300000007 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2015/11/21,20.608008333918328 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/01/24,21.919450000000012 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/01/24,21.919450000000012 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/04/05,4.99128334550583 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/04/05,4.99128334550583 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/07,5.747354166554172 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/04/21,7.011579166364169 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/07,5.747354166554172 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/04/21,7.011579166364169 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/23,15.489716250527495 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/31,3.092477250047501 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/23,15.489716250527495 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/05/31,3.092477250047501 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/06/24,2.991009865579997 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/07/02,8.467300000217497 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/06/24,2.991009865579997 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/07/02,8.467300000217497 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/11,3.321875000262502 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/03,7.195966671456668 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/11,3.321875000262502 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/03,7.195966671456668 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/27,7.220240910167506 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/09/04,3.899593099999994 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/08/27,7.220240910167506 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/09/04,3.899593099999994 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/09/28,2.9616271216233327 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/10/06,3.4819807448717963 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/09/28,2.9616271216233327 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/10/06,3.4819807448717963 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/11/07,5.129969378205126 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2016/11/07,5.129969378205126 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/01/02,11.23669166666668 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/01/02,11.23669166666668 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/02/27,2.7093326573076912 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/02/27,2.7093326573076912 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/03/23,13.097331252177495 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/03/23,13.097331252177495 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/04/24,9.152183333023338 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/04/24,9.152183333023338 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/06/03,2.5707750000000003 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/06/03,2.5707750000000003 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/06/27,5.936556255705001 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/07/05,3.7510870163461534 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/06/27,5.936556255705001 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/07/05,3.7510870163461534 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/07/29,6.062106820410003 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/08/06,5.1712841000474885 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/07/29,6.062106820410003 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/08/06,5.1712841000474885 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/08/30,9.861743180000005 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/08/30,9.861743180000005 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/10/01,3.9033166673091695 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/09/23,6.827412271999992 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/10/01,3.9033166673091695 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/09/23,6.827412271999992 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/11/10,3.3279340000724984 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/10/25,2.78489535 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/11/10,3.3279340000724984 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2017/10/25,2.78489535 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/01/05,24.02516666666665 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/02/06,22.47810000000001 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/05/05,9.409901368072486 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/05/29,3.41698787746416 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/06/30,9.612983334530838 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/07/08,3.352887620769227 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/06/22,4.585500000692496 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/09/02,3.910740540860002 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2018/12/07,7.841752087323331 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/01/08,24.44116666666665 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/05/08,2.790078639999996 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/07/03,6.3482681800725 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/06/25,2.5399750000000045 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/07/27,4.564029381538458 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/09/05,12.643218180119996 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/09/21,2.9924074247391643 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/09/29,3.6770628867391633 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/11/08,11.231116666666669 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2019/10/23,10.69363785720034 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/05/02,7.826531256735013 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/05/26,6.388051513525839 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/07/05,13.394687500427503 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/08/06,8.442766669156667 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/08/22,3.4987704505799955 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/08/30,3.48219423076923 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/10/09,5.535274997115006 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/09/23,7.50583335277833 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/11/10,5.075922730214997 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2020/10/25,7.074726139399998 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/01/29,23.64040833333333 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/03/02,10.547616666429183 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/04/03,11.500940005840002 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/06/06,14.734215000000004 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/08/09,16.902799999617503 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/07/24,7.658187501699997 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/09/10,8.588108338435823 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/09/02,3.435250000000001 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/09/26,3.746622719999996 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/10/28,7.640705942380946 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2021/11/24,6.9793342307692265 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/03/29,6.071714190384605 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/05/08,4.735742426956664 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/04/30,5.156881822300001 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/04/22,3.761925000000007 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/06/05,3.771394713478328 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/05/31,3.425000002107498 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/05/24,4.00596060681166 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/07/09,3.4133999999999944 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/07/04,4.340995449999992 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/07/11,3.5345794033333267 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/07/03,3.930850000455001 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/06/25,3.845580035576922 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/08/07,3.716016666869169 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/09/10,7.477109091787506 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/08/24,4.846914779230002 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/08/28,3.8750365307692296 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/09/29,4.295984099999995 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/09/21,4.242356820144996 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/10/31,6.553024992800012 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/11/08,5.257050588205125 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/10/23,12.568766666666654 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/11/22,9.827137501029997 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/12/10,3.868557580769231 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/11/24,8.455586747715834 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/01/11,13.842383333333338 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2022/12/26,4.812847423076917 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/02/20,19.04716666666669 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/03/26,7.779066665954183 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/04/09,16.428132570072464 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/04/01,16.98506042737917 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/05/09,11.963258384385837 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/05/11,4.895458333500833 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/06/05,12.615450004399996 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/05/31,15.397554166904154 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/06/04,12.150703795344162 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/05/27,6.049191667291671 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/07/06,6.941166671224178 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/08/07,2.8630522500000044 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/07/30,3.177550000000001 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/07/22,7.536158335778333 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/09/06,3.743164998072497 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/09/01,3.8946128867391616 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/09/08,7.704650000144997 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/08/31,3.1982469816666668 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/08/23,4.22065682717948 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/10/03,22.78154166580418 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/09/28,4.631264285714281 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/10/02,2.997375000000005 -Cazenovia Lake,22026276,-75.8719417003977,42.94828528611987,2023/11/03,2.586122324999999 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/01/05,16.429466666651663 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/01/05,16.429466666651663 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/05/05,10.445578662114988 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/05/05,10.445578662114988 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/06/06,4.771722033765238 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/05/29,4.896675000237498 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/06/06,4.771722033765238 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/05/29,4.896675000237498 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/06/22,6.106787500284996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/06/22,6.106787500284996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/09,3.397708337101663 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/07/24,4.590033333930832 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/01,4.359706440256402 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/09,3.397708337101663 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/07/24,4.590033333930832 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/01,4.359706440256402 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/25,3.1689651468116664 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/09/02,17.942491666666648 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/08/25,3.1689651468116664 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/09/02,17.942491666666648 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/10/04,14.432424999754994 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/10/04,14.432424999754994 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/11/29,2.734421803000001 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2015/11/29,2.734421803000001 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/04/05,8.32739959012833 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/04/05,8.32739959012833 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/07,8.610220306879173 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/04/21,6.941463643062503 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/07,8.610220306879173 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/04/21,6.941463643062503 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/23,11.08880000231 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/31,9.868048493234156 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/23,11.08880000231 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/05/31,9.868048493234156 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/06/24,14.963691685356686 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/07/02,7.192505700091665 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/06/24,14.963691685356686 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/07/02,7.192505700091665 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/11,3.5852590907249926 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/03,3.741804590072496 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/11,3.5852590907249926 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/03,3.741804590072496 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/27,3.1223127251016622 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/09/04,12.292700000094996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/08/27,3.1223127251016622 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/09/04,12.292700000094996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/09/28,2.770902874739166 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/10/06,2.909501847435896 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/09/28,2.770902874739166 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/10/06,2.909501847435896 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/11/07,3.8791340512820502 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2016/11/07,3.8791340512820502 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/02/27,10.466041669224172 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/02/27,10.466041669224172 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/04/24,3.3561382623099973 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/04/24,3.3561382623099973 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/06/11,10.692250001245002 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/06/11,10.692250001245002 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/06/27,10.94740833884335 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/07/05,5.4482249999999945 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/06/27,10.94740833884335 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/07/05,5.4482249999999945 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/07/29,4.568395459637503 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/08/06,17.188333332888337 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/07/29,4.568395459637503 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/08/06,17.188333332888337 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/08/30,9.3226700001425 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/08/30,9.3226700001425 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/10/01,6.467030309999996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/09/23,14.560124999999973 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/10/01,6.467030309999996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/09/23,14.560124999999973 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/11/10,13.11832499999998 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/10/25,4.167632626666665 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/11/10,13.11832499999998 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2017/10/25,4.167632626666665 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/04/11,10.82713333268834 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/05/05,5.723458337980837 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/05/29,6.2534090903375015 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/06/30,7.195500005054999 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/07/08,5.210156819999998 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2018/08/09,5.727959854270833 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/01/08,24.44116666666665 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/03/05,21.75304166666668 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/05/08,2.7865840899999976 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/06/09,6.44135314656571 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/07/03,6.9169000000724985 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/06/25,6.433754213076915 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/07/27,4.072050000409998 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/09/05,8.892000001577493 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/09/21,9.80201060340583 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/09/29,4.774851147243334 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2019/10/23,11.41222709965584 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/02/20,21.66638333333335 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/05/02,8.926288675307497 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/05/26,6.517033333380834 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/07/05,12.711091671724176 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/08/06,2.999303783913329 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/08/30,3.256625000000001 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/10/09,3.6464623732023775 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/09/23,10.77214708361832 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/11/10,10.396692337262769 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2020/10/25,12.149678989722736 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/01/29,22.05074166666668 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/03/02,11.971025000584996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/04/03,12.986805379939163 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/06/06,18.64504999923502 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/08/09,14.75894958755082 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/07/24,17.97162083295082 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/09/10,17.42343333333332 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/09/02,2.799875000000005 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/09/26,5.44275378666667 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/10/28,11.12532694779444 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/11/05,2.530100000000003 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2021/11/24,6.120610057948715 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/01/24,21.88613333333335 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/03/29,5.954968586923069 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/05/08,4.089880923217496 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/04/30,5.071516673661664 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/04/22,3.540650000000007 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/06/05,2.6370628768841646 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/05/31,4.283591667766666 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/05/24,5.954125003670836 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/07/04,3.702327270434996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/06/22,16.578854166284167 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/07/11,3.4083515170291667 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/07/03,5.302925000095006 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/06/25,3.9742633499999953 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/09/10,3.462816514811662 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/08/24,3.566007299999995 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/08/28,3.431643189999994 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/09/21,6.175775000647506 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/11/05,24.44116666666665 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/10/31,10.463921965870831 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/11/08,2.7824609274358965 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/11/22,9.056377087220827 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/12/10,3.1273480214102567 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/11/24,4.295325000264996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2022/12/26,3.4526363798076942 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/02/03,22.000250000000012 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/03/26,11.811199999572514 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/04/09,3.0079806507692317 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/04/01,12.426372924554157 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/05/09,16.0765750014 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/05/11,5.350833333840829 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/06/05,21.41906667131418 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/05/31,9.88290000002249 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/06/04,10.366883339145817 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/05/27,7.974983333623332 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/07/06,5.310751513863338 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/08/07,3.488354500000004 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/07/30,4.745321215362496 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/07/22,4.238250000072497 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/09/06,5.0963000026575 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/09/01,3.245693785029164 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/08/31,3.72001289666666 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/10/03,4.027563630289993 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/09/28,3.247513639999996 -DeRuyter Reservoir,22026326,-75.89233074079547,42.81448186220671,2023/11/03,3.0137432499999965 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/01/05,5.579024157692297 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2014/12/27,3.630250000000008 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/01/05,5.579024157692297 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2014/12/27,3.630250000000008 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/02/06,23.552474999999998 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/01/28,5.406233837098783 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/02/06,23.552474999999998 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/01/28,5.406233837098783 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/04/02,19.539533335538344 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/04/02,19.539533335538344 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/05,6.39597498662501 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/04/26,3.48612360129 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/04,2.711202250000002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/05,6.39597498662501 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/04/26,3.48612360129 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/04,2.711202250000002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/06,7.917593957691666 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/28,9.56313458341584 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/05,3.023775000000005 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/29,5.641598188995 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/06,7.917593957691666 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/28,9.56313458341584 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/05,3.023775000000005 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/05/29,5.641598188995 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/22,5.923475000072503 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/06/22,5.923475000072503 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/09,2.343488645000001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/31,6.310667086858336 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/24,2.923619712101663 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/01,5.023838323076917 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/23,4.11317350768083 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/09,2.343488645000001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/31,6.310667086858336 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/24,2.923619712101663 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/01,5.023838323076917 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/07/23,4.11317350768083 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/25,4.335700005289995 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/09,8.463864999787498 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/02,10.39040833664083 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/08/25,4.335700005289995 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/09,8.463864999787498 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/02,10.39040833664083 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/26,7.916816656674169 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/10/11,3.3642399448717955 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/10/04,17.99142500040001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/09/26,7.916816656674169 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/10/11,3.3642399448717955 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/10/04,17.99142500040001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/04,3.719641817289998 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/05,6.437252061538451 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/04,3.719641817289998 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/05,6.437252061538451 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/12/07,2.869075000000004 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/21,12.628783333533327 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/12/07,2.869075000000004 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2015/11/21,12.628783333533327 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/01/07,6.352745870703328 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/01/07,6.352745870703328 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/02/09,2.696175000000003 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/02/09,2.696175000000003 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/03/03,6.188128182307682 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/03/03,6.188128182307682 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/04/05,7.445039591805831 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/03/27,3.745247227596904 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/04/05,7.445039591805831 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/03/27,3.745247227596904 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/07,11.539139663848337 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/04/21,7.512130300299155 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/07,11.539139663848337 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/04/21,7.512130300299155 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/23,4.569179861348618 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/07,7.389993188563332 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/31,4.678640700256404 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/23,4.569179861348618 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/07,7.389993188563332 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/05/31,4.678640700256404 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/24,3.347210458434994 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/07/09,5.069525000217492 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/07/02,2.752550000000003 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/23,9.13679166773165 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/24,3.347210458434994 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/07/09,5.069525000217492 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/07/02,2.752550000000003 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/06/23,9.13679166773165 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/11,3.480702290289994 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/02,3.486905333405826 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/03,5.481025010167494 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/11,3.480702290289994 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/02,3.486905333405826 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/03,5.481025010167494 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/03,3.070290147536663 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/27,3.3011310617391647 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/11,2.619860180000002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/04,4.945361009743584 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/26,12.406783333733326 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/03,3.070290147536663 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/27,3.3011310617391647 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/11,2.619860180000002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/04,4.945361009743584 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/08/26,12.406783333733326 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/10/05,2.918743180217497 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/28,3.9679477301449975 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/10/06,4.349961983333332 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/27,3.4037443307692272 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/10/05,2.918743180217497 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/28,3.9679477301449975 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/10/06,4.349961983333332 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/09/27,3.4037443307692272 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/11/06,6.542624993015011 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/11/07,4.627287274999992 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/11/06,6.542624993015011 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/11/07,4.627287274999992 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/12/09,7.12348847187595 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2016/12/09,7.12348847187595 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/10,6.649350000200009 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/03,13.480708333333324 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/10,6.649350000200009 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/03,13.480708333333324 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/26,24.44116666666665 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/19,8.759127087750834 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/27,3.672982831923077 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/26,24.44116666666665 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/19,8.759127087750834 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/02/27,3.672982831923077 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/08,14.343625094220004 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/03/23,10.398512506457498 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/03/22,5.466819230769222 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/08,14.343625094220004 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/03/23,10.398512506457498 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/03/22,5.466819230769222 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/24,7.359593747639996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/23,4.381876816346149 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/24,7.359593747639996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/04/23,4.381876816346149 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/11,5.157247851408572 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/10,4.8542575786958295 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/03,3.712127250047502 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/11,5.157247851408572 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/10,4.8542575786958295 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/03,3.712127250047502 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/04,11.92244999914001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/05,8.905257513846156 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/26,13.376625002372506 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/04,11.92244999914001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/05,8.905257513846156 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/06/26,13.376625002372506 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/29,6.766865532983331 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/06,14.54625000030998 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/07/29,6.766865532983331 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/06,14.54625000030998 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/30,4.075220460482499 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/09/07,9.99510797641025 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/22,4.234084099999996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/30,4.075220460482499 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/09/07,9.99510797641025 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/08/22,4.234084099999996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/10/01,9.47903333371833 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/09/23,9.942875696666666 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/10/01,9.47903333371833 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/09/23,9.942875696666666 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/11/10,5.746937123333327 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/10/25,4.401990050961532 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/11/10,5.746937123333327 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/10/25,4.401990050961532 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/12/04,4.489250000500011 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2017/12/03,3.6597500000000087 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/01/28,6.194957732144999 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/02/05,5.250854168039163 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/04/02,4.373477651031669 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/03/26,10.99809583821083 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/03/25,5.534363686201348 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/05/05,3.615151140769227 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/05/29,3.531495460434996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/05/28,2.473525000000004 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/07/07,8.430033332998335 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/06/30,6.1846250002375 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/07/08,4.655388323076912 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/06/29,20.98738333347584 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/06/22,13.52535833333333 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/08/09,8.379675000842502 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/09/02,2.1709500011299987 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/08/24,1.5877681806425006 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/09/01,3.6212750000000087 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/11/04,8.526424999739994 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2018/12/07,8.959230835208327 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/01/31,7.6737600025399955 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/02/08,4.558929901923068 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/02/01,11.7094000001925 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/03/05,8.628638461730953 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/05/08,2.9693460480769223 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/06/08,3.4702575741308284 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/06/01,15.700897500912513 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/05/31,17.98247500011501 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/07/10,8.293825002357506 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/07/03,5.165481819999999 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/06/25,3.1551750000000056 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/08/11,5.116608343300839 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/07/26,10.194522971456928 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/08/03,5.936200000482501 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/07/27,4.869744167094176 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/09/05,2.9020696966666697 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/09/04,2.5004250000000066 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/09/28,7.017699992139999 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/09/21,4.450868180047499 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/11/08,13.083808333333325 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/10/23,2.163825000217498 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2019/11/23,3.231300000262497 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/01/02,7.594162762380944 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/03/07,7.031711548461531 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/02/20,6.693939799911082 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/04/07,4.615747856161905 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/03/22,4.272579550000001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/05/02,6.922658357643342 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/05/25,9.502129167869157 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/05/26,4.820264311025635 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/07/05,5.924759854003335 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/06/26,3.796802497172505 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/07/04,4.587104364546896 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/08/06,3.659684090217497 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/07/28,5.563390923027505 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/08/05,3.958159090384996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/07/29,5.466197677179481 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/09/06,18.854212499880003 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/08/30,4.523849791153839 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/10/09,7.852666669664162 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/09/23,3.9604249992875062 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/10/08,11.804250001074983 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/09/22,5.139575000552501 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/11/10,6.781684095215002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/10/25,12.089561253497498 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/11/09,3.648011733653843 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/12/03,7.844152083235846 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2020/12/11,17.522683335733323 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/02/05,8.403689176499158 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/02/06,6.477846510816729 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/01/28,13.1792499998775 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/03/02,4.55717499977001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/02/21,4.2108500000000015 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/03/10,6.061206616538451 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/04/10,7.3640399994975 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/04/03,7.771820836005827 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/03/25,8.482664583600846 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/04/02,5.226225000192492 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/04/26,3.413189285197737 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/06/06,6.430475000140004 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/06/29,5.034144167046675 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/07/07,9.137575000624995 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/06/21,21.54120000042752 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/07/31,5.057281445861669 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/07/24,13.231697500190007 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/07/23,3.512152742783327 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/09/10,3.4171363653375058 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/08/25,8.785181666211672 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/09/02,5.146182815384605 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/08/24,10.095558333405831 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/09/26,5.788025000264998 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/10/11,8.87852651688417 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/09/25,10.396633336725834 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/11/04,5.400674999617499 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/10/28,9.560608334038342 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/11/05,22.21372499972501 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2021/11/24,6.103844167435893 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/01/07,7.315100002170009 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/01/08,5.680305802098778 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/01,7.3610391779416595 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/09,7.809025000384994 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/01,4.938145113149415 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/01/31,6.3011974554321135 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/01/24,8.772409100000008 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/24,12.262492529747298 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/03/04,9.10181176321943 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/02/24,5.200444042307684 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/03/28,6.387099996685008 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/04/05,4.288563118846152 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/03/29,5.601249999999993 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/05/08,4.2203695294871775 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/04/30,6.1483750049125065 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/04/29,5.459166101416901 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/04/22,3.9024072038461486 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/06/05,3.049288635289996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/05/31,6.656414778359999 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/05/31,15.553812500069997 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/05/24,4.901462437948709 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/09,3.1230081780724985 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/04,3.111900738405831 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/11,4.308169092307682 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/10,4.62508177717948 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/03,3.556146213333333 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/02,11.260412502042506 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/06/25,4.425873600448713 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/06/24,5.747956398717943 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/26,4.219500003517499 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/11,5.623861350119994 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/03,7.317600582390002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/07/26,18.651891666666653 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/09/10,3.512675000835001 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/29,4.995788256904171 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/24,3.308927309999996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/28,5.705151354871788 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/08/27,6.852886023076914 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/02,4.069866409237741 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/06,6.969203182144992 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/09/29,5.291401060769223 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/09/21,4.75036767461538 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/08,4.8680830673076825 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/07,3.803365929999996 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/30,4.304494230841725 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/23,18.25561666685667 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/10/22,2.6140136500000004 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/22,9.270324063101658 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/12/10,4.551697015384608 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/24,5.333150001047492 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/11/23,4.172409449038458 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/01/11,5.881025003429993 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/12/26,5.806632751842363 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2022/12/25,9.827025000382497 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/03,10.515366666666678 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/04,13.449400000000004 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/03,8.246650000000002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/20,11.356608333333345 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/02/27,3.716875000000006 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/04/09,5.300192436153845 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/04/08,9.125832820911732 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/04/01,4.040137009615381 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/09,6.349169167046667 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/04/22,8.18743749662751 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/11,7.177750000145002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/10,11.119360421294166 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/06/05,11.171922986849168 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/31,10.164291666189158 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/06/04,8.832610764035834 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/06/03,4.848650000144992 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/27,9.776497440998682 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/05/26,7.0220791808541625 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/06,5.070787877456668 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/05,5.976682423670838 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/24,5.307175000287507 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/07,6.117963461610954 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/06,4.3703765217948645 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/30,3.752975000000007 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/07/22,5.45310334076922 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/09/06,4.18038015152583 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/09/08,9.542456988461536 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/31,4.141810653333327 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/23,6.476775001327493 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/08/22,2.903147799999998 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/10/08,2.159300000309997 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/10/03,7.718324986475002 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/10/02,3.899470467179484 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/10/01,4.262589331025637 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/11/03,7.114931830264997 -Skaneateles Lake,22026848,-76.3643759058438,42.86082668246298,2023/11/26,8.32382397062024 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/01/05,3.8360668519230745 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2014/12/27,2.830557676666668 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/01/05,3.8360668519230745 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2014/12/27,2.830557676666668 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/01/28,7.94956387597069 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/01/28,7.94956387597069 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/04/02,13.265166666524165 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/04/02,13.265166666524165 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/05/04,10.673718810602502 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/05/04,10.673718810602502 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/06,5.6827875076025 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/06,5.6827875076025 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/22,3.5059157315384613 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/07,4.8284704646225 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/21,9.378800000144995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/22,3.5059157315384613 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/07,4.8284704646225 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/06/21,9.378800000144995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/09,2.3035681849999987 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/31,3.487896183550832 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/24,3.562097727319161 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/01,5.83227975846153 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/23,6.8008113666666565 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/09,2.3035681849999987 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/31,3.487896183550832 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/24,3.562097727319161 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/01,5.83227975846153 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/07/23,6.8008113666666565 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/25,6.440946974198331 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/09,5.587149243743331 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/02,8.788545002419992 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/08/25,6.440946974198331 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/09,5.587149243743331 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/02,8.788545002419992 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/26,22.82949166781916 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/10/11,5.800204018666663 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/10/04,11.702525000000003 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/09/26,22.82949166781916 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/10/11,5.800204018666663 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/10/04,11.702525000000003 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/11/04,5.856772724999996 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/11/04,5.856772724999996 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/11/29,5.822324999785005 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2015/11/29,5.822324999785005 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/01/07,8.157763956758608 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/01/07,8.157763956758608 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/03/03,6.778209092609996 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/03/03,6.778209092609996 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/04/05,8.93135208593083 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/03/27,3.4513499993675048 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/04/05,8.93135208593083 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/03/27,3.4513499993675048 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/07,6.850647750192499 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/04/21,8.77057833729332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/07,6.850647750192499 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/04/21,8.77057833729332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/23,7.23467878673917 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/07,2.4826250000000014 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/31,3.3854954899999967 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/23,7.23467878673917 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/07,2.4826250000000014 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/05/31,3.3854954899999967 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/24,3.4519977301449982 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/07/02,7.820385239534165 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/23,5.8854079570374855 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/24,3.4519977301449982 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/07/02,7.820385239534165 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/06/23,5.8854079570374855 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/11,5.723134866739168 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/02,7.464624996900013 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/07/26,7.081114601393332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/10,7.458811558461532 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/03,7.472902284999996 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/11,5.723134866739168 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/02,7.464624996900013 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/07/26,7.081114601393332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/10,7.458811558461532 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/03,7.472902284999996 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/03,5.564209090215002 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/27,2.453041960769231 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/11,14.819791701166675 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/04,5.826310434871792 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/26,3.393675000000004 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/03,5.564209090215002 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/27,2.453041960769231 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/11,14.819791701166675 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/04,5.826310434871792 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/08/26,3.393675000000004 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/10/05,2.9485954599999995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/28,3.240018933478332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/10/06,4.686349008653841 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/27,3.013800349999999 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/10/05,2.9485954599999995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/28,3.240018933478332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/10/06,4.686349008653841 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/09/27,3.013800349999999 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/11/06,2.815208333153335 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/11/07,4.036915555448713 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/11/06,2.815208333153335 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/11/07,4.036915555448713 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/12/09,5.110853846153838 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2016/12/09,5.110853846153838 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/03,9.13303041536166 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/03,9.13303041536166 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/26,12.02668333333333 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/19,9.374753203334445 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/27,5.034674723076911 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/26,12.02668333333333 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/19,9.374753203334445 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/02/27,5.034674723076911 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/08,9.232366716274171 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/03/23,11.209020837913338 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/08,9.232366716274171 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/03/23,11.209020837913338 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/24,7.158237501857482 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/23,3.222330317307692 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/24,7.158237501857482 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/04/23,3.222330317307692 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/11,13.59120834042835 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/10,6.590350000290003 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/03,2.8869795000000016 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/11,13.59120834042835 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/10,6.590350000290003 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/03,2.8869795000000016 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/07/04,3.877286330289997 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/27,8.589047745240002 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/07/05,11.8368553113553 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/26,8.074375000072497 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/07/04,3.877286330289997 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/27,8.589047745240002 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/07/05,11.8368553113553 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/06/26,8.074375000072497 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/08/30,5.088511370310003 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/07,6.143029446153833 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/08/22,3.0792022500950056 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/08/30,5.088511370310003 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/07,6.143029446153833 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/08/22,3.0792022500950056 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/08,18.122612500950005 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/01,7.667079174306665 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/22,5.1295208311908365 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/23,15.369006822299994 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/08,18.122612500950005 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/01,7.667079174306665 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/22,5.1295208311908365 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/09/23,15.369006822299994 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/24,8.797605304854155 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/11/10,6.951174999095 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/25,2.9651737857692293 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/24,8.797605304854155 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/11/10,6.951174999095 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/10/25,2.9651737857692293 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/12/04,4.115516666689175 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/12/03,2.678070000000001 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/01/05,10.892125000000012 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/12/27,7.740895833613349 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2017/12/28,6.320425892427684 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/02/06,8.573856247987518 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/01/28,9.577638952788606 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/02/05,5.851729168179159 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/04/02,11.934670655672743 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/03/26,9.9846662552075 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/03/25,5.988120661282046 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/05/05,6.221053638217491 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/05/29,3.2649121034783315 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/05/28,13.270149631852496 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/07/07,3.204325778333329 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/06/30,4.355343193598331 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/06/21,14.86905000207252 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/07/08,6.174683340003334 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/06/29,5.949150000095012 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/08/09,3.8181250000000047 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/09/02,7.239787493230006 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/08/24,2.38997500019 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/08/25,18.107791666421665 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/11/04,4.946725004334996 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2018/12/07,14.8855729174817 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/01/31,9.113822504187498 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/02/01,8.503402249999995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/05/08,3.190014699999994 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/06/08,3.960265148333328 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/06/01,16.180150007832516 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/05/31,21.439450000180027 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/07/10,11.780754166619188 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/07/03,2.549346218333334 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/06/25,13.348074999999987 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/08/11,13.565033335573348 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/07/26,10.47864027804026 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/08/03,15.222850000095006 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/07/27,9.050881822395006 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/09/05,2.7319681866666663 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/09/04,4.313950000072496 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/09/21,5.592920450072499 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/11/08,9.40463958487832 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/10/23,2.4240500001675 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2019/11/23,2.918899572435897 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/01/02,9.285481063428325 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/03/07,5.20296084468788 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/02/20,7.0445041673141615 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/04/07,8.10982059080774 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/03/22,4.536854549999998 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/05/26,3.5811001699999974 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/07/05,4.564627276954168 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/06/26,7.709489224676669 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/07/04,5.210502202499996 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/08/06,7.86416124404762 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/07/28,3.816502463356666 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/08/05,12.032983335753334 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/09/06,9.32373333418832 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/08/30,7.972184090570003 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/10/09,7.069574994750009 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/09/23,5.693391667094176 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/10/01,12.978266668051672 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/09/22,6.260933333668347 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/11/10,5.82502579104762 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/10/25,5.563943960529169 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/11/09,3.587843137179486 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/12/03,10.073672107365825 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2020/12/11,4.628279173211663 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/02/05,8.542351676176661 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/02/06,6.153080194453975 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/01/28,5.978104167776658 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/03/02,7.801199999515013 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/02/21,4.221250000000001 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/03/10,5.029152696923066 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/10,11.304708335200838 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/03,8.928741670984161 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/03/25,4.321481664801672 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/02,3.383525000000005 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/26,9.437570833093336 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/04/27,12.044274999969993 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/06/29,9.457054166666673 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/07/07,7.873550000144997 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/06/30,9.09675256444006 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/07/24,16.947100000712517 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/08/08,4.004988461538457 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/07/23,3.707275000000004 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/10,5.771136367850001 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/08/25,16.866275000362517 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/09,6.180937504504991 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/02,5.445371266811665 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/08/24,14.882491666904173 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/26,3.2880960649566657 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/10/11,3.278949853333326 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/09/25,3.441543179999994 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/11/04,7.921399989822501 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/10/28,8.949297286454437 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/11/05,5.07910000007249 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2021/11/24,5.781212588974355 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/01/07,12.926708333533345 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/01/08,7.392613577226984 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/02/01,8.422445836713328 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/02/01,5.927318120657817 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/01/31,3.834419230769224 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/01/24,10.868116666666678 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/02/24,4.188300000000001 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/03/04,8.695415384615377 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/02/24,3.977797729999998 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/03/28,4.239499999970009 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/04/05,3.361272120769229 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/03/29,6.119762073846147 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/03/28,6.9398302438461466 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/08,4.8866074348116575 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/04/30,3.9026674366666616 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/04/29,4.81153713738083 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/04/22,3.55673744230769 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/06/05,4.123572719999995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/31,5.6512875034275005 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/06/08,5.0051489892307615 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/31,8.127066664849174 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/24,3.266773498333327 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/05/23,2.7330772500000022 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/09,3.111772719999997 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/04,3.0160704399999987 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/11,4.513104564999993 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/10,4.878909113628332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/03,3.57141212333333 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/02,8.758515156048338 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/06/25,4.017691780448716 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/06/24,3.2335057607692272 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/26,6.713061527825272 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/11,3.512725000000007 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/03,12.22194999851252 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/07/26,7.310943335193332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/09/10,4.603240910289999 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/29,9.09588333352332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/24,5.628011350072499 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/28,4.068396983333329 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/08/27,8.046843131868119 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/02,10.473165834710844 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/06,5.220177418739162 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/09/29,3.9162234040386528 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/09/21,3.675789830769227 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/08,4.942221260576913 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/07,3.2716121199999977 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/30,3.229781819999999 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/23,4.444175000529994 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/10/22,2.9115188199999995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/22,8.857330421304157 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/12/10,5.508796530769221 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/24,4.992933338133332 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/11/23,2.25275454 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/01/11,2.318102250000002 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/12/26,5.846237480256405 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2022/12/25,12.279825001400011 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/02/04,10.583666666666684 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/03/07,3.27432500000001 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/04/09,8.862516930626736 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/04/08,11.694338609999988 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/04/01,3.775348449999997 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/09,7.480463256714176 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/04/22,7.321374996255007 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/10,19.520962502775 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/31,15.931608332310836 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/06/04,9.141768218120005 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/06/03,13.569674999737494 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/27,22.564700002537496 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/05/26,4.029190910144998 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/06,6.14728881564102 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/05,10.904683333720833 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/06/27,2.6690795000000027 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/24,9.095140000119985 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/08/06,7.718594707076667 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/30,8.347030884944289 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/07/22,3.967954119999995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/09/11,4.417489772989999 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/09/06,5.156912728144995 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/09/08,8.250922561610952 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/08/31,3.805091663623333 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/08/30,10.399750000119994 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/08/22,8.110969326351665 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/08,7.527640834658329 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/03,12.255337500755015 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/02,5.392763607179481 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/01,13.191454394739162 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/11/03,3.174900489999999 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/11/02,10.339474999922489 -Owasco Lake,22026928,-76.51021647038027,42.83445949711756,2023/10/25,22.45758333469332 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/01/05,3.7668439138461514 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/01/05,3.7668439138461514 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/02/05,22.407050000000005 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/02/05,22.407050000000005 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/05,7.694591659809171 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/04/26,5.142554167316671 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/04,4.587242046529993 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/05,7.694591659809171 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/04/26,5.142554167316671 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/04,4.587242046529993 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/06,8.072142804817492 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/28,4.360227083130844 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/29,7.232897734143325 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/06,8.072142804817492 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/28,4.360227083130844 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/05/29,7.232897734143325 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/29,6.049924996055008 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/22,7.646324029132771 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/07,10.792491667174184 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/29,6.049924996055008 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/06/22,7.646324029132771 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/07,10.792491667174184 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/09,7.370548610968609 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/31,7.038148644019998 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/24,5.859933333618336 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/01,8.01803951250019 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/23,10.827533331660836 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/09,7.370548610968609 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/31,7.038148644019998 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/24,5.859933333618336 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/01,8.01803951250019 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/07/23,10.827533331660836 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/25,5.821790910072504 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/09,8.986758333380841 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/02,3.0359000000000003 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/08/25,5.821790910072504 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/09,8.986758333380841 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/02,3.0359000000000003 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/03,23.60554166666666 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/26,8.539849984694994 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/11,3.4255622374358974 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/04,10.477018748832492 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/25,20.50538333331832 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/03,23.60554166666666 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/26,8.539849984694994 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/11,3.4255622374358974 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/10/04,10.477018748832492 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/09/25,20.50538333331832 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/11/04,9.172985608333349 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/11/05,5.037268267307682 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/11/04,9.172985608333349 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2015/11/05,5.037268267307682 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/01/07,8.731996947369446 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/01/07,8.731996947369446 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/03/03,4.503240197115384 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/03/03,4.503240197115384 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/04/05,8.68726583745083 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/03/27,6.9520615313625 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/04/05,8.68726583745083 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/03/27,6.9520615313625 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/07,8.447338651217509 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/04/21,8.174438637965006 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/07,8.447338651217509 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/04/21,8.174438637965006 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/23,11.861558194849438 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/07,8.044534015698334 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/31,6.843908335273333 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/23,11.861558194849438 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/07,8.044534015698334 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/05/31,6.843908335273333 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/01,11.67991041364167 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/24,6.710775756881675 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/02,2.4669522500000056 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/23,21.29923333513832 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/01,11.67991041364167 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/24,6.710775756881675 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/02,2.4669522500000056 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/06/23,21.29923333513832 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/11,6.255974060581658 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/02,7.874325000092519 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/26,5.806362506732495 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/03,9.487466676499166 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/11,6.255974060581658 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/02,7.874325000092519 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/07/26,5.806362506732495 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/03,9.487466676499166 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/03,8.90807651333334 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/27,9.102850000000007 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/11,7.727758347228335 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/04,7.577576533333337 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/03,8.90807651333334 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/08/27,9.102850000000007 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/11,7.727758347228335 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/04,7.577576533333337 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/10/05,7.977155300072503 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/28,7.145713256761672 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/10/06,5.730632731999995 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/27,3.76491147 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/10/05,7.977155300072503 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/28,7.145713256761672 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/10/06,5.730632731999995 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/09/27,3.76491147 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/11/06,6.100795828805848 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/11/07,11.928971616410234 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/11/06,6.100795828805848 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/11/07,11.928971616410234 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/12/09,6.541274999985003 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2016/12/09,6.541274999985003 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/01/01,4.82224545 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/01/01,4.82224545 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/10,22.47810000000001 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/10,22.47810000000001 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/26,10.14150833333336 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/19,11.063595840218332 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/27,12.066986359999984 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/26,10.14150833333336 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/19,11.063595840218332 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/02/27,12.066986359999984 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/08,6.601452088511673 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/03/23,10.541593751172504 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/08,6.601452088511673 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/03/23,10.541593751172504 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/24,6.736921985730833 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/23,3.644900696666665 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/24,6.736921985730833 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/04/23,3.644900696666665 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/11,8.197215011142506 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/02,8.779290932874998 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/10,3.939701137762498 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/11,8.197215011142506 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/02,8.779290932874998 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/10,3.939701137762498 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/04,25.52003750137001 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/05,13.703425756904142 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/26,10.175690910094996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/04,25.52003750137001 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/05,13.703425756904142 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/06/26,10.175690910094996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/29,6.441340910482506 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/06,5.4581750023175015 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/07/29,6.441340910482506 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/06,5.4581750023175015 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/30,6.475920820280843 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/07,8.923125001014993 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/22,6.757605910000003 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/30,6.475920820280843 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/07,8.923125001014993 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/08/22,6.757605910000003 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/01,9.120225000000003 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/22,4.001419808301072 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/23,11.34959863199999 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/01,9.120225000000003 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/22,4.001419808301072 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/09/23,11.34959863199999 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/24,3.2407272752150025 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/25,6.045284931999996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/24,3.2407272752150025 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/10/25,6.045284931999996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2017/12/04,4.358199999712511 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/01/28,10.752358333048331 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/02/05,13.523149999952496 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/04/02,3.851050000567508 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/03/26,10.386539590195833 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/03/25,9.841214033219426 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/05/05,3.4806840902175016 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/06/05,3.089485829855833 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/05/29,7.278901523525833 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/05/28,5.798125000072494 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/07/07,25.070562499755013 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/06/30,11.101250000047504 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/07/08,12.964311360047471 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/06/29,11.228299999974997 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/08/09,8.243400000507505 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/09/02,3.958512123810833 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/08/24,9.468536666951662 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/08/25,14.361716667066656 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2018/11/04,5.865158335775825 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/02/08,4.599085527884605 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/02/01,21.77565833333335 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/03/04,22.26459166666668 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/05/08,4.766450000144996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/06/08,5.174703036808338 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/06/01,11.51310416551418 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/06/09,18.89743333333332 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/05/31,16.718875000457512 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/07/10,8.966372915574166 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/07/03,7.787100170400268 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/08/11,4.120593940506666 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/07/26,13.01208126058752 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/08/03,11.71480000012 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/07/27,10.735270449999996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/09/05,3.797981056884165 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/09/04,5.749644130769229 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/09/28,9.362470833428327 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/09/21,5.551496963405834 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/11/08,10.116166666666684 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/10/23,11.786140722963342 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2019/11/23,7.375699999999994 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/01/02,11.83326731247594 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/04/07,4.296511874885236 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/03/22,12.278102791720269 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/05/02,7.346075031772501 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/05/25,9.95816666783666 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/05/26,4.815494101999994 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/07/05,7.808537500075001 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/06/26,4.318168332183332 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/07/04,3.878536349999997 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/08/06,7.150812361906108 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/07/28,7.6612250000625 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/08/05,14.96663003998001 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/07/29,7.544782576859166 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/09/06,12.530558333428328 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/08/30,3.1184817500000026 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/10/09,4.110141665661668 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/09/23,7.822485415209181 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/10/08,3.2935942307692314 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/10/01,4.370679057692301 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/09/22,14.720741668966662 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/11/10,8.224072097967772 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/10/25,12.687542395984996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/11/09,5.472102719435892 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2020/12/03,8.47857291666419 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/01/28,22.373083333333344 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/03/02,10.504633333333349 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/10,3.845479047871546 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/03,8.804675002170006 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/02,5.185778792046666 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/26,5.848528748110004 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/04/27,3.568927250000006 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/06/29,14.47810223574668 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/07/07,10.871432656425846 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/06/30,8.507128330841727 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/06/21,21.77349999969251 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/08/09,15.00420000136252 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/07/24,7.714704153614175 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/08/08,11.242500000072498 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/09/10,3.732100002107498 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/08/25,13.108439999240012 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/08/24,14.644187880047507 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/09/26,4.108987876956663 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/10/11,4.462535021999996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/09/25,4.941181819999998 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/11/04,7.55972499647001 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/10/28,11.144224635026674 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/11/05,16.47927255158593 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2021/11/24,10.314712526410254 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/01/08,6.15042191056032 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/02/09,13.328791666619166 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/02/24,8.425033333010859 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/02/24,8.67117499952502 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/04/05,13.139049999999996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/03/29,7.9856986123076865 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/08,3.232072734999995 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/04/30,16.647016705839196 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/04/29,7.8498187347775 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/04/22,3.554644230769229 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/06/05,3.09214393333333 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/31,6.978602281540004 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/31,20.099825000175 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/24,5.720141670192496 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/05/23,4.473324999999996 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/09,10.401878636714995 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/04,6.561151110873609 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/06/22,8.299381664661677 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/11,9.752142781027766 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/10,12.067850001292516 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/03,7.485925007699998 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/02,5.112574997132503 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/06/25,4.805087628205127 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/06/24,7.482889551999992 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/07,10.974175000427516 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/26,6.888081820000008 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/11,3.109425000000007 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/03,16.080100002300018 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/07/26,8.198284090312502 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/09/10,4.6180710614058285 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/29,13.770404087491563 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/24,4.252053043695829 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/28,9.711054688739164 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/08/27,8.233419848666667 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/02,13.828970661705828 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/06,4.290691901999995 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/09/21,21.316991665519197 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/31,7.985074993927505 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/08,2.9126010557692283 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/07,3.723828669999997 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/30,6.014283337673326 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/23,15.113658333533316 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/10/22,5.366129688739163 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/22,7.357252088215837 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/12/10,5.881993615384604 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/24,5.379741679919992 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/11/23,4.480531938739167 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/01/11,18.17640833401333 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/12/26,5.762356304615378 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2022/12/25,3.2285250000000074 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/02/03,6.9619249993100025 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/02/20,7.528733333333337 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/03/07,3.1762750000000053 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/02/27,4.98342614035 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/03/26,16.149475000610025 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/04/09,10.98021134469499 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/04/08,15.425003320816698 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/04/01,3.655709956666664 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/09,8.366823333808322 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/11,4.036053033333326 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/10,14.855778366788329 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/02,3.4930545000000053 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/04/24,6.602631126153844 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/06/05,15.446358332568334 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/31,11.445616666451649 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/06/04,8.473404049092494 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/06/03,20.48896666749417 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/27,21.54651666695166 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/05/26,8.897333333405841 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/06,10.720218001538456 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/05,15.04576527777776 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/24,14.216293749880004 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/07,12.599550000072515 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/06,12.342454543380816 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/30,10.058050000049992 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/07/22,12.59658334053333 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/09/06,8.405087361601106 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/09/08,3.620450000000009 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/31,3.971155457072496 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/30,3.215950000000007 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/23,7.622200000284994 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/08/22,9.25382425673916 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/10/08,7.528405418566662 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/10/03,7.132849999280011 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/09/28,3.697821966811663 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/10/02,3.9383273749999934 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/10/01,14.407421061333324 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/11/03,8.489525003449986 -Otisco Lake,22026932,-76.29090774104822,42.87138706162986,2023/11/26,14.397633345175846 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2014/12/30,13.05596666642917 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2014/12/30,13.05596666642917 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/07,7.1708208382433325 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/04/28,9.752297772858334 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/06,6.681033333380842 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/04/29,4.0964070884615325 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/07,7.1708208382433325 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/04/28,9.752297772858334 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/06,6.681033333380842 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/04/29,4.0964070884615325 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/30,15.351625000000002 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/23,3.2363772713774943 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/30,15.351625000000002 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/05/23,3.2363772713774943 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/07/10,20.62958333295082 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/06/24,3.5538922679999945 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/07/02,2.6042250000000053 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/06/23,8.767375000262495 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/07/10,20.62958333295082 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/06/24,3.5538922679999945 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/07/02,2.6042250000000053 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/06/23,8.767375000262495 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/02,12.960625009610007 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/10,3.958086389999992 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/03,4.413699999999991 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/02,12.960625009610007 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/10,3.958086389999992 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/03,4.413699999999991 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/03,10.48971667358667 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/11,9.115100004265004 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/04,12.3421 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/26,9.286421361999992 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/03,10.48971667358667 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/11,9.115100004265004 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/04,12.3421 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/08/26,9.286421361999992 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/05,5.8395064431941615 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/28,20.967216666376675 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/06,12.95769404199998 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/27,15.2285174233333 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/05,5.8395064431941615 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/28,20.967216666376675 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/06,12.95769404199998 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/09/27,15.2285174233333 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/30,13.091300015837502 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/22,17.27598333327084 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/30,13.091300015837502 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/10/22,17.27598333327084 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/12/08,6.930429550357502 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/11/22,11.617983335190832 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/11/23,20.84917499950001 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/12/08,6.930429550357502 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/11/22,11.617983335190832 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2015/11/23,20.84917499950001 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/01/25,22.34590833333334 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/02/02,12.588010834003342 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/01/25,22.34590833333334 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/02/02,12.588010834003342 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/06,7.605849584690828 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/02/27,14.21088750097002 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/06,7.605849584690828 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/02/27,14.21088750097002 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/07,13.492391671806676 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/29,4.60256591512 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/22,13.287233611158594 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/30,4.1426136413949965 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/07,13.492391671806676 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/29,4.60256591512 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/22,13.287233611158594 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/03/30,4.1426136413949965 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/05/09,3.072150000522502 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/30,3.418041667046667 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/22,6.924334100722491 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/05/09,3.072150000522502 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/30,3.418041667046667 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/04/22,6.924334100722491 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/05/25,6.358025000332487 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/02,12.702275000309994 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/05/25,6.358025000332487 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/02,12.702275000309994 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/03,4.468764402952504 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/26,14.455108349695834 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/11,7.1284310756724905 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/04,3.765152189999996 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/25,6.591158335705841 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/03,4.468764402952504 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/26,14.455108349695834 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/11,7.1284310756724905 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/04,3.765152189999996 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/06/25,6.591158335705841 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/04,10.43712727009501 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/05,6.303400000857493 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/27,7.433861349999988 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/04,10.43712727009501 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/05,6.303400000857493 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/07/27,7.433861349999988 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/05,11.877651666961656 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/29,10.703509090000004 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/28,8.008291666714175 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/05,11.877651666961656 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/29,10.703509090000004 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/08/28,8.008291666714175 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/07,9.044291667446668 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/30,5.817574995180007 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/21,15.73199402807276 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/29,16.484391666761663 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/22,17.609066666761656 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/07,9.044291667446668 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/30,5.817574995180007 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/21,15.73199402807276 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/29,16.484391666761663 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/09/22,17.609066666761656 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/11/08,17.263929185161672 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/11/01,19.56488334272332 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/23,25.42380834023333 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/24,6.220675000627497 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/11/08,17.263929185161672 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/11/01,19.56488334272332 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/23,25.42380834023333 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/10/24,6.220675000627497 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/10,5.701090920262503 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/11,4.920950000507494 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/02,5.18368138461538 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/10,5.701090920262503 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/11,4.920950000507494 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/02,5.18368138461538 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/27,11.72936666705166 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2016/12/27,11.72936666705166 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/03/09,4.970411471352734 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/02/28,8.379555426744156 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/02/20,21.32310833333335 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/03/09,4.970411471352734 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/02/28,8.379555426744156 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/02/20,21.32310833333335 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/10,9.318033339765831 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/09,3.219345507435897 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/02,3.600179883846152 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/10,9.318033339765831 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/09,3.219345507435897 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/04/02,3.600179883846152 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/05/11,15.694950000200002 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/05/11,15.694950000200002 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/05/27,5.0457311024516684 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/05/27,5.0457311024516684 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/06/28,5.599312164683333 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/06/28,5.599312164683333 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/07/31,7.334961360772499 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/08,7.112750000697491 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/07/30,3.4479657613333257 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/07/31,7.334961360772499 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/08,7.112750000697491 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/07/30,3.4479657613333257 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/01,8.18571666676167 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/23,7.386575000012504 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/31,2.974380250000002 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/24,12.094491841999986 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/01,8.18571666676167 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/23,7.386575000012504 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/31,2.974380250000002 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/08/24,12.094491841999986 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/10,8.345475000095004 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/03,10.517108338293337 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/24,17.208858333380835 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/02,3.7415124557692256 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/25,4.356737281999994 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/10,8.345475000095004 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/03,10.517108338293337 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/24,17.208858333380835 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/02,3.7415124557692256 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/09/25,4.356737281999994 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/11/11,3.072552275579997 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/11/04,7.334399993540013 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/27,7.388536746410836 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/11/11,3.072552275579997 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/11/04,7.334399993540013 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/10/27,7.388536746410836 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2017/12/06,5.387175010190009 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/02/08,22.451158333333343 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/04/05,19.014056250000003 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/04/28,3.974225892307684 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/04/21,4.6087204649999975 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/06/08,8.634325000144997 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/05/30,6.720275000600001 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/05/23,4.824984089999995 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/07/09,11.3582750073325 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/07/02,5.766063257726667 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/07/10,4.015790673076916 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/07/01,10.353383333570829 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/06/24,3.4135772500000057 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/08/10,6.855274999930004 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/08/27,13.296836670116654 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/09/27,3.194737143333328 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/10/05,16.00375075704665 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/09/28,4.756334100094994 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/12/08,15.02550000632501 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2018/11/22,5.02375795076922 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/01/01,6.7391421570035694 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/01/02,6.137679449999994 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/02/11,9.207283335518332 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/01/26,8.168491668651669 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/04/23,10.012115839035834 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/06/10,19.24067499919499 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/06/03,10.531655059116307 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/05/26,6.776 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/07/05,3.891290910699992 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/06/26,4.133816675362493 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/07/28,9.413100018555 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/08/05,18.357983337933334 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/07/29,6.6357916667141685 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/09/07,19.24738916666665 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/08/29,6.233574994935009 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/09/06,11.176004167956664 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/08/30,4.539250000072494 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/10/09,10.031937500890006 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/09/30,15.654220833213335 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/10/08,16.655858333413345 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/09/22,15.432827083478344 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/11/09,9.50111666761665 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/11/02,5.361800001004999 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/10/24,4.019913639999995 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/12/03,21.205470833360845 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/12/11,2.9286255000000017 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2019/11/25,13.28197499956999 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/01/05,13.443024999784985 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/03/01,13.577083333190831 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/02/29,9.914208334055845 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/04/01,5.72152044999999 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/04/25,10.023066669299157 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/05/03,5.062224999999997 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/05/27,5.854783333930835 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/06/04,5.375889050909998 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/06/21,4.4779083334783225 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/07/06,4.139430481999993 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/08/08,11.09876250018999 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/07/30,11.361534482288342 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/07/31,8.01500089199999 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/09/09,9.470941709451669 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/08/31,9.81100000069501 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/08/24,11.161529172179169 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/09/08,14.406700000142502 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/08/23,15.516325002300013 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/10/11,12.888811665991666 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/09/25,11.462666700941677 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/10/10,23.334999999955 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/01/07,10.705616666666677 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2020/12/29,10.208850298933704 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/01/23,21.791766666666685 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/03/11,13.155131666524174 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/03/04,12.205549999809994 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/04/05,9.749911665544165 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/03/27,9.70608291432666 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/04/04,16.387200009200026 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/05/07,3.1665734886958297 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/05/06,3.788040910435005 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/06/07,6.7551795468341735 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/07/10,4.520819698768323 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/06/24,3.711743179999991 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/06/23,4.372477100072494 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/11,15.489970833333324 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/02,9.706531251140014 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/07/26,11.410283333533345 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/10,2.746425000000004 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/03,15.086800000072484 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/09/03,9.08412500047 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/09/11,25.102700004979987 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/09/04,16.061341666666642 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/08/26,11.614733333570827 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/06,12.481244028162774 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/09,5.415912126666659 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/07,4.616858498666664 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/04,12.372708334303343 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/10/29,5.039150861999997 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/12/09,4.470547754807692 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2021/11/23,5.81173283076922 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/02/02,11.452925000707506 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/01/25,10.252958333118343 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/03/30,6.220374995595008 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/03/22,7.497158772320001 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/09,5.892343941739175 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/10,4.884740929999993 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/09,3.623650009999997 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/01,4.193925004999993 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/03,4.190400000917494 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/02,5.252475000507494 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/05/25,6.564925001099998 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/07/11,3.6674840902899946 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/29,7.663693180072503 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/24,4.839672730845001 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/07/04,14.44117499935498 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/06/26,19.036841712714207 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/07/28,6.215024999050007 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/08/06,3.775170123076919 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/07/29,8.429550000579994 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/08/31,3.9899734837683294 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/08/30,3.563427250000005 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/08/29,4.29746346153846 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/10/09,9.123789542 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/10/08,5.796903172072498 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/07,7.049324248785831 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/10/26,5.0405873417274965 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/10,4.097686584615379 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/09,5.109773611999996 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/02,3.6267955457692262 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/10/25,4.29753918692346 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/24,11.51748619225368 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/12/04,4.880646510769219 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2022/11/26,4.045781299038458 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/01/28,14.73973333323834 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/02/21,24.758566667599176 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/07,7.300147590474167 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/10,5.208639581999989 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/03,4.106030323333327 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/02,4.155902881811663 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/27,4.240272107435894 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/04/26,8.109111367154151 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/05/26,8.522611361182502 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/06,8.622250000264998 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/05,16.437158332953334 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/05/29,4.578549999999991 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/05/28,19.954341685114198 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/07,6.660009091010007 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/30,18.22660833329832 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/22,5.270045469999993 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/06/21,2.855004500000005 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/08/05,10.203316677826662 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/31,17.496304166929168 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/26,2.498218181667501 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/08/09,9.994766666739157 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/08/01,4.169459278846151 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/31,17.3138750000725 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/24,6.748350000602499 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/07/23,13.203291673639166 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/08/22,13.478729167051652 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/09/02,11.609995833428329 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/09/01,7.464020440072497 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/10/04,2.7583977799999984 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/10/03,3.201231820072498 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/09/26,9.804116666714146 -Cossayuna Lake,22287717,-73.42324659191125,43.20637016343641,2023/11/28,3.273119249999997 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2014/12/29,3.112600000000005 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2014/12/29,3.112600000000005 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/03/11,12.016941667251665 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/02/23,22.26459166666668 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/03/11,12.016941667251665 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/02/23,22.26459166666668 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/04/28,14.102275010237488 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/05/06,19.129500025300025 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/04/28,14.102275010237488 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/05/06,19.129500025300025 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/05/30,17.07443750241001 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/06/07,13.757416666666655 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/05/30,17.07443750241001 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/06/07,13.757416666666655 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/02,23.83167000009499 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/10,13.064508333575834 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/02,23.83167000009499 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/10,13.064508333575834 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/03,6.594875001597498 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/11,2.8529727092032964 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/26,4.939137341999998 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/03,6.594875001597498 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/11,2.8529727092032964 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/08/26,4.939137341999998 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/10/05,16.919058333333318 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/27,11.129825000072508 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/10/05,16.919058333333318 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/09/27,11.129825000072508 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/11/22,8.665337498257502 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/11/30,12.632833333118322 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/11/22,8.665337498257502 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2015/11/30,12.632833333118322 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/02/02,14.793275000570002 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/02/02,14.793275000570002 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/02/26,12.486102083585845 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/02/26,12.486102083585845 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/03/29,11.060113660985005 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/03/29,11.060113660985005 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/04/30,14.564991669451643 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/05/08,4.043355499999993 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/04/30,14.564991669451643 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/05/08,4.043355499999993 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/03,17.828668363968337 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/11,10.219737499999995 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/06/25,12.99490836333332 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/03,17.828668363968337 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/11,10.219737499999995 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/06/25,12.99490836333332 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/08/04,17.506400011595016 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/27,13.277922058974331 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/08/04,17.506400011595016 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/07/27,13.277922058974331 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/05,19.38255075666666 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/08/28,20.021574999784985 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/05,19.38255075666666 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/08/28,20.021574999784985 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/07,6.558866660000002 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/21,3.964682434811661 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/29,5.397000000549996 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/07,6.558866660000002 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/21,3.964682434811661 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/09/29,5.397000000549996 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/11/08,25.387475004600034 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/23,23.71531668046669 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/31,3.329371530769226 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/11/08,25.387475004600034 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/23,23.71531668046669 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/10/31,3.329371530769226 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/12/10,11.269650000450005 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/12/10,11.269650000450005 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/01/11,19.156106250437496 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/12/26,24.44116666666665 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/01/11,19.156106250437496 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2016/12/26,24.44116666666665 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/03/08,4.953800307435895 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/02/20,19.309981250237502 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/03/08,4.953800307435895 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/02/20,19.309981250237502 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/04/09,20.35105833812334 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/04/09,20.35105833812334 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/05/03,6.704149994597515 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/05/03,6.704149994597515 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/05/27,3.203375000000002 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/05/27,3.203375000000002 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/06/28,3.1743250000000063 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/06/28,3.1743250000000063 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/07/30,24.62467500919997 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/07/30,24.62467500919997 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/09/24,25.77571833333336 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/10/02,9.943279072435894 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/09/24,25.77571833333336 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/10/02,9.943279072435894 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/11/11,24.14989528501027 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/11/11,24.14989528501027 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2017/12/29,9.723600000000014 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/05/30,6.283109597191546 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/07/09,17.513483333070848 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/08/10,20.675137503855023 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/09/03,3.681465909999993 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/09/27,6.367260613405832 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/10/05,4.224350059999998 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/12/08,21.91584166619168 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2018/11/22,3.2996883630769207 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/01/25,3.0017260507692303 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/05/09,7.31761249280251 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/04/23,16.610536667491658 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/05/25,18.63945000002249 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/06/26,2.738412876666664 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/07/04,5.753000001084996 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/07/28,13.300500000095 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/08/05,15.859685140769216 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/08/29,7.00255151355084 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/10/08,10.148225000072475 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/09/22,12.088750004599992 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/11/09,4.528290970000001 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/10/24,11.133728786666657 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/12/03,8.453739587168329 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2019/12/11,6.338156852820506 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/02/05,9.267508333495858 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/01/29,15.37376250195999 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/03/08,8.516899999715013 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/02/29,11.232575000000006 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/04/01,10.667163669999995 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/04/25,15.95561666597667 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/05/03,4.993234709999995 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/05/27,20.437941666666678 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/06/04,8.423341670116665 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/07/07,6.197270829880848 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/06/21,3.0739967982051244 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/07/06,11.743375008049998 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/08/08,8.12609459238095 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/09/09,15.56558409014249 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/08/31,8.921569696739168 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/08/24,4.87423484710166 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/08/23,11.281800000237492 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/10/11,11.461117370743612 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/09/25,16.467880417526676 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/10/10,19.35775833333334 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/11/03,7.985487499347511 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/11/28,6.4437749947050085 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2020/12/29,17.433542425775816 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/04/05,13.788983334253333 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/03/27,6.807199993615006 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/04/04,3.292025000000005 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/05/07,14.092620831590825 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/05/06,7.879201526220836 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/06/07,3.493488679999997 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/07/10,3.342079837435892 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/06/24,2.18265 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/08/11,16.727272916524168 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/08/02,11.272808333875842 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/07/26,14.339891668724162 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/07/25,7.5275000003624974 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/09/03,18.358724999984997 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/09/11,22.813725004600023 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/08/26,5.039475000554992 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/11/06,16.783170832195843 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/11/09,21.75335834253334 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/11/04,3.605989438333334 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/10/29,11.655504077435886 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2021/11/22,5.601324994490008 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/03/22,13.885700006947491 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/09,19.89595167131417 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/09,6.482850000047497 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/01,7.597608326666664 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/26,6.357024997115004 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/10,4.103549999999998 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/02,11.412787499999997 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/05/25,7.398396327681546 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/29,3.633994696811663 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/24,2.8918659099999986 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/07/04,6.086208336868327 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/06/26,2.407397729999999 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/07/28,10.9529303 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/07/28,3.2171 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/08/31,5.848723114863337 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/08/29,3.1382749999999944 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/10/09,18.624991666666684 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/10/04,9.429474991925 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/10/08,3.9802750000000007 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/10/26,6.204549995780008 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/11/09,4.289855846153843 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/11/01,4.512149296153837 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2022/12/27,14.874828030047471 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/01/28,13.408584090142485 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/02/27,8.875033353228325 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/04/07,10.9110532737725 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/04/10,5.439124440769223 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/04/02,6.720383341666653 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/04/26,4.527226925511664 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/05/26,8.011139770119998 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/06/05,5.015229171056664 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/05/28,4.008700000072492 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/06/21,4.431610973076924 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/07/31,22.54162666673917 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/07/31,3.395925000000006 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/07/23,6.475160606761681 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/09/01,7.745375000000001 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/08/22,3.4864846948841626 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/09/09,4.728190444102557 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/09/01,2.4614081999999997 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/10/03,3.764486999666664 -Round Lake,22289687,-73.78274615659471,42.934019979060366,2023/10/27,3.268626009999999 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/01/05,11.481366666651663 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/02/06,21.791766666666685 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/02/23,22.373925000000007 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/04/28,8.788410432336676 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/05/06,3.8067725863333295 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/06/06,22.10187916752168 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/05/30,6.40943562946083 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/05/29,8.46250000471999 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/05/22,5.019725 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/07/08,7.208579163001672 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/06/22,6.82009166636667 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/06/23,12.901225000310012 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/08/09,2.762038930769231 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/08/02,21.919666667451654 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/03,5.963695820800841 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/08/25,2.380715892857144 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/11,2.5234912750000014 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/02,9.754766666881672 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/10/05,9.605720828993348 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/26,13.777733342580827 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/10/04,8.948250000262478 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/09/27,3.507371179807687 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/11/05,3.737564999999996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/11/29,4.599071388666661 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/11/22,4.951428495586079 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/12/07,2.4327136182692275 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2015/11/30,2.8886567501200027 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/01/08,13.945775000337497 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/02/10,10.047558333333347 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/02/02,14.260150000237516 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/02/26,10.870581249905 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/05,13.453641122828602 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/03/29,12.354933341993345 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/30,6.237062911739164 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/21,4.769885610795831 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/05/08,2.3096522500000027 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/29,2.734710025000002 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/04/22,5.927640917409999 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/05/23,9.136758334808333 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/06/09,4.639598617427687 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/05/31,13.940783333333329 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/05/24,19.926575000400007 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/07/03,11.182029185186671 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/06/24,7.985600002064997 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/06/25,2.815021836538463 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/11,7.617679175394167 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/04,2.6784038 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/07/26,4.369939819953563 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/03,4.554825000217496 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/07/27,4.145315919999994 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/05,3.192190146666663 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/27,3.580792428768329 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/04,3.4592499999999986 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/08/28,12.635833333570822 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/10/07,4.061761374999996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/28,4.343518750140007 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/21,2.9921242416666614 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/10/06,2.4658828057692284 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/09/29,3.283855986538458 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/11/08,4.244503196999997 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/10/23,7.737963654999995 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/11/07,2.768989393269229 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/10/31,3.027500000000007 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/12/10,8.6651948952375 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/11/23,3.38847481153846 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/01/02,22.30574166666668 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2016/12/26,24.44116666666665 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/02/03,22.64890000000001 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/03/08,12.769141666571665 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/02/20,20.733483333285857 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/04/09,14.224058336973323 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/04/24,6.2967000001925 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/05/11,4.613263638404996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/06/11,8.319160832760838 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/06/03,8.190041666046676 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/07/05,2.797152250000006 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/06/28,3.2064295000000067 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/07,22.34878335024085 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/06,2.522102250000006 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/07/30,3.3765056189102505 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/09/08,18.34201907889166 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/30,5.430184090767504 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/23,5.743410833948336 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/08/31,9.053375000384994 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/10/01,4.353963719999992 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/09/24,2.827005149666665 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/10/02,3.3068572314102536 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/09/23,3.885449099999994 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/11/11,7.258545464999993 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/11/10,3.1349545000000023 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/10/25,18.23310833373334 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2017/12/04,14.628980986824995 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/01/06,21.67155833333335 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/02/06,9.869816666666685 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/03/26,20.76508958538586 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/05/05,9.426450018447497 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/04/28,4.402111915384611 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/05/29,4.550616294528335 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/05/30,3.765249999999993 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/07/09,4.20909851340583 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/06/30,11.723899995129996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/06/22,4.8346261460916615 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/08/10,3.7222182199999936 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/08/09,5.759149999999997 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/09/03,2.976777250000004 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/08/25,9.18773334140582 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/09/27,12.947774999572522 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/10/05,5.007050000072503 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2018/11/22,2.607002249999999 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/02/10,11.016541667051673 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/03/06,22.26459166666668 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/02/26,21.791766666666685 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/05/09,10.859916667874163 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/04/23,6.398197734999996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/05/08,8.716441675914156 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/04/22,9.892568742055 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/06/01,9.037573333005852 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/06/09,2.6467777000000026 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/07/03,7.422268753692495 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/06/26,2.9587037999999963 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/08/04,11.425679167616677 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/07/28,17.38076667518919 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/08/05,2.2475204250000016 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/07/27,3.584100000000008 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/05,4.718305952380946 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/08/29,3.620933351666659 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/06,3.814140924999993 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/21,8.118877269999997 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/10/08,5.06070000007251 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/29,9.046475000144984 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/09/22,13.238758333333328 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/11/08,10.47877215344917 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/11/01,6.299524996470009 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/11/09,3.229535499999999 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/10/24,2.923669550000002 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/12/11,16.282852084038353 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2019/11/25,6.242599661538456 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/02/29,21.88613333333335 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/04/01,12.531730757236664 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/02,14.92164167126668 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/04/25,6.86344167014667 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/10,2.839425000000005 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/03,4.539915929999998 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/27,4.124183334098333 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/06/11,2.884225000000005 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/06/04,4.056699999999992 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/05/26,4.189727429999992 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/06/28,3.723661375072493 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/07/06,3.526293655769225 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/08/06,5.512128034999998 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/08/07,18.867325000072487 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/08/31,3.193012754999996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/09/08,7.541866667241669 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/10/09,6.547201521666666 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/09/23,14.37998750699501 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/10/10,3.1267500000000075 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/11/10,7.759734089999994 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/10/25,8.874308335870824 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2020/12/29,21.88613333333335 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/01/22,22.76205 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/03/02,22.34590833333334 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/04/04,13.034983333285837 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/06/06,7.7712375025175024 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/06/07,3.352025000000004 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/06/23,3.0061362499999973 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/08/02,2.7928750011425 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/07/25,4.729149710256401 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/09/03,3.3786989682051267 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/08/25,6.040314395384995 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/09/11,4.529279170006661 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/09/02,2.584802250000003 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/08/26,7.001450000120005 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/09/26,3.675662133333327 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/06,7.678658344380841 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/10/28,9.762422609047611 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/09,4.143654500072501 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/05,3.4361826394230746 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/10/29,2.5212830557692287 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/24,2.589971880769229 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/11/21,4.927658337915832 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2021/12/23,4.177008749999998 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/02/01,22.30574166666668 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/02/09,21.848400000000016 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/02/02,21.88838333328585 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/01/25,22.169733333333344 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/02/26,22.274983333333346 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/03/22,20.85704166671418 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/09,3.458038496333332 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/09,2.8537761500000016 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/08,9.72040834265332 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/01,4.820973543333326 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/04/30,5.750563654222495 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/04/23,13.38867500221751 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/06/02,11.166620833718325 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/25,6.502125000362505 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/05/24,12.426575000265 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/07/04,10.245949998197494 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/06/29,3.142158352511667 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/07/11,6.7854583367033205 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/07/03,8.810508332735845 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/06/26,2.9404436450000007 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/06/25,2.7995854 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/09/10,4.741737876714161 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/08/29,4.478303330769226 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/10/09,4.036267559031073 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/10/08,2.6401600999999992 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/09/29,2.5280521250000034 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/09/21,2.8803968399999977 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/11/09,3.291046573076922 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/11/08,1.9738884999999968 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/10/24,11.936100000200009 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/12/10,5.760390914999995 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/12/02,3.171600000145004 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/11/24,4.204065899999998 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/01/11,21.498041666666687 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/12/27,8.192049998472509 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2022/12/26,11.178424999785005 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/02/04,21.88969999969002 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/03/09,22.211958333333342 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/02/21,9.11054166664168 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/04/10,11.65381666657166 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/04/02,12.394725003354992 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/04/01,19.78151666915669 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/03/24,10.42047499978501 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/09,9.188254169666676 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/11,6.251375000000001 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/04/26,6.178465444680056 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/31,8.811443180190002 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/26,2.6583174468841677 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/06/05,6.611100002587501 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/06/04,2.7730522500000023 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/28,20.958483335180848 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/05/27,7.587000000602512 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/06/22,3.559021967101659 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/07,3.2258250000475037 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/06,3.466004549999998 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/06/21,5.298381500000002 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/08/05,2.8840772700724977 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/31,7.132930850335836 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/31,7.803725000289997 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/30,4.181137123333324 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/23,3.954461719102556 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/07/22,5.7038143955941685 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/01,4.329965910652492 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/08,8.141625000144996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/01,3.411643199999996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/08/31,3.998315156666661 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/08/23,3.975442749999994 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/28,8.59811874895502 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/10/03,4.536948349666663 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/10/02,2.9387945599999985 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/09/25,2.8953089499999987 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/11/11,2.6238681250000035 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/11/03,4.676915919999996 -Lake Pleasant,22294886,-74.37697360434669,43.47907967900648,2023/11/28,3.439675000000006 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2014/12/29,16.34655833587583 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2014/12/29,11.413269230864223 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/03/11,21.056808334625853 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/02/23,22.539900000000006 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/04/04,11.157999999785003 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/05/06,5.271950000192503 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/05/06,4.996650000457503 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/05/22,5.190724999999993 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/05/22,4.980724999999995 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/08/02,23.144745832950843 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/09/11,2.107233749999998 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/09/11,2.630006972435897 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/08/26,2.314993080000001 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/08/26,2.80141623076923 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/10/05,8.711582573333338 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/09/27,2.5616383365384605 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2015/09/27,2.540688630769229 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/02/02,10.158482820728729 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/02/02,11.389804169951669 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/03/05,20.460108333238367 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/03/05,20.460108333238367 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/04/30,6.414429561666663 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/05/08,4.7083098668116605 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/04/22,3.4154250000000035 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/04/22,3.656184100119998 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/06/09,2.4703000000000004 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/03,14.7557000276 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/11,6.537875004672495 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/11,8.856000000000009 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/06/25,2.987175 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/06/25,2.793679500047499 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/08/04,4.105338629999996 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/27,3.5787250000000057 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/07/27,3.772625000000005 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/09/05,9.701153786666668 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/08/28,13.220200000072497 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/08/28,10.736037500237494 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/10/07,8.633168799666658 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/09/21,8.411309094999998 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/09/29,8.851491668299154 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/09/29,8.155141666524154 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/11/08,5.13745454999999 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/10/23,14.531691683104178 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2016/10/31,5.36738648230769 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/02/04,13.165066666404163 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/02/04,13.349566666189167 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/02/20,15.626283333238336 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/05/11,7.693734099999993 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/05/11,3.6856863599999943 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/06/28,6.4666833360433245 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/06/28,8.638765910337494 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/07/30,2.94103625 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/07/30,2.2943102900000025 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/08/23,16.80470004149501 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/10/10,7.565432578333333 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/09/24,5.726481822347504 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/10/02,2.5302591307692293 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/10/02,2.641575773626374 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2017/11/11,4.371568999380947 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/04/28,12.315833333095838 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/04/28,12.095058333048335 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/05/30,8.994800002419977 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/05/30,5.0867500005024935 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/07/09,3.269398503333328 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/07/01,8.819125003522487 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/07/01,6.127425000669997 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/08/10,3.575874999999992 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/09/03,2.7725522500000066 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/09/03,3.1408250000000053 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/10/05,2.85334411826923 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/10/05,3.095367874038461 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2018/12/08,21.88613333333335 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/02/10,11.61798333331833 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/01/25,21.66638333333335 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/01/25,21.66638333333335 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/03/06,22.404625000000006 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/02/26,21.83503333333335 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/04/23,8.45178749954752 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/06/26,4.01897045499999 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/08/05,3.5498999999999965 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/08/05,2.590627200000004 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/08/29,10.2323500115475 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/09/06,3.6410331499999935 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/09/06,3.965287749999994 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/10/08,5.405087232307689 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/10/08,4.727637035512816 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/09/22,12.114749999999985 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/10/24,4.915577299999996 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/10/24,4.477605049999995 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/12/11,18.670681250237507 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/12/11,15.522187500000014 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2019/11/25,15.09258749990501 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/02/21,22.34590833333334 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/02/29,22.476633333333343 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/04/01,14.481583333238332 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/04/25,9.174239393333329 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/05/03,9.80800835863333 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/05/03,8.464691675939156 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/05/27,5.1668000001675 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/06/04,2.4565022500000064 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/06/04,2.7609250000000043 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/07/06,3.716498289999996 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/07/06,3.03748319 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/07/30,9.273966679799177 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/07,12.788583333118313 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/07,12.934333332903318 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/31,4.834448483790832 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/09/08,3.777684100072493 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/09/08,3.6075000003624944 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/23,3.879393199999992 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/08/23,4.12446365499999 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/10/10,8.391673506811662 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/10/10,7.350100000144998 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/09/24,12.848733333333325 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2020/09/24,12.745108333333327 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/05/06,4.4716750023000005 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/05/06,4.433271215633329 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/06/07,4.805125000000006 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/06/07,6.789375000000004 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/06/23,10.31594169656666 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/06/23,5.788233335680819 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/02,6.982825423424163 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/10,3.448756824999996 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/10,2.480091000000001 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/07/25,3.135053801666664 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/07/25,3.9614056857692224 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/09/03,8.825124999949997 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/09/11,22.02884999947752 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/26,3.815895499999993 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/08/26,4.212157935769221 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/06,3.9240350070724968 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/09,2.5272640900000023 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/09,2.5200504000000024 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/04,2.565161250000001 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/11/04,3.053294230769233 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/10/29,2.405359930769228 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/10/29,2.3659916057692283 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2021/12/24,23.455858333333325 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/01/25,10.84014166645167 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/02/02,21.67155833333335 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/02/26,15.337199999904994 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/03/30,12.718099999784997 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/03/30,12.509983333118328 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/03/22,15.96724166661916 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/09,2.876838491333331 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/09,2.879929401333332 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/09,4.155456829999997 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/09,4.265506849999996 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/01,4.495305323333327 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/01,2.903360303333332 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/04/23,13.255299999999975 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/02,3.784250713333335 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/02,3.0898795000000026 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/25,8.424600001269981 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/05/25,4.956525000647494 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/29,6.585750000407505 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/26,3.609815910000001 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/06/26,3.7682999999999938 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/08/29,3.2971250000950043 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/10/08,3.9079012799999977 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/10/08,2.473897574999999 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/09/30,11.72954166666667 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/09/30,11.562616666666669 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/09/22,15.566766666856644 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/09/22,15.533950000189977 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/10/26,23.404224999999997 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/11/09,2.467086061538458 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/11/09,2.6924242307692303 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/11/01,4.1707817501925 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/10/24,11.367375000000012 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/12/27,22.25651666666668 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2022/12/27,22.25651666666668 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/02/27,22.468850000000007 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/02/21,10.870383333048354 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/02/21,10.520133333095853 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/04/07,7.680424998495007 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/04/07,9.681024999355014 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/04/10,14.411374999952493 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/05/26,8.124937876761667 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/05,10.541650001197478 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/05,10.402200001197478 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/05/28,16.489850004672522 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/05/28,5.427325000215003 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/22,9.583943180072502 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/07,2.463799999999998 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/07,2.977848463333334 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/21,3.614175000000007 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/06/21,3.1816250000000093 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/08/05,7.590892427584175 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/31,4.020170464999992 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/31,3.685595464999992 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/23,3.3899136549999973 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/07/23,3.711015909999992 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/01,10.152593832380957 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/08/27,7.29497915258917 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/09,12.99203333333332 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/09,13.31783333333332 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/01,4.633356824999993 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/01,3.1344545499999974 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/08/24,4.024825000000006 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/08/24,3.818173463333336 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/28,11.3320750631 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/23,22.528450000095 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/10/03,4.734194557999996 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/10/03,5.206013649999997 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/25,16.07188333333332 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/09/25,18.652366669039164 -Elk Lake,22302819,-73.83191306007284,44.03252473926919,2023/11/28,21.70174166666668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/01/05,11.595375000384996 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2014/12/29,15.698988832051668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2014/12/29,15.708788832051669 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/01/05,11.595375000384996 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2014/12/29,15.698988832051668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2014/12/29,15.708788832051669 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/02/07,9.443700000000012 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/01/29,22.34590833333334 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/02/07,9.443700000000012 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/01/29,22.34590833333334 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/03/11,14.01151666834416 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/02/22,11.24415833311834 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/03/11,14.01151666834416 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/02/22,11.24415833311834 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/03,22.480808333333343 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/04,21.78088333333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/04,21.78088333333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/03,22.480808333333343 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/04,21.78088333333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/04/04,21.78088333333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/06,10.161950007019984 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/06,5.339250000602505 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/06,10.161950007019984 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/06,5.339250000602505 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/06,14.315312502385002 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/30,9.583458387168331 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/29,4.842362145918332 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/22,4.811850000072496 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/22,6.433175000000008 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/06,14.315312502385002 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/30,9.583458387168331 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/29,4.842362145918332 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/22,4.811850000072496 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/05/22,6.433175000000008 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/07/08,20.15435833333334 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/22,4.841873330838339 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/30,17.90455000040001 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/07/08,20.15435833333334 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/22,4.841873330838339 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/06/30,17.90455000040001 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/08/09,4.266835646666658 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/07/24,12.084924998297502 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/08/01,3.6769750000000023 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/08/09,4.266835646666658 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/07/24,12.084924998297502 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/08/01,3.6769750000000023 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/03,8.626491860803329 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/11,3.660706819999994 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/11,4.371508905769227 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/02,24.8506250024425 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/03,8.626491860803329 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/11,3.660706819999994 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/11,4.371508905769227 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/02,24.8506250024425 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/10/05,8.788816669016668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/26,3.4528386399999955 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/10/04,2.5445952000000016 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/27,2.5265453249999985 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/27,2.8992163615384587 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/10/05,8.788816669016668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/26,3.4528386399999955 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/10/04,2.5445952000000016 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/27,2.5265453249999985 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/09/27,2.8992163615384587 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/05,4.000099999999998 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/05,4.000099999999998 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/12/08,3.7318449019230737 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/29,7.129707583333325 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/22,13.066158332638354 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/12/07,2.426490449999999 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/21,3.504850029999994 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/12/08,3.7318449019230737 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/29,7.129707583333325 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/22,13.066158332638354 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/12/07,2.426490449999999 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2015/11/21,3.504850029999994 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/03/05,21.67155833333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/03/05,21.77565833333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/03/05,21.67155833333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/03/05,21.77565833333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/05,22.348225000000006 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/05,22.348225000000006 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/30,3.015590949999996 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/21,9.160631197357748 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/08,3.017375000000005 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/29,5.8550799433858245 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/30,3.015590949999996 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/21,9.160631197357748 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/08,3.017375000000005 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/04/29,5.8550799433858245 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/23,10.523137499617505 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/09,3.0975250000000063 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/31,5.176800504375234 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/24,11.99268333364333 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/24,12.405574999999988 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/23,10.523137499617505 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/09,3.0975250000000063 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/31,5.176800504375234 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/24,11.99268333364333 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/05/24,12.405574999999988 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/24,4.726267439704169 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/11,3.4747128817141664 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/11,3.73171212362333 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/02,17.381125000399983 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/25,2.935175180769228 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/25,5.949859089999998 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/24,4.726267439704169 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/11,3.4747128817141664 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/11,3.73171212362333 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/02,17.381125000399983 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/25,2.935175180769228 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/06/25,5.949859089999998 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/11,5.201391670824164 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/04,6.294244693670834 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/03,12.16468335518334 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/27,9.082500000072509 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/27,6.306802249999997 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/11,5.201391670824164 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/04,6.294244693670834 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/03,12.16468335518334 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/27,9.082500000072509 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/07/27,6.306802249999997 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/05,6.610918181007503 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/27,3.5752083616666592 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/04,4.150974999999995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/05,6.610918181007503 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/08/27,3.5752083616666592 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/04,4.150974999999995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/07,4.275649271666658 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/21,3.761105303333326 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/06,2.685395200000002 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/29,6.120213645481669 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/29,6.090334479082501 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/07,4.275649271666658 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/21,3.761105303333326 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/06,2.685395200000002 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/29,6.120213645481669 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/09/29,6.090334479082501 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/08,4.381292307999996 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/23,5.7438178931327775 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/07,2.7025326749999983 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/08,4.381292307999996 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/10/23,5.7438178931327775 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/07,2.7025326749999983 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/23,3.752955192307692 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/11/23,3.752955192307692 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/12/25,21.75304166666668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2016/12/25,21.75304166666668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/03/08,14.944999999905008 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/02/20,20.247183333238368 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/03/08,14.944999999905008 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/02/20,20.247183333238368 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/03/23,22.177183333333343 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/09,20.228183333285862 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/09,20.228183333285862 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/03/23,22.177183333333343 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/09,20.228183333285862 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/09,20.228183333285862 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/24,9.447853329748346 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/05/11,4.1229326333333285 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/05/11,4.264771753333329 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/04/24,9.447853329748346 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/05/11,4.1229326333333285 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/05/11,4.264771753333329 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/06/11,8.758244166094169 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/06/11,8.758244166094169 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/05,8.784358332640846 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/05,8.784358332640846 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/29,12.132899997170004 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/30,3.759507359999995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/30,5.042243426666661 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/29,12.132899997170004 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/30,3.759507359999995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/07/30,5.042243426666661 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/08/30,7.804038641739166 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/08/23,2.434111964739168 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/08/30,7.804038641739166 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/08/23,2.434111964739168 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/01,3.3361113799999966 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/09/24,3.705443944444166 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/02,2.439203499999999 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/02,3.0757332923076883 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/09/23,3.8747499999999975 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/01,3.3361113799999966 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/09/24,3.705443944444166 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/02,2.439203499999999 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/10/02,3.0757332923076883 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/09/23,3.8747499999999975 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/11/11,9.38102804333333 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/11/11,9.38102804333333 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/12/04,9.477756253792505 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2017/11/27,4.573624999970003 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/01/29,10.931250000000013 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/05/05,10.343127092993331 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/05/29,21.922008333618347 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/05/30,14.745866684061678 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/05/30,10.210670839275842 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/07/09,3.6638750000724936 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/07/08,18.38315000028251 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/07/01,4.969587503434995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/07/01,7.470025010157489 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/06/22,6.37152500353749 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/08/10,3.723693958478332 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/08/09,10.393966670391656 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/08/25,7.182966675866668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/10/04,22.439091666666677 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/10/05,2.751706800000002 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/10/05,2.9572913750000005 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/12/07,22.76205 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2018/12/08,21.867666666666683 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/02/01,21.88613333333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/01/25,21.75304166666668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/01/25,21.75304166666668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/02/26,21.75304166666668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/02/26,21.794191666666684 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/05/08,7.57784167356666 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/04/22,12.628849999904997 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/06/01,10.891787499810013 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/06/09,6.597638753345239 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/07/03,4.734194701620829 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/06/26,12.701500013872508 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/08/04,4.309510723984047 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/07/28,12.703056256677495 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/08/05,3.887424999999996 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/08/05,5.641474251666662 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/07/27,11.028250000357492 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/05,3.127796976666661 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/08/29,3.3564704507249967 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/06,3.979640904999996 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/06,5.150229524999995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/21,7.105021966666669 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/10/08,5.110243279999994 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/10/08,5.490859179999993 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/22,7.652964778004998 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/09/22,7.6773397781474975 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/11/08,4.712774998465006 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/11/09,3.5018750000000045 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/10/24,5.312425000000001 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/10/24,3.77191212833333 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/12/11,13.59475833359084 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/12/11,15.60258750049002 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/11/25,11.872974999999986 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2019/11/25,6.932674705586075 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/02/05,22.76205 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/02/21,11.114750000385005 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/03/07,21.67155833333335 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/02/29,12.157308333318326 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/02/29,11.11258333331834 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/02,12.164366687246671 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/04/25,9.791833333828333 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/03,7.620816675866662 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/03,7.997091678166655 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/27,4.116093940652495 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/06/11,3.656738461538464 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/06/04,15.835391666856651 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/06/04,2.7676750000000068 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/05/26,3.705543943333331 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/07/06,2.2379770750000008 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/07/06,3.213395961538458 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/31,8.5301250133975 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/22,5.322754167769169 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/09/08,3.5232500000000067 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/09/08,3.005250000000008 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/30,9.138950001032493 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/23,3.183652250000005 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/08/23,2.676775000000004 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/10/10,18.27495833338086 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/10/10,17.066050004600033 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/09/24,12.680958333285822 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/09/24,13.79275833333332 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2020/12/29,12.422958335585829 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/01/30,21.791766666666685 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/03/11,9.68006666666668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/02/23,22.34590833333334 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/03/26,10.857833333333351 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/05/06,4.299878963333325 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/05/06,4.226162233333329 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/06/07,2.582025000047498 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/06/07,2.368452250047499 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/05/29,23.897831666856664 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/02,7.908849168739176 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/10,3.8148545 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/10,3.876607692307688 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/07/25,3.4147795000000043 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/07/25,2.7124750000000044 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/26,14.50681666920417 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/08/26,7.5863583364408385 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/06,6.289876529109166 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/09,3.340558213 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/09,3.779320474999998 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/05,3.145950000000004 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/10/29,2.055774849999997 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/10/29,2.427389079395602 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/24,7.233670550000003 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/11/21,2.8908704000000016 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2021/12/24,10.234175000000029 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/02/26,22.47567500000001 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/04/06,11.237241666381683 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/03/29,21.791766666666685 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/09,3.991169554999993 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/09,3.922384094999992 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/09,4.089626399999997 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/09,4.851505999999994 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/08,5.363672354886671 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/01,3.138959504999998 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/01,5.44700009999999 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/04/30,5.882988650923329 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/04/22,15.609474999904997 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/31,4.811936373612498 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/26,15.132554165901665 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/26,14.158012498469995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/10,5.233222561875952 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/10,5.581734675304289 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/25,2.882777250000006 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/25,2.5637500000000037 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/05/24,7.512900000262481 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/29,3.8594500001449945 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/07/11,12.315831247822487 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/07/03,4.957648536045835 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/26,4.344225000072496 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/26,12.292825049522513 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/06/25,7.33434582879584 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/07/28,2.707975000000006 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/07/28,2.671002250000006 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/08/29,2.837375000000005 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/08/29,3.517250000000006 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/08/28,3.6578022799999945 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/10/08,2.7847710600000006 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/10/08,3.105832542307691 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/30,22.183566666716654 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/29,3.6679500000950047 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/22,11.96258333311832 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/22,12.74057499978499 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/09/21,4.090534209999992 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/10/31,12.814400001857493 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/10/26,7.093675000200009 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/11/09,2.188772599999997 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/11/09,2.537822142857143 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/11/08,2.3505953500000003 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/12/10,2.4357045000000013 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/11/24,2.9515199999999995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/01/11,22.172349999785016 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/12/27,11.60110833351833 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2022/12/27,14.102316666141666 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/02/21,21.529824999737524 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/02/21,13.142891665591664 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/10,14.051374999952492 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/09,14.576583333238334 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/02,22.42222499978501 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/02,22.56372499978501 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/04/01,11.717666666851668 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/09,12.135425012107476 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/31,14.06706818007251 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/26,8.070779540290001 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/06/05,4.008450000144995 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/06/05,9.222191666666674 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/28,22.724291680684185 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/28,11.93555833355083 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/05/27,13.173145833333338 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/06/22,7.857970450072498 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/06,11.659159100241654 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/08/05,7.119658317658337 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/31,7.61540624840752 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/31,6.2842374982175055 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/30,10.544716667244154 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/23,7.188262876786674 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/07/23,4.640790910095004 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/01,7.679300000287501 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/08/27,3.78776643687596 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/09,6.206625000842495 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/09,6.1873000008174985 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/01,8.592252270167501 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/01,7.692852270119999 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/08/31,5.9149068200725 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/08/23,3.166117887499998 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/28,13.304175022884982 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/10/03,9.222916673639148 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/10/03,8.433708337933325 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/10/02,4.173326369999993 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/25,17.587870839588327 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/09/25,19.44529166666667 -Henderson Lake,22303181,-74.06687966676591,44.09195077344083,2023/11/03,2.8520784174999965 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2014/12/29,9.928125000385002 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2014/12/29,9.928125000385002 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/02/23,22.451158333333343 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/02/23,22.451158333333343 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/04/28,6.497900004865001 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/05/06,4.109825000072498 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/04/28,6.497900004865001 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/05/06,4.109825000072498 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/05/22,2.499404750000004 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/05/22,2.499404750000004 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/06/23,12.851574999569989 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/06/23,12.851574999569989 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/08/02,16.540962499707515 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/08/02,16.540962499707515 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/03,7.765697918824161 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/11,4.376056160576921 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/03,7.765697918824161 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/11,4.376056160576921 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/10/05,3.0065765167391665 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/27,3.589160298076923 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/10/05,3.0065765167391665 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/09/27,3.589160298076923 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/11/22,3.567417431666663 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2015/11/22,3.567417431666663 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/02/02,13.30103333331833 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/02/02,13.30103333331833 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/02/26,13.212483333190836 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/02/26,13.212483333190836 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/03/29,13.672116710366677 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/03/29,13.672116710366677 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/04/30,3.859635623333326 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/05/08,2.989729500000005 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/04/30,3.859635623333326 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/05/08,2.989729500000005 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/06/09,12.83217500019998 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/06/09,12.83217500019998 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/07/03,15.121058332950827 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/06/25,3.449834848333331 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/07/03,15.121058332950827 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/06/25,3.449834848333331 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/08/04,6.017372726884178 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/07/27,3.563375000000005 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/08/04,6.017372726884178 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/07/27,3.563375000000005 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/05,3.403337898405828 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/08/28,3.217365910482497 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/05,3.403337898405828 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/08/28,3.217365910482497 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/10/07,3.661021366999996 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/21,3.131113644999996 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/29,3.611827476831498 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/10/07,3.661021366999996 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/21,3.131113644999996 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/09/29,3.611827476831498 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/11/08,4.949212917714278 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/10/23,4.207626675333328 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/11/08,4.949212917714278 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/10/23,4.207626675333328 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/12/10,7.075199994750009 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/12/02,2.2489250000000003 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/12/10,7.075199994750009 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2016/12/02,2.2489250000000003 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/03/08,18.53713958420836 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/03/08,18.53713958420836 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/04/09,15.081208334003334 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/04/09,15.081208334003334 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/05/03,6.69272082252584 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/05/11,4.326000000144998 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/05/03,6.69272082252584 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/05/11,4.326000000144998 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/07,2.7103791671916677 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/07/30,2.3442823625 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/07,2.7103791671916677 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/07/30,2.3442823625 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/23,7.645058338003334 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/31,4.405274999999997 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/23,7.645058338003334 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/08/31,4.405274999999997 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/10/10,3.1166340900475014 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/09/24,7.113524252101668 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/10/02,2.7580920986263737 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/10/10,3.1166340900475014 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/09/24,7.113524252101668 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/10/02,2.7580920986263737 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/11/11,4.444697011666662 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2017/11/11,4.444697011666662 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/01/06,21.66638333333335 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/04/28,2.5780522500000007 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/05/30,9.932307202447491 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/07/09,3.939688660072494 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/07/01,16.356100000362524 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/08/10,3.655701367999991 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/09/03,7.907279169501664 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/10/05,4.334576636538461 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2018/11/22,2.859002250000006 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/02/02,22.348225000000006 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/02/10,11.358233333518331 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/01/25,10.194559090142494 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/04/23,12.0292249984425 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/06/26,3.1220212133333307 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/07/28,6.476083941114166 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/08/05,2.825540124999999 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/08/29,4.181518935652494 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/09/06,2.737602250000004 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/10/08,2.555524850000001 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/09/22,16.652324999999983 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/11/01,17.256604167411677 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/11/09,4.469533344465001 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/10/24,4.668079730769223 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/12/11,14.76787500025752 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2019/11/25,3.83311602980769 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/02/05,13.089475000385 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/04/01,2.5242256125000004 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/04/25,5.627951533333329 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/05/03,5.801933342960828 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/05/27,6.534684090072513 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/06/04,6.6355000000725 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/07/06,3.711723618205125 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/07/30,8.618977361273593 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/08/07,4.332700000289995 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/08/31,2.688756061666665 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/09/08,3.5435250005074943 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/08/23,3.750518179999995 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/10/10,14.275525000145016 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2020/09/24,9.430700001317485 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/03/11,11.960156252442497 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/03/27,9.18563333309583 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/05/06,3.127116673333339 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/06/07,20.635841666651658 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/06/23,2.540981749999999 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/08/02,6.622987919481667 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/08/10,4.755134099999996 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/07/25,6.451340761538454 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/09/03,2.272384100000001 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/09/11,2.83590525 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/08/26,6.581375 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/11/06,14.511041678166674 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/11/04,4.967404602820511 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2021/10/29,3.047902524038459 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/02/02,13.92573333328583 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/03/22,11.168512503934998 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/09,3.923961369999995 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/09,3.590419349999998 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/01,2.715352760000002 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/04/23,8.546850000504989 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/26,17.755683333333327 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/06/02,3.54476775410256 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/05/25,4.486775000887496 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/06/29,16.550649999139992 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/07/04,14.91553333371833 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/06/26,6.599225000192496 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/08/05,10.830141666841657 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/07/28,2.591975000000001 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/10/09,7.070999997330015 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/10/08,2.909769199999998 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/09/22,2.415147600000002 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/10/26,6.788449999710009 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2022/11/09,3.2975794168956027 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/02/21,10.761116666429182 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/04/07,9.042108335680824 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/04/26,5.787920839778333 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/05/26,3.228559090144999 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/06/05,11.723339589630816 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/05/28,18.57300000258501 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/07/04,17.774816666451656 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/06/22,7.548843180627499 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/06/21,4.485643180144997 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/08/05,6.57405416942167 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/07/31,2.7133839406824984 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/07/31,6.308205891573217 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/07/23,5.189428676666664 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/01,4.040040910289991 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/08/22,7.571025004062511 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/09,2.780452250000007 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/01,5.3510234633333305 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/28,15.723031470316664 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/10/03,4.678062764999994 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/09/25,3.764081474999996 -Friends Lake,22304007,-73.84385975179329,43.62586538028922,2023/10/27,14.02332916643167 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/01/05,8.923841667051665 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/01/05,8.923841667051665 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/01/22,21.49190833333335 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/01/22,21.49190833333335 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/03/02,15.077458333333334 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/02/23,22.64890000000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/03/10,21.66638333333335 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/02/22,13.9816249999525 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/03/02,15.077458333333334 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/02/23,22.64890000000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/03/10,21.66638333333335 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/02/22,13.9816249999525 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/04/03,11.475058332688334 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/04/03,11.475058332688334 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/06,10.664000007019986 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/06,10.604658340353314 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/06,10.664000007019986 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/06,10.604658340353314 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/06,6.055569162201664 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/29,3.876179599999994 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/06,6.055569162201664 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/05/29,3.876179599999994 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/07/08,4.525670836380836 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/23,2.698675000000004 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/23,2.711625000000006 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/07/08,4.525670836380836 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/23,2.698675000000004 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/06/23,2.711625000000006 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/09,4.683934199999987 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/01,7.501508340305827 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/09,4.683934199999987 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/01,7.501508340305827 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/03,19.69638560809334 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/03,19.45436060838084 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/25,4.164133228144988 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/11,4.66036880466666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/11,4.983359704666663 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/02,5.691150001207501 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/26,3.1606659380769218 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/26,3.0960504899999988 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/03,19.69638560809334 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/03,19.45436060838084 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/25,4.164133228144988 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/11,4.66036880466666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/11,4.983359704666663 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/02,5.691150001207501 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/26,3.1606659380769218 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/08/26,3.0960504899999988 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/05,7.515149243405839 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/05,7.2320492434058385 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/26,7.506876516666668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/04,3.389330283333328 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/27,3.486514137499997 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/27,4.704409380769224 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/05,7.515149243405839 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/05,7.2320492434058385 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/26,7.506876516666668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/10/04,3.389330283333328 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/27,3.486514137499997 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/09/27,4.704409380769224 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/05,2.3905453500000013 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/05,2.3905453500000013 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/08,4.792341664476666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/08,6.129869165421667 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/29,15.360855326091666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/07,2.51783175 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/21,5.128550002299996 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/08,4.792341664476666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/08,6.129869165421667 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/29,15.360855326091666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/12/07,2.51783175 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2015/11/21,5.128550002299996 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/02/26,9.167799999667515 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/02/26,9.170349999667518 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/02/26,9.167799999667515 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/02/26,9.170349999667518 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/05,10.314508335200829 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/05,10.314508335200829 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/30,6.318525000217501 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/30,6.900972730072498 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/21,7.532014408333336 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/29,5.167625004672493 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/30,6.318525000217501 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/30,6.900972730072498 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/21,7.532014408333336 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/04/29,5.167625004672493 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/05/23,5.02437643814417 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/05/31,8.757448108543336 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/05/23,5.02437643814417 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/05/31,8.757448108543336 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/03,3.293933247307692 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/03,3.432686979999998 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/24,18.1094000046 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/11,4.672750001014993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/11,4.801650000942492 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/25,7.428334090000005 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/25,7.730234089999999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/03,3.293933247307692 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/03,3.432686979999998 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/24,18.1094000046 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/11,4.672750001014993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/11,4.801650000942492 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/25,7.428334090000005 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/06/25,7.730234089999999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/11,6.971803575898568 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/04,3.6388000004349936 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/04,3.5155000005549937 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/26,6.527185422799168 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/03,13.528883333453331 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/27,4.711921827999992 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/27,5.16049227499999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/11,6.971803575898568 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/04,3.6388000004349936 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/04,3.5155000005549937 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/26,6.527185422799168 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/03,13.528883333453331 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/27,4.711921827999992 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/07/27,5.16049227499999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/05,3.855300000072495 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/05,3.826775000072494 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/27,4.089974999999993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/04,3.822450763333328 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/28,16.05300834266332 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/28,14.735025009484987 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/05,3.855300000072495 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/05,3.826775000072494 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/27,4.089974999999993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/04,3.822450763333328 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/28,16.05300834266332 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/08/28,14.735025009484987 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/07,7.439844696666665 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/07,7.599918179999998 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/21,3.372462886666664 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/21,3.0816098533333305 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/06,3.057231700000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/29,8.861725000289983 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/29,6.408125000312494 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/07,7.439844696666665 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/07,7.599918179999998 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/21,3.372462886666664 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/21,3.0816098533333305 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/06,3.057231700000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/29,8.861725000289983 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/09/29,6.408125000312494 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/08,9.867100002372489 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/08,8.053033335778323 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/23,22.28654167586668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/23,21.367058349528342 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/07,7.042304350000007 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/08,9.867100002372489 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/08,8.053033335778323 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/23,22.28654167586668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/10/23,21.367058349528342 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/11/07,7.042304350000007 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/12/10,22.337341666666678 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2016/12/10,22.337341666666678 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/01/11,21.193008333190857 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/01/02,22.348225000000006 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/01/11,21.193008333190857 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/01/02,22.348225000000006 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/04,10.532224999857515 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/04,10.493499999857512 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/04,10.532224999857515 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/04,10.493499999857512 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/08,14.555699999905007 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/08,14.805649999905008 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/27,21.675758333333352 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/20,21.519783335633356 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/08,14.555699999905007 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/08,14.805649999905008 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/27,21.675758333333352 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/02/20,21.519783335633356 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/23,22.308199999355008 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/03/23,22.308199999355008 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/04/24,15.764141678166675 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/05/11,3.719216663333329 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/05/11,2.6002331250000004 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/04/24,15.764141678166675 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/05/11,3.719216663333329 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/05/11,2.6002331250000004 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/06/11,23.559516667141683 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/06/11,23.559516667141683 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/05,2.773236300000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/05,2.773236300000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/30,4.001436429999991 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/30,3.187325725 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/30,4.001436429999991 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/07/30,3.187325725 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/08/30,6.7498045461099965 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/07,3.142050000000008 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/08/22,8.894675000457493 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/08/30,6.7498045461099965 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/07,3.142050000000008 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/08/22,8.894675000457493 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/10,5.9191431802175 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/10,5.490870450289999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/01,4.809366559047613 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/24,12.76532500021501 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/24,9.192116666834174 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/02,2.749408800000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/02,3.138877510769228 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/23,3.950618199999993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/10,5.9191431802175 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/10,5.490870450289999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/01,4.809366559047613 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/24,12.76532500021501 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/24,9.192116666834174 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/02,2.749408800000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/10/02,3.138877510769228 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/09/23,3.950618199999993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/11/11,16.32467063615773 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/11/11,15.165457524202491 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/11/11,16.32467063615773 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2017/11/11,15.165457524202491 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/05/05,4.920546973218335 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/04/28,24.19329792483169 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/04/28,24.838172917294187 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/05/29,10.273645833880828 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/05/30,4.304199999999994 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/05/30,4.538169701739159 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/09,12.3075636404825 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/09,10.581133334105834 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/08,9.870085005844976 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/01,8.555445456894981 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/07/01,7.000548862704163 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/06/22,3.223086300000003 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/08/10,4.3214947016666585 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/08/10,4.23632197666666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/08/09,14.407250005750004 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/09/03,2.9632750000000057 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/09/03,3.5018750000000045 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/10/05,8.959383334555813 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/10/05,9.37750000122248 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/12/08,21.791766666666685 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/11/22,21.88613333333335 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2018/11/22,21.791766666666685 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/02/09,13.258533333118326 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/02/02,23.218616666666662 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/03/06,22.47567500000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/03/06,22.47567500000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/02/26,21.75304166666668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/02/26,21.75304166666668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/04/23,8.448891673114167 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/04/23,8.35266667757167 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/05/08,7.562000004672491 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/04/22,11.014082501444998 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/10,19.23328333361831 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/10,20.224158332998314 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/01,11.46176458879835 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/09,2.955314464999999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/07/03,15.743795835633332 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/26,4.721484100072487 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/06/26,4.433661400072491 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/07/28,6.75842499409001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/08/05,4.59008869999999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/08/05,5.634066678333327 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/07/27,7.170433334028342 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/05,4.28812957999999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/08/29,4.1037583337383365 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/08/29,3.4125125004674994 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/06,4.193029654999993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/06,3.6065873549999936 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/21,17.287650000000028 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/10/08,3.983775039999995 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/10/08,5.551363739999994 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/22,12.692316666666647 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/09/22,12.122724999999985 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/10/24,4.604675002299997 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2019/10/24,2.9893318200000025 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/03/08,22.308199999355008 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/04/01,14.937742423618332 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/04/01,12.384292423808333 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/02,16.22168333563335 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/04/25,6.424530308333334 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/04/25,6.340843948333331 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/03,4.967321215633328 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/03,4.89319621563333 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/27,6.6461818206025045 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/27,6.271984090817506 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/06/11,4.933951139727498 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/05/26,4.261540909999999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/07/05,14.385375002372491 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/07/06,3.3271944883333275 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/07/06,4.470727284999993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/06,13.72235834244083 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/31,3.28817424166666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/31,3.872002270144995 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/22,14.238991685211674 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/09/08,12.698541666714164 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/09/08,21.225800000000007 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/23,8.125058334723315 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/08/23,8.162783334770815 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/10/09,13.656918945000015 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/09/24,9.946633334078324 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/09/24,10.073358333835824 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/11/10,15.951337129600024 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/10/25,10.610939583460842 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/12/29,21.867666666666683 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2020/12/29,21.867666666666683 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/01/29,22.674233333333337 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/02/06,21.675758333333352 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/01/30,21.75304166666668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/03/11,22.32207499935501 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/03/02,22.451158333333343 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/05/06,3.4407953033333296 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/05/06,2.9299731450000013 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/06/07,8.155150000452478 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/06/07,7.8769083336433185 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/06/23,3.7325524307692266 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/06/23,2.992745449999999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/07/24,13.834408342748326 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/10,7.777125000239994 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/10,8.094625000239995 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/07/25,5.857131820867502 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/07/25,9.378675000072498 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/25,6.061111366520002 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/09/11,12.68318333350082 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/26,19.61615833563335 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/08/26,6.827100001010006 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/09/26,7.576059090000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/06,10.728340946667492 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/06,7.092175009854999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/09,6.845166675705839 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/09,7.419506822372499 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/10/29,2.5593840500000016 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/10/29,2.9458023250000007 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/12/07,16.321474999999996 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/11/21,2.6304082000000024 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2021/12/24,22.95670833333333 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/02/01,22.407050000000005 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/01/25,22.18061666666668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/02/26,22.23312500000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/02/26,22.23312500000001 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/03/29,21.75304166666668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/09,6.014079550120003 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/09,3.2156619199999987 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/09,3.003176895 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/08,5.502175000000002 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/01,3.94021970666666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/01,2.75379675 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/04/30,4.6455091022999975 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/26,19.167050000594987 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/25,5.712958715180822 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/25,4.312000000839998 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/05/24,4.378725002012498 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/29,3.565146215870833 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/29,2.9818144057983336 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/07/03,7.608009776820007 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/26,4.68022197666666 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/26,2.8521300500000013 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/06/25,4.091422789999992 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/07,5.619846217390826 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/05,3.4710795 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/05,4.415674999999992 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/24,17.954466666451655 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/29,13.023583333533317 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/29,11.374800000142486 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/08/28,4.685915839999996 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/10/09,8.836425000000016 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/10/09,7.965450000000017 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/09/29,2.304872289999999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/09/22,6.639550000192494 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/09/22,3.073544230769234 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/09/21,4.496296867999993 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/11/09,5.475756924999998 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/11/09,5.092756969999997 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/11/08,4.323468893333332 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/10/24,22.86536666666667 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/12/10,23.83954791760919 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/12/02,10.625637499545 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2022/12/27,21.475091666666685 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/10,14.697099999952496 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/09,13.83451666661916 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/02,13.25233333319083 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/02,13.516324999857504 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/01,15.230349999905007 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/09,10.07346666956168 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/26,2.6058022500000018 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/04/26,5.29280000007249 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/31,9.362061360359997 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/26,8.188006057076667 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/26,2.9733112214783324 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/05,9.196800006972488 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/05,9.07900834037832 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/28,22.50121666896669 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/28,25.05781668070668 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/05/27,14.72055833590083 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/22,8.904593180312498 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/07/06,3.773604549999996 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/21,15.583283333103315 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/06/21,2.972875000000004 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/07/30,13.692691682766656 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/07/23,2.905375000000003 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/07/23,3.202452250000004 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/01,2.336728043670836 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/01,2.0503863606275017 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/01,7.37911591012 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/01,7.665018180334999 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/08/31,3.0378444999999976 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/08/23,2.7702264749999994 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/28,7.062020825593345 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/28,6.27989582586334 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/10/03,4.834249999999995 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/10/03,3.611234099999996 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/10/02,4.447731829999996 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/25,6.295500000217498 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/09/25,5.329774999999995 -Goodnow Flowage,22305107,-74.21362374436441,43.91739405287299,2023/11/03,4.652838649999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/01/05,12.83166666660416 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/01/05,12.875316666651662 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/01/05,12.83166666660416 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/01/05,12.875316666651662 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/23,22.47810000000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/03/10,21.66638333333335 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/22,21.867666666666683 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/22,21.84966666666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/23,22.47810000000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/03/10,21.66638333333335 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/22,21.867666666666683 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/02/22,21.84966666666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/04/03,9.450150001385005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/04/03,9.438125000785003 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/04/03,9.450150001385005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/04/03,9.438125000785003 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/05,8.262624998377506 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/05,10.554745836830842 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/06,4.636975000072497 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/05,8.262624998377506 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/05,10.554745836830842 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/06,4.636975000072497 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/06/06,13.791487503524992 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/06/06,14.150579170001658 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/29,6.054850000577496 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/29,5.346675000817503 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/22,6.199831079064993 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/06/06,13.791487503524992 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/06/06,14.150579170001658 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/29,6.054850000577496 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/29,5.346675000817503 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/05/22,6.199831079064993 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/07/08,20.69054166666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/07/08,19.60235833333333 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/07/08,20.69054166666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/07/08,19.60235833333333 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/02,20.80498333327082 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/10,8.949099995472496 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/01,3.6279692307692297 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/01,7.510059000000008 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/02,20.80498333327082 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/10,8.949099995472496 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/01,3.6279692307692297 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/01,7.510059000000008 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/03,7.353762500075016 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/25,3.7021947066666634 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/25,3.646721206666663 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/11,2.542267900000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/02,4.708234100312493 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/02,6.476575000577502 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/26,4.76806575 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/03,7.353762500075016 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/25,3.7021947066666634 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/25,3.646721206666663 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/11,2.542267900000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/02,4.708234100312493 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/02,6.476575000577502 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/08/26,4.76806575 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/05,6.760534843333334 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/26,12.121358333453324 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/26,11.85638333575332 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/04,3.0310362000000004 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/04,2.9801634500000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/27,2.432137568269229 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/05,6.760534843333334 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/26,12.121358333453324 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/26,11.85638333575332 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/04,3.0310362000000004 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/10/04,2.9801634500000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/09/27,2.432137568269229 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/05,2.339698680769228 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/05,2.3196077307692278 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/05,2.339698680769228 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/05,2.3196077307692278 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/08,6.885649997330011 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/29,10.15796670371167 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/29,7.085183343875831 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/07,3.0550500000000085 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/07,2.9352000000000062 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/30,4.193096042307688 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/08,6.885649997330011 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/29,10.15796670371167 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/29,7.085183343875831 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/07,3.0550500000000085 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/12/07,2.9352000000000062 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2015/11/30,4.193096042307688 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/01/08,20.4492166666192 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/01/08,20.4492166666192 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/10,22.76205 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/02,3.522725000000006 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/10,22.76205 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/02,3.522725000000006 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/26,14.138791666666664 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/02/26,14.138791666666664 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/05,13.731908208461942 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/05,14.17422904630027 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/05,13.731908208461942 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/05,14.17422904630027 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/07,9.791989614413325 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/07,7.363834266620836 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/30,3.403511394999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/21,7.330525014999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/21,6.802328801666665 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/08,2.945375000000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/29,8.64116666922915 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/29,7.052733335705815 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/07,9.791989614413325 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/07,7.363834266620836 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/30,3.403511394999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/21,7.330525014999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/21,6.802328801666665 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/08,2.945375000000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/29,8.64116666922915 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/04/29,7.052733335705815 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/23,10.364720835898336 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/23,9.671137501900002 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/31,8.456676143792501 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/31,7.212872729755005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/23,10.364720835898336 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/23,9.671137501900002 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/31,8.456676143792501 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/05/31,7.212872729755005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/03,15.627700023047511 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/24,9.52135833461334 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/24,9.12083333461334 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/02,3.336425000000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/25,2.68980214 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/03,15.627700023047511 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/24,9.52135833461334 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/24,9.12083333461334 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/02,3.336425000000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/06/25,2.68980214 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/11,10.126266673901664 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/11,5.690250000695001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/04,3.308483192999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/26,4.8576030500125045 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/26,4.535842429500831 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/03,3.327829099999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/03,7.432611349999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/27,3.4214881307692284 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/11,10.126266673901664 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/11,5.690250000695001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/04,3.308483192999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/26,4.8576030500125045 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/26,4.535842429500831 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/03,3.327829099999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/03,7.432611349999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/07/27,3.4214881307692284 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/05,3.8175863999999904 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/27,3.061318189999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/27,2.8498931899999973 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/04,4.161838674999991 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/04,4.558686349999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/28,2.8548250000000035 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/05,3.8175863999999904 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/27,3.061318189999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/27,2.8498931899999973 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/04,4.161838674999991 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/04,4.558686349999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/08/28,2.8548250000000035 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/07,4.6760000510476125 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/28,6.283749993445011 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/28,8.127056244140004 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/21,4.190008351666657 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/06,2.4414031423076907 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/06,2.31521219230769 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/29,4.546675000627497 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/07,4.6760000510476125 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/28,6.283749993445011 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/28,8.127056244140004 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/21,4.190008351666657 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/06,2.4414031423076907 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/06,2.31521219230769 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/09/29,4.546675000627497 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/08,4.587478053333324 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/23,4.272188768666664 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/07,7.880886254807699 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/07,3.173510274038462 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/08,4.587478053333324 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/10/23,4.272188768666664 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/07,7.880886254807699 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/07,3.173510274038462 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/10,22.137733333333344 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/09,14.354975000337506 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/09,13.793449999937504 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/23,2.6094910700000016 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/23,2.955873069999999 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/10,22.137733333333344 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/09,14.354975000337506 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/09,13.793449999937504 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/23,2.6094910700000016 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/11/23,2.955873069999999 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/01/02,22.26459166666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/25,21.75304166666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/01/02,22.26459166666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2016/12/25,21.75304166666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/03,22.407050000000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/03,22.407050000000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/08,15.032624999905009 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/27,22.03839999973751 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/20,20.383683333238366 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/08,15.032624999905009 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/27,22.03839999973751 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/02/20,20.383683333238366 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/23,22.304499999355013 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/23,22.304499999355013 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/09,20.50831666666669 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/23,22.304499999355013 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/03/23,22.304499999355013 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/09,20.50831666666669 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/24,12.594608356333346 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/24,12.608308356333348 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/05/11,5.969560988405821 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/24,12.594608356333346 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/04/24,12.608308356333348 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/05/11,5.969560988405821 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/06/11,7.878133326950835 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/06/11,8.146883326998337 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/06/11,7.878133326950835 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/06/11,8.146883326998337 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/05,3.1455022500000047 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/05,3.275425000192504 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/05,3.1455022500000047 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/05,3.275425000192504 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/29,21.18848333295583 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/29,22.427308332598333 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/06,6.120133336440825 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/06,6.294183336250824 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/30,2.807782195000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/29,21.18848333295583 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/29,22.427308332598333 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/06,6.120133336440825 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/06,6.294183336250824 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/07/30,2.807782195000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/30,4.7308257603849935 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/30,6.624803030457498 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/23,15.806054166666682 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/30,4.7308257603849935 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/30,6.624803030457498 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/08/23,15.806054166666682 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/10,10.51379167351916 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/01,4.202315206666658 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/01,3.8701788666666577 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/24,2.932040900072497 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/02,2.565349491895604 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/23,4.210997724999996 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/23,4.948750000000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/10,10.51379167351916 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/01,4.202315206666658 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/01,3.8701788666666577 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/24,2.932040900072497 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/10/02,2.565349491895604 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/23,4.210997724999996 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/09/23,4.948750000000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/11,4.238656066666662 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/10,4.803025000144995 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/10,5.107918200094993 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/11,4.238656066666662 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/10,4.803025000144995 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/11/10,5.107918200094993 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/12/04,14.270991667771677 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2017/12/04,15.247889584133343 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/01/05,22.404625000000006 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/01/29,12.121525000000002 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/01/29,9.23580833280834 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/03/26,21.17380833323836 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/05,8.419518337980824 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/05,5.221850002394996 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/29,6.787869158694165 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/29,6.727952494729998 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/05/30,11.15908334928082 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/07/09,15.067391685066662 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/07/08,26.19330833323584 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/07/08,25.985574999807504 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/07/01,8.8928750003625 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/06/22,5.816217437573333 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/06/22,5.453254937935834 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/08/10,4.458674261666656 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/08/09,5.308750000094999 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/08/09,5.733975000167511 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/09/27,5.995558325303347 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/10/05,2.5305103250000025 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/12/07,10.003650000000016 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/12/07,10.04294999978501 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/12/08,21.88613333333335 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2018/11/22,21.66638333333335 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/02/09,13.394541666429172 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/02/09,13.912808333190831 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/03/06,9.95794166645168 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/02/26,21.794191666666684 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/04/23,12.619803613101055 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/05/08,5.1302390223483325 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/05/08,5.057711380353333 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/04/22,12.164825032395015 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/04/22,14.81721669429668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/10,22.07452499922501 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/01,11.052539589035858 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/01,10.759164587210854 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/09,6.872017046545 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/09,6.854917046690002 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/03,4.319649748754408 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/03,4.414976529720837 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/06/26,20.993391666666643 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/04,9.923525000237488 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/08/04,4.866474246148333 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/08/04,6.658606666866668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/28,7.846854164149182 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/08/05,3.930444430769223 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/27,4.345125000000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/07/27,3.887225000000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/05,4.265418386666656 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/05,4.203284286666656 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/08/29,3.3581091018841613 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/06,2.9964407000000013 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/21,7.968724999999998 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/21,7.130293179999996 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/10/08,2.335504374999999 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/09/22,13.168774999999991 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/11/08,7.485416666001681 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/11/08,7.439941666049182 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/10/23,7.160250000142506 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/10/23,12.064857930069165 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/10/24,4.482235000144995 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/12/11,11.551418751210026 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2019/11/25,11.941272551538466 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/02/05,11.760633333518332 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/03/08,22.29679999935501 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/02,12.512983358108343 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/02,12.512983358108343 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/04/25,7.153400000072501 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/10,2.6461045000000007 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/10,3.1813500000000072 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/03,3.1106568300000026 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/27,6.35965909014501 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/06/04,4.835200000362498 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/26,3.7796531999999927 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/05/26,3.649590924999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/07/06,2.4860191750000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/08/06,5.507262125459171 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/08/06,5.7054579585775045 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/07/30,3.278000010772499 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/08/31,2.908051854102563 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/09/08,2.885350000000003 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/08/23,3.4423973999999937 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/09,5.642916559047615 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/09,5.234000659047614 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/09/23,15.955949999494996 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/09/23,15.101499999750006 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/10,12.497883333333329 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/09/24,3.587125000072492 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/11/10,9.468042315714284 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/11/10,10.19858777238094 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/25,9.993275011099996 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/10/25,8.431850005597505 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2020/12/29,21.791766666666685 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/01/29,22.539900000000006 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/01/29,22.67296666666667 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/03/11,9.257408333190828 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/03/02,22.480808333333343 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/03/02,22.480808333333343 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/05/06,2.735702250000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/06/06,21.67110833024084 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/06/06,21.856124996767495 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/06/07,3.556175000095007 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/06/23,3.22776923076923 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/07/24,18.724129166666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/07/24,18.006287499617496 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/08/10,4.176846213525829 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/07/25,3.411002250000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/08/25,16.520191676154184 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/08/25,15.017466671601678 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/08/26,3.7496500000000026 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/09/26,6.430850000145007 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/09/26,5.435200000192502 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/06,4.747719762714279 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/09,3.562268189999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/05,2.442268375000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/05,4.044334653846157 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/10/29,2.571984905769232 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/24,2.8169168307692307 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/24,2.491083811538459 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/21,2.6474170750000003 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2021/11/21,2.106331699999998 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/01/08,21.750616666666684 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/02/01,22.26459166666668 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/03/30,10.91966666685167 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/06,16.654675007262497 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/06,16.405566671891663 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/03/29,13.767474999952496 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/03/29,13.889274999952494 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/03/22,14.2798249999525 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/09,4.381947729999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/09,2.465967500000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/08,6.021807214542494 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/08,5.929078045575827 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/01,3.15531748 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/30,4.757815175565836 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/30,4.775252679100835 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/04/22,3.6389750000000074 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/26,4.837487502997506 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/10,5.114687167380187 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/25,4.635159100119993 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/24,5.303993561224168 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/05/24,5.3799518964025 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/04,7.897624995267499 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/04,21.245374999345003 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/29,9.863525004814996 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/11,12.50495833333332 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/11,12.48960833340582 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/03,8.644864776675004 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/07/03,8.680206442421667 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/26,3.2776589357692263 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/25,8.794573108693337 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/06/25,8.373709775552504 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/07,3.9364499999150113 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/07,7.5037375025100035 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/05,3.6116870633333327 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/09/10,5.948278787679169 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/09/10,7.430987877559171 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/24,12.332066670519175 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/24,12.027700004452509 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/29,2.8968250000000046 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/28,2.470674999999999 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/08/28,2.4033544649999983 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/09/21,5.777300000335007 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/09/21,5.777300000335007 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/10/31,12.254358338713338 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/10/31,11.403616671021672 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/09,2.545250697664834 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/08,2.157561249999997 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/08,2.1044679999999976 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/10/24,23.907158333333324 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/12/10,3.0091908000000003 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/12/10,2.817144224999999 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/12/02,6.3379333335083325 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/12/02,7.140458333690829 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/24,2.340499040000002 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2022/11/24,3.437422599999999 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/01/11,10.702949999785003 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/01/11,10.887791667051667 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/02/20,11.166274584590852 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/10,11.567258333238328 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/09,15.81944999995249 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/09,15.881249999952493 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/02,12.578408333285823 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/01,14.26060000038501 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/04/01,14.256349999522506 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/09,10.561916669561684 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/09,10.298454169156678 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/31,5.005193180482493 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/31,3.860393180434996 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/26,4.139712896811662 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/06/05,6.0460812505924855 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/28,11.817258333405825 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/27,19.632587499999985 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/05/27,18.21885833333332 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/06/22,3.0536878867391617 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/06/22,2.7647878967391653 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/06,5.340139020395834 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/06,5.2737859940866665 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/06/21,2.8803757133333336 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/05,9.869431251117511 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/31,12.94530227736999 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/30,13.802058333523323 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/30,2.673802250000005 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/23,17.84339166622165 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/22,7.885575001322484 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/07/22,16.09318333371333 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/01,4.551439285786777 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/01,4.480889285786778 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/01,3.3141478000724964 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/31,4.405435616666662 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/31,4.357824241666662 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/23,2.140004500000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/08/23,2.087879500000001 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/28,6.289855714295835 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/28,8.252009887560007 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/10/03,3.857376377999994 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/10/02,4.191128043333329 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/10/02,3.726499213333331 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/09/25,3.3462944999999977 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/11/03,3.8806210549999975 -Rock Lake,22306179,-74.3344701815978,43.82884678452657,2023/11/03,3.158537554999998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/01/05,3.560400000072503 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/01/05,3.560400000072503 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/05,3.544558332358337 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/06,4.978088679999992 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/05,3.544558332358337 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/06,4.978088679999992 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/06,17.136112500500005 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/07,4.657304170851663 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/29,17.739333333333317 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/22,9.299550000144992 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/06,17.136112500500005 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/07,4.657304170851663 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/29,17.739333333333317 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/05/22,9.299550000144992 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/22,4.072469163329171 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/23,9.334519230914225 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/22,4.072469163329171 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/06/23,9.334519230914225 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/09,3.6070363602174975 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/02,3.471570281538462 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/07/24,10.776933332650849 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/10,4.411387011538458 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/01,11.595950000119997 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/07/25,17.45324166671418 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/09,3.6070363602174975 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/02,3.471570281538462 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/07/24,10.776933332650849 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/10,4.411387011538458 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/01,11.595950000119997 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/07/25,17.45324166671418 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/25,5.371984089999997 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/11,4.177375000797497 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/02,20.314408333380825 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/26,4.5449499999999965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/25,5.371984089999997 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/11,4.177375000797497 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/02,20.314408333380825 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/08/26,4.5449499999999965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/10/05,5.1052409101199965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/10/04,19.38654166683668 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/27,4.8772833389324965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/10/05,5.1052409101199965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/10/04,19.38654166683668 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/09/27,4.8772833389324965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/05,2.4794500000000026 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/05,2.4794500000000026 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/12/08,6.4512999977600085 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/22,13.09079320052694 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/12/07,3.204375000000005 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/30,5.81015510320512 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/21,5.890597932435893 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/12/08,6.4512999977600085 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/22,13.09079320052694 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/12/07,3.204375000000005 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/30,5.81015510320512 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2015/11/21,5.890597932435893 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/02/02,2.848250000000006 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/01/24,21.88613333333335 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/02/02,2.848250000000006 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/01/24,21.88613333333335 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/04/05,7.178718342048328 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/04/05,7.178718342048328 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/04/21,11.972158681532491 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/08,6.346524999999998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/04/21,11.972158681532491 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/08,6.346524999999998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/23,14.701476749646668 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/31,12.7882000003325 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/23,14.701476749646668 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/05/31,12.7882000003325 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/03,8.843096973803329 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/06/24,13.3705 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/02,7.557175000289998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/06/25,4.223436216346154 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/03,8.843096973803329 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/06/24,13.3705 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/02,7.557175000289998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/06/25,4.223436216346154 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/11,9.772109090000004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/04,4.024034089952504 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/26,3.678925000430009 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/03,4.440666536666666 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/27,3.2470750000000037 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/11,9.772109090000004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/04,4.024034089952504 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/26,3.678925000430009 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/03,4.440666536666666 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/07/27,3.2470750000000037 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/05,3.934845450217498 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/27,6.93503293087861 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/04,8.35125833333334 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/28,9.213658333380844 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/05,3.934845450217498 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/27,6.93503293087861 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/04,8.35125833333334 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/08/28,9.213658333380844 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/07,2.637584992072502 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/21,3.994062876666665 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/06,3.2232379724358986 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/07,2.637584992072502 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/09/21,3.994062876666665 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/06,3.2232379724358986 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/08,10.38349206391956 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/23,9.920663751075004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/07,6.797396322307686 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/08,10.38349206391956 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/10/23,9.920663751075004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/07,6.797396322307686 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/12/10,7.571583333333344 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/23,8.771100000479995 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/12/10,7.571583333333344 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/11/23,8.771100000479995 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/12/26,11.712800000000009 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2016/12/26,11.712800000000009 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/02/03,22.451158333333343 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/02/03,22.451158333333343 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/03/08,6.565422427051273 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/03/08,6.565422427051273 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/04/09,11.752672373076912 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/04/09,11.752672373076912 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/04/24,8.63177916661917 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/04/24,8.63177916661917 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/11,3.761133332975832 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/03,6.036712500500003 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/11,3.761133332975832 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/03,6.036712500500003 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/05,16.815964583665824 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/28,14.618825000047494 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/05,16.815964583665824 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/06/28,14.618825000047494 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/29,13.010637499532516 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/06,8.920425000217497 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/30,14.252505952428423 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/29,13.010637499532516 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/06,8.920425000217497 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/07/30,14.252505952428423 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/08,8.769837583787504 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/30,12.884211111301113 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/07,2.7428522500000065 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/22,11.708125000284998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/08,8.769837583787504 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/30,12.884211111301113 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/07,2.7428522500000065 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/08/22,11.708125000284998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/01,8.560222915619166 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/24,7.4918927780152735 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/02,14.741984846714145 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/23,16.238774999999965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/01,8.560222915619166 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/24,7.4918927780152735 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/02,14.741984846714145 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/09/23,16.238774999999965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/11/11,6.1539875017000005 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/10/25,3.336997300000001 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/12/04,14.363841822116685 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/12/29,8.85445833309583 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2017/12/28,8.515324999785001 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/05/05,4.220206825613328 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/04/28,3.144000000000004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/06/07,8.398470002390015 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/05/29,15.327446111158611 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/07/09,13.092029168629187 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/06/30,15.4908000709375 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/07/08,13.95393103168749 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/07/01,7.762325000310004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/08/09,3.947324999999999 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/08/26,7.173224991495009 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/09/03,3.8262750001449928 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/10/05,7.244075000334984 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/12/08,8.401131760750314 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2018/11/22,8.716957682595192 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/01/08,11.789908333333337 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/02/09,15.0735479180617 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/02/01,21.66638333333335 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/01/25,7.843383168587632 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/03/06,9.73916666666668 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/04/23,14.68255208880334 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/05/08,17.69343335878084 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/06/09,18.234458333808316 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/07/03,7.4159416668566704 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/06/26,15.15265001569502 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/07/04,15.707233333500833 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/07/28,3.2524000003325035 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/08/05,9.485216666714166 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/07/27,13.69772500019251 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/05,11.086425756739166 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/06,3.5623919607692307 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/21,13.272913195166929 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/10/08,18.772983334203328 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/29,6.767508333380831 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/09/22,14.751583333333322 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/11/08,7.886658333333344 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/10/23,7.405155441146669 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/11/09,3.764175000047496 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/10/24,25.348383342533328 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/12/03,10.404012499760002 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2019/12/11,6.4950520576922965 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/02/29,21.78088333333335 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/04/01,11.567295449999984 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/02,11.401574628125008 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/04/25,14.106009679190842 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/10,2.889950000000003 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/03,3.826100000000004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/27,9.238716666809172 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/06/11,2.622275000000002 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/06/04,7.180391666761672 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/05/26,19.209375002347475 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/07/05,9.086918764572497 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/07/06,10.138753195914443 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/07/30,7.634008344168337 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/08/07,14.148200000399983 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/07/22,10.090610141009227 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/08/31,17.903883335580844 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/08/22,3.219737500142504 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/08/23,6.146953306410251 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/10/09,8.993957967597499 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/09/23,7.966927082713355 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/10/10,16.166716666761662 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/10/01,4.938115749999999 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/11/10,15.285997732300007 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2020/10/25,12.195235308616668 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/03/11,10.42401666666668 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/04/03,12.341562023088336 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/04/04,10.124550001150002 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/05/06,5.298407249999997 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/06/06,4.959274999905001 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/06/07,8.502777270552496 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/07/08,6.032899996685007 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/06/23,3.806325000144995 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/08/02,6.858525000142503 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/07/24,12.616345833618327 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/08/10,7.457400000072498 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/07/25,2.729624999999998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/09/10,10.39737083792834 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/08/25,21.6652999993725 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/09/11,5.462672813644685 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/09/02,2.8914522500000057 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/08/26,10.062125000144995 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/09/26,4.532829168966671 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/11/06,9.981261113506095 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/10/28,4.930873862072733 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/11/05,4.483224999999999 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/10/29,3.1890645432692306 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2021/11/24,3.250011891666666 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/02/01,22.137733333333344 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/01/24,21.66638333333335 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/02/26,23.02285 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/03/22,8.8282700062575 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/09,3.178168235 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/08,4.48137387719833 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/01,6.105983333618325 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/04/30,5.956027275262491 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/04/22,3.363250000000004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/31,7.017150016612499 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/26,20.58472083275835 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/05/24,9.364258335680828 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/07/04,6.341975000142511 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/06/29,3.6685454499999945 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/07/11,8.857041668291664 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/07/03,6.422787497967501 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/06/26,6.778541669039172 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/06/25,2.683493958974359 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/08/04,3.6082318199999928 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/07/28,8.527519231034224 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/08/29,9.118075000579998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/08/28,8.883802279999994 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/10/09,12.974541671551664 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/09/30,12.691341667284169 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/09/21,5.397430461999996 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/10/31,6.543041118597493 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/10/26,6.953099998835012 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/11/09,5.613858660256405 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/11/08,5.31516469910256 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/10/24,3.006725000000005 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/12/10,5.187524828205129 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/11/24,4.760872735619994 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/01/11,13.197637523419992 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2022/12/26,12.428574999714996 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/02/20,12.037334611835831 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/10,2.6793169630769227 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/09,4.214153191999997 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/02,11.904402091123332 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/01,3.4846737807692314 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/03/24,7.98710000112251 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/11,6.178876516119166 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/26,2.7109250000000014 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/04/25,2.997075000000004 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/31,15.133735000237484 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/26,8.517346966856673 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/06/05,9.368250020360009 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/28,18.894833333333334 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/05/27,21.830116666739173 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/07/06,4.013120499999996 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/06/21,3.293275 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/07/30,9.296149599349173 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/07/23,8.278078029857502 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/07/22,19.18580833352333 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/06,9.865516666666656 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/01,7.5199529257142865 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/08,6.526662182307692 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/01,3.828712988974358 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/08/31,3.1518635014783287 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/08/23,3.948834099999997 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/03,11.857680609930828 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/09/28,4.66865606702916 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/10,5.068634090724998 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/03,4.905196818072492 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/02,4.137116666666662 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/10/25,20.33282500114 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/11/03,17.41756136572833 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/11/28,4.2243236351282 -Canadarago Lake,120051973,-75.00616294567823,42.81521017415291,2023/11/27,6.2665295260989 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2014/12/29,11.823050000495014 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2014/12/29,2.9579272500000053 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2014/12/29,11.823050000495014 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2014/12/29,2.9579272500000053 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/01/29,22.30574166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/01/22,22.468850000000007 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/01/29,22.30574166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/01/22,22.468850000000007 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/03/02,9.998108333118346 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/02/23,22.351800000000008 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/02/23,22.348225000000006 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/03/02,9.998108333118346 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/02/23,22.351800000000008 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/02/23,22.348225000000006 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/04/03,8.447149998910003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/04/03,8.447149998910003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/06,9.242050004672484 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/06,8.823800002372485 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/06,9.242050004672484 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/06,8.823800002372485 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/06/06,11.531489584310837 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/30,3.925040154508331 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/30,3.699440154555831 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/29,9.39610000586998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/22,19.848541666851677 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/22,20.009345833518346 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/06/06,11.531489584310837 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/30,3.925040154508331 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/30,3.699440154555831 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/29,9.39610000586998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/22,19.848541666851677 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/05/22,20.009345833518346 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/07/08,20.6809625003675 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/06/22,11.983404999952509 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/07/08,20.6809625003675 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/06/22,11.983404999952509 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/09,4.326685606666662 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/02,16.960066666856665 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/02,17.393908333523335 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/09,4.326685606666662 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/02,16.960066666856665 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/02,17.393908333523335 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/03,8.093717994878332 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/03,8.87797888284285 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/25,3.8916311066666567 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/11,4.852208309999996 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/11,6.081265181666655 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/02,5.389074999999994 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/03,8.093717994878332 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/03,8.87797888284285 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/08/25,3.8916311066666567 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/11,4.852208309999996 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/11,6.081265181666655 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/02,5.389074999999994 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/05,9.306841677474171 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/05,9.70752084644084 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/26,13.507516689666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/04,2.20133175 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/27,2.689066115934066 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/27,2.50224646826923 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/05,9.306841677474171 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/05,9.70752084644084 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/26,13.507516689666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/10/04,2.20133175 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/27,2.689066115934066 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/09/27,2.50224646826923 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/05,5.641116578205124 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/05,5.641116578205124 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/12/07,3.7063056219230712 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/30,2.828953075769233 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/30,3.662694820512818 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/21,5.489531899999995 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/12/07,3.7063056219230712 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/30,2.828953075769233 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/30,3.662694820512818 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2015/11/21,5.489531899999995 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/03/05,12.158083333518332 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/03/05,13.340624999769991 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/03/05,12.158083333518332 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/03/05,13.340624999769991 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/05,13.282525146715011 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/05,13.282525146715011 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/30,3.815570494999997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/30,3.819022769999997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/21,7.692268958405828 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/29,4.0698000001424965 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/22,3.4863250000000074 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/22,18.766920833338315 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/30,3.815570494999997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/30,3.819022769999997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/21,7.692268958405828 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/29,4.0698000001424965 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/22,3.4863250000000074 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/04/22,18.766920833338315 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/05/23,13.15572083595584 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/05/31,5.369167813805003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/05/23,13.15572083595584 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/05/31,5.369167813805003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/03,12.556566687486674 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/03,9.164625014159986 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/24,20.55743333358085 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/11,4.372875000409994 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/11,4.579900000699997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/25,2.605743163333333 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/25,3.082678419102564 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/03,12.556566687486674 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/03,9.164625014159986 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/24,20.55743333358085 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/11,4.372875000409994 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/07/11,4.579900000699997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/25,2.605743163333333 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/06/25,3.082678419102564 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/04,3.630912727999992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/04,3.688084099999993 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/04,3.630912727999992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/04,3.688084099999993 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/05,3.2631999999999937 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/05,3.3523590999999926 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/27,3.0739674467391644 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/04,4.096879589999998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/05,3.2631999999999937 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/05,3.3523590999999926 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/08/27,3.0739674467391644 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/04,4.096879589999998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/07,10.160302884666663 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/07,8.520209848333327 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/28,6.452170821528341 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/21,3.4789515116666614 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/21,3.5607674216666605 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/06,3.1841067 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/29,5.405589581999996 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/29,3.394975380769227 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/07,10.160302884666663 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/07,8.520209848333327 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/28,6.452170821528341 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/21,3.4789515116666614 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/21,3.5607674216666605 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/06,3.1841067 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/29,5.405589581999996 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/09/29,3.394975380769227 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/08,7.840829174414165 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/08,6.603654172029166 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/23,16.69656528261527 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/23,16.17698611144361 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/07,4.098996230769228 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/08,7.840829174414165 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/08,6.603654172029166 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/23,16.69656528261527 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/10/23,16.17698611144361 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/11/07,4.098996230769228 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/12/10,6.785903038125837 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/12/10,9.321612585327507 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/12/10,6.785903038125837 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2016/12/10,9.321612585327507 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/01/11,21.080333333190858 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/01/02,22.47810000000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/01/11,21.080333333190858 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/01/02,22.47810000000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/03,22.47810000000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/04,21.75304166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/04,21.75304166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/03,22.47810000000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/04,21.75304166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/04,21.75304166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/08,14.903266666971678 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/08,14.980224999905008 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/20,20.247183333238368 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/20,20.247183333238368 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/08,14.903266666971678 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/08,14.980224999905008 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/20,20.247183333238368 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/02/20,20.247183333238368 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/23,22.447608333333346 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/03/23,22.447608333333346 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/04/24,8.198683336714167 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/05/11,4.03848413 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/05/11,7.415125 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/04/24,8.198683336714167 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/05/11,4.03848413 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/05/11,7.415125 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/06/11,7.310324998470005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/06/11,7.310324998470005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/05,2.901629519999997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/05,2.901629519999997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/07,7.62102916702416 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/07,3.623125000119998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/29,22.003824997955 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/30,3.006564125 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/30,3.03440529 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/07,7.62102916702416 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/07,3.623125000119998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/29,22.003824997955 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/30,3.006564125 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/07/30,3.03440529 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/30,13.786216687366675 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/23,5.626983338195831 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/23,4.293919701038331 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/30,13.786216687366675 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/23,5.626983338195831 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/08/23,4.293919701038331 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/10,5.502063644147504 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/10,5.437263644005003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/01,4.268565206666659 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/24,7.221311360000005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/24,7.024202270000006 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/02,2.4597039236263725 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/02,2.6762019293956043 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/23,3.530377259999993 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/10,5.502063644147504 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/10,5.437263644005003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/01,4.268565206666659 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/24,7.221311360000005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/24,7.024202270000006 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/02,2.4597039236263725 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/02,2.6762019293956043 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/09/23,3.530377259999993 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/11/11,10.076755192380944 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/11/11,9.932933975714278 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/11/10,2.9000772500000056 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/10/25,16.588166666436656 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/12/04,9.156712942624186 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2017/11/27,7.404225000000006 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/01/29,6.854783333118335 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/05/05,4.7007000023 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/04/28,6.981162411154219 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/04/28,5.068620914654165 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/05/29,22.58411666723668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/05/30,6.633700002299994 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/05/30,5.481775004647504 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/09,4.598154599999986 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/09,4.599720499999988 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/08,5.65728448024 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/01,2.904079500000003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/07/01,4.066774999999996 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/06/22,8.623424999307511 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/08/10,7.286538640145004 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/08/10,7.909263642710004 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/08/09,10.243741668474163 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/09/03,8.782925000362507 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/09/03,4.407379500047501 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/10/05,2.261297461538459 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/10/05,3.2500953788461504 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/12/07,22.76551666666667 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/12/08,21.75304166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/11/22,22.14629166611418 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/11/22,21.22687499947752 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/01/01,24.44116666666665 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2018/12/23,12.803508333333331 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/02/02,22.76205 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/02/01,22.69252500000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/01/25,22.376383333333347 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/01/25,22.115583333333348 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/02/26,21.867666666666683 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/04/23,12.563550044777491 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/04/23,12.645425045759987 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/05/08,10.759846976600834 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/04/22,14.144033346543315 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/10,12.448474997464997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/10,8.391449996072497 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/01,8.498774999902523 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/09,10.028666666999174 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/07/03,11.915187917854183 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/26,5.032718199999984 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/06/26,4.932268199999983 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/04,15.287287499235 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/05,3.376853380769227 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/05,2.389382480769231 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/07/27,3.761829599999992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/05,3.593518179999992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/29,4.372710606666653 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/08/29,4.387285606666652 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/06,3.840547930769225 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/06,2.521196425000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/21,7.976949236739166 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/08,6.336205481999993 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/08,6.013637311999995 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/09/29,12.388508333333329 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/23,6.500199984385006 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/11/09,10.218800000289995 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/24,10.723100000454997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/10/24,3.556000000047499 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/12/11,10.93638541802917 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/12/11,22.153295833405835 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/11/25,2.7365170961538454 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2019/11/25,3.68041776923077 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/02/05,22.26459166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/02/05,22.337341666666678 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/02/28,11.069650000385003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/04/01,18.292256250237507 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/04/01,13.006034090285004 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/02,9.1130875039225 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/04/25,7.124459095144995 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/04/25,7.526759095072496 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/03,3.647559099999998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/03,3.2861409100000007 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/27,7.272625000480007 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/27,7.114275000480004 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/06/04,7.144179179624159 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/06/04,8.10088372313582 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/05/26,4.098143209999988 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/05,4.797203526998215 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/06,2.411227175000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/06,2.5927257307692297 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/06,3.166140920072497 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/30,4.02340837666666 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/30,4.12932429666666 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/07,13.71880000019998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/07,12.41354999999998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/07/29,2.6661750000475 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/22,3.989309083405831 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/08,3.504700000072503 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/08,6.428299999999998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/30,3.578427250000004 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/23,4.34086667833333 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/08/23,3.3124455549999983 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/10/09,4.338067446666658 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/23,11.18652916806668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/10/10,13.845058333333334 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/10/10,12.95143333333334 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/24,8.568483334598332 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/09/24,8.151217425722491 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/11/10,8.393750764999991 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2020/10/25,6.405087492740014 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/01/30,21.848400000000016 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/03/11,9.793900000000017 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/03/11,10.663858333333348 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/03/02,22.26459166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/03/26,11.042808334238348 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/05/06,5.009575000000002 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/05/06,3.2658750000000056 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/06/07,2.673325000000005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/06/07,3.604802250000005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/05/29,18.350683333533333 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/10,3.13445225 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/10,3.389202250000002 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/07/25,3.738100653846156 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/07/25,3.2829840000000003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/25,2.387768201377501 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/26,6.737675000262501 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/08/26,4.575552425641016 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/09/26,10.482393750067509 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/06,17.24911322496695 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/06,5.435470460214999 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/10/28,6.297499997975008 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/09,3.6529507099999967 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/09,4.765217436666663 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/05,4.497100000072503 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/10/29,5.618447197435895 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/10/29,5.259692747435895 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/12/07,2.8099817500000004 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/24,2.5670658807692277 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/11/21,5.476447819999996 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/12/24,24.44116666666665 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2021/12/23,11.006849248595834 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/02/26,22.14189166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/02/26,22.14189166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/04/06,12.147766666786676 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/03/29,21.88613333333335 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/09,3.370829599999997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/09,3.1474347546666634 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/09,2.926950825000002 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/09,4.144551580769227 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/08,10.514876139610005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/01,2.76632769 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/01,5.303238729999993 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/04/30,7.083658341065829 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/26,15.776339999617498 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/26,15.764131666284165 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/10,10.121950000704992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/10,11.120600000409992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/25,4.934025000529992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/25,4.485961365719997 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/05/24,10.848291669086676 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/07/04,2.9177977299999984 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/29,3.2200462144683315 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/29,3.70637121381583 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/07/03,6.83868192737024 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/26,5.727473221278212 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/26,4.47460579917238 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/06/25,3.604117426666666 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/08/07,7.978499999665005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/07/28,4.024502953846147 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/07/28,3.964204203076919 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/08/24,3.606863667948716 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/08/28,3.9707621233333272 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/10/09,6.914774433775005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/10/09,5.565052989845836 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/22,7.214770831583349 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/22,9.158929164059185 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/30,13.650233333405827 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/30,13.346608333333329 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/29,2.961591069999999 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/22,2.788573463380833 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/22,2.979902250000003 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/09/21,8.772000000299979 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/10/31,8.319703638907495 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/11/09,2.566799661538459 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/11/09,3.051726936767396 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/11/08,2.8650904500000007 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/10/24,12.281825000200008 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/12/10,2.6993861500000005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/12/02,4.0702916733333305 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2022/11/24,3.6417885 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/02/21,9.426749999595009 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/02/21,9.534874999380008 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/10,11.927708333238328 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/10,12.20291666657166 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/09,15.799299999952488 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/02,13.885008333238334 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/04/01,21.75304166666668 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/09,9.68222708548586 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/31,7.981252270145001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/26,2.8441581879999984 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/26,4.082124117999993 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/05,4.891510607174165 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/05,4.9910681855075 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/28,5.282050000697501 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/28,12.140858338295832 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/05/27,22.507450002205005 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/22,3.102903033478329 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/07/06,8.317393563100838 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/21,3.1841772500475027 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/06/21,2.9726000000474992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/08/05,9.875497124045824 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/08/05,8.726014616023326 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/07/23,3.560027250000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/07/23,8.812850000000008 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/07/22,2.9606000000000057 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/01,8.471404540119998 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/01,4.9413182001449885 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/01,3.5776273000724967 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/08/31,5.732725000000006 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/08/23,2.063327125000001 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/28,7.305952082698347 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/10/03,4.288711384999992 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/10/03,2.8825499500000022 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/10/02,4.450745316333328 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/25,7.139750000722506 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/09/25,6.199375000627503 -Catlin Lake,120052879,-74.2697758052666,44.01752425217372,2023/11/03,9.283056056666666 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2014/12/29,15.284400001415015 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2014/12/29,15.284400001415015 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/03/11,22.142908333333345 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/02/23,22.34590833333334 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/03/11,22.142908333333345 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/02/23,22.34590833333334 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/04/28,11.554683216169996 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/05/06,7.839291675866666 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/04/28,11.554683216169996 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/05/06,7.839291675866666 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/06/07,17.121391666866653 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/05/22,2.819425000000004 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/06/07,17.121391666866653 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/05/22,2.819425000000004 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/02,8.615287500047511 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/10,21.132450022522534 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/07/25,4.47377500007249 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/02,8.615287500047511 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/10,21.132450022522534 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/07/25,4.47377500007249 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/03,11.0265350466225 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/11,6.514206096153837 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/26,3.305275000000001 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/03,11.0265350466225 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/11,6.514206096153837 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/08/26,3.305275000000001 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/10/05,3.3758833617391626 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/27,6.888521335178209 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/10/05,3.3758833617391626 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/09/27,6.888521335178209 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/11/22,5.902108332938338 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/11/30,9.188299998877492 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/11/22,5.902108332938338 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2015/11/30,9.188299998877492 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/02/26,11.351565724570834 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/02/26,11.351565724570834 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/03/29,17.751491403903344 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/03/29,17.751491403903344 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/04/30,4.057840915189996 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/05/08,2.532527250000004 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/04/30,4.057840915189996 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/05/08,2.532527250000004 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/06/09,2.453275000000001 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/06/09,2.453275000000001 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/07/03,7.805739591953337 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/06/25,4.536835769230772 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/07/03,7.805739591953337 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/06/25,4.536835769230772 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/08/04,3.868103786956664 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/07/27,4.461698380769227 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/08/04,3.868103786956664 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/07/27,4.461698380769227 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/05,11.745362116761656 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/08/28,20.145025009200022 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/05,11.745362116761656 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/08/28,20.145025009200022 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/07,4.92699019771428 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/21,5.390705195714278 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/29,3.016750325 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/07,4.92699019771428 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/21,5.390705195714278 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/09/29,3.016750325 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/11/08,5.450359121047614 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/23,11.063281055072489 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/31,5.309873374999988 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/11/08,5.450359121047614 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/23,11.063281055072489 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/10/31,5.309873374999988 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/12/10,8.918721852380946 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/12/10,8.918721852380946 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/01/11,15.84327708423834 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/12/26,11.789908333333337 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/01/11,15.84327708423834 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2016/12/26,11.789908333333337 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/02/04,21.675758333333352 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/02/04,21.675758333333352 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/03/08,4.324512308589739 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/03/08,4.324512308589739 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/04/09,5.094742701923067 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/04/09,5.094742701923067 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/07/30,2.4108132499999995 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/07/30,2.4108132499999995 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/10/10,8.770575011422496 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/09/24,10.736178026666671 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/10/02,6.083017405769227 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/10/10,8.770575011422496 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/09/24,10.736178026666671 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/10/02,6.083017405769227 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2017/11/11,16.435457581266665 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/04/28,4.292624316153838 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/06/07,4.50147268684905 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/05/30,2.8044250000000046 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/07/09,5.457033333478338 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/07/01,8.128025000409993 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/08/10,10.694158333760832 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/08/02,4.01941896230769 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/09/03,2.554527440000001 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/10/05,4.447080436666666 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/12/08,16.34965000038 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2018/11/22,4.123936400072498 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/01/01,3.9350302868841647 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/02/10,12.649891668359167 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/01/25,18.28078031573917 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/05/09,18.20242333123584 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/04/23,12.275401946886946 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/05/25,22.738799999235013 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/06/02,17.378741666666652 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/07/05,4.706359095005 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/06/26,2.417317500000001 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/07/04,5.873509100869995 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/08/06,6.972184092822505 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/07/28,5.628325000427502 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/08/05,4.6386170945512815 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/08/29,5.218100000072504 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/09/06,12.370983333333331 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/10/08,5.018475001979996 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/09/22,5.857425000310009 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/11/09,4.031799547435898 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/10/24,3.3173337499999995 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/12/03,10.067832962124989 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2019/12/11,8.302418785714275 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/01/29,13.972741666476669 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/04/01,4.309443992307686 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/04/25,6.262876516666671 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/05/03,7.01589091 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/06/05,3.259088634999997 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/05/27,3.2545846948116623 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/06/04,4.796767830784167 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/06/21,2.938517261538459 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/07/06,3.062927329999998 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/08/08,4.595373375786781 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/07/30,8.476716666714163 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/09/09,9.523443180000005 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/08/31,5.418925645714278 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/08/24,4.986275756739166 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/08/23,6.423600000772498 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/10/11,5.438268185142507 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/09/25,15.04231666680916 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/10/10,22.753362500237508 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/10/27,7.628924999280015 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/11/28,6.192199996010008 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2020/12/29,3.041075049999997 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/03/11,14.576522917124198 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/04/05,10.05795152998276 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/03/27,7.403349998205012 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/05/07,5.162774980072499 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/05/06,3.236750760598329 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/06/07,4.664827586538461 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/07/10,3.16292256153846 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/06/24,3.007535583333333 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/08/11,7.051574645299163 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/08/02,10.473070835093331 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/07/26,4.771509857029165 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/08/10,11.9050500000475 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/07/25,5.880000000144992 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/09/03,3.461124395333328 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/09/11,4.478550000217496 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/08/26,4.779052250072493 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/11/06,15.26653362740112 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/11/09,7.66054304299999 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/11/04,3.205149089999996 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2021/10/29,5.018359356410254 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/01/25,22.13946666666668 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/03/30,7.846024993527506 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/03/22,11.283325003892497 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/09,3.7989574447391656 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/09,3.818408179999995 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/01,2.913243875 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/04/23,2.6379022500000064 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/26,20.23719166652416 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/05/25,6.889400000120004 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/06/29,4.231213808150181 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/06/24,3.336553344102563 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/07/04,3.565784192307693 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/06/26,4.797865889423076 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/07/28,5.54232575666666 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/07/28,7.538909423076913 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/08/31,7.0011409202175 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/08/29,19.79377500009501 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/10/09,8.163338640000003 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/10/08,3.978311548076925 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/11/09,3.004928467307689 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2022/12/27,6.72801701358974 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/01/28,6.248835057948714 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/02/27,13.65727292438417 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/04/07,3.956001397748571 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/04/10,5.332070416208783 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/04/02,6.90218257833333 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/05/26,2.651041529739166 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/06/05,4.977587505302498 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/05/28,4.3344068199999946 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/07/07,4.1942159201449964 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/06/21,4.387548253846152 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/08/05,5.155874999340001 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/07/31,18.410464166666653 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/07/23,11.125550012957508 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/09/01,12.269309846666667 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/08/22,3.556535447999995 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/09/01,6.112030451999996 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/10/03,8.787996817999987 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/10/27,2.8840022500000053 -Saratoga Lake,120052919,-73.74133431699421,43.01684034616656,2023/11/28,14.00071666706666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/01/05,15.509245834730834 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/01/05,15.509245834730834 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/02/22,11.148625000385003 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/02/22,11.148625000385003 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/04/04,22.476633333333343 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/04/04,22.476633333333343 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/05,12.714058340433333 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/06,7.8610333357783215 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/05,12.714058340433333 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/06,7.8610333357783215 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/06,8.36383332699833 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/30,16.33576667354168 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/07,13.300049999999985 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/29,5.614527329999994 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/22,2.4804422500000007 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/06,8.36383332699833 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/30,16.33576667354168 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/07,13.300049999999985 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/29,5.614527329999994 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/05/22,2.4804422500000007 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/07/08,20.81821666666666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/22,15.895529168386693 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/30,4.783688273486667 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/07/08,20.81821666666666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/22,15.895529168386693 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/06/30,4.783688273486667 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/09,4.318300054999987 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/10,11.641425000237495 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/01,12.667083333333323 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/09,4.318300054999987 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/10,11.641425000237495 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/01,12.667083333333323 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/03,6.420550001000005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/25,4.266174626816667 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/11,2.9784386000000014 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/02,9.09655075855083 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/26,12.461933333118328 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/03,6.420550001000005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/25,4.266174626816667 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/11,2.9784386000000014 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/02,9.09655075855083 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/08/26,12.461933333118328 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/10/05,4.160746949999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/26,4.22612262571428 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/10/04,5.096845179999995 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/27,2.7879378807692303 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/10/05,4.160746949999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/26,4.22612262571428 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/10/04,5.096845179999995 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/09/27,2.7879378807692303 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/29,6.12714166341917 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/22,4.947846675586078 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/30,2.947301742307692 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/29,6.12714166341917 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/22,4.947846675586078 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2015/11/30,2.947301742307692 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/02/26,8.933524999667517 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/03/05,12.1434999995225 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/02/26,8.933524999667517 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/03/05,12.1434999995225 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/05,8.433089399999995 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/03/29,7.629724999265009 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/05,8.433089399999995 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/03/29,7.629724999265009 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/07,14.112530492667496 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/30,5.327262271999993 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/21,4.791661994666661 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/29,6.738100000000003 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/07,14.112530492667496 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/30,5.327262271999993 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/21,4.791661994666661 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/04/29,6.738100000000003 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/23,6.771838629352498 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/31,5.4482106209075 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/23,6.771838629352498 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/05/31,5.4482106209075 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/03,17.221379166279185 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/06/24,9.108009090000008 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/11,4.450288960769227 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/06/25,2.337046925000001 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/03,17.221379166279185 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/06/24,9.108009090000008 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/11,4.450288960769227 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/06/25,2.337046925000001 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/11,17.806791666666683 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/04,3.494096818217497 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/03,5.131270539999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/27,3.062056629999999 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/11,17.806791666666683 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/04,3.494096818217497 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/03,5.131270539999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/07/27,3.062056629999999 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/05,8.010955303333343 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/27,20.824341668966685 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/04,14.613583333333338 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/28,8.502300000625008 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/05,8.010955303333343 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/27,20.824341668966685 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/04,14.613583333333338 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/08/28,8.502300000625008 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/07,10.909884739047616 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/28,11.22471363666667 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/21,16.764193940000023 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/06,5.135414640769231 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/29,6.554050019999995 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/07,10.909884739047616 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/28,11.22471363666667 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/21,16.764193940000023 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/06,5.135414640769231 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/09/29,6.554050019999995 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/08,6.009285610825831 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/23,3.145217707435899 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/07,2.816282668269229 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/08,6.009285610825831 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/10/23,3.145217707435899 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/07,2.816282668269229 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/12/09,3.018700000000007 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/23,5.448990854999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/12/09,3.018700000000007 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2016/11/23,5.448990854999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/01/11,19.001195833923354 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/01/11,19.001195833923354 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/04,21.36779166666669 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/04,21.36779166666669 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/03/08,11.518121253022503 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/27,10.627683333118345 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/20,14.551049999905006 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/03/08,11.518121253022503 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/27,10.627683333118345 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/02/20,14.551049999905006 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/03/23,22.451158333333343 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/04/09,23.15889166870418 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/03/23,22.451158333333343 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/04/09,23.15889166870418 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/05/11,5.567712073846144 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/05/11,5.567712073846144 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/06/11,24.02840833362835 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/05/27,2.810559942307693 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/06/11,24.02840833362835 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/05/27,2.810559942307693 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/05,2.76990365 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/05,2.76990365 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/29,19.424708332903325 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/22,10.414689999477512 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/30,2.9248502492674 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/29,19.424708332903325 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/22,10.414689999477512 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/07/30,2.9248502492674 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/08/23,7.616133336158333 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/08/31,2.961375000000005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/08/23,7.616133336158333 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/08/31,2.961375000000005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/10,7.71437500123 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/01,18.99602500000002 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/09/24,15.981325000000016 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/02,5.0132414918956005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/09/23,12.750287500095 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/10,7.71437500123 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/01,18.99602500000002 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/09/24,15.981325000000016 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/02,5.0132414918956005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/09/23,12.750287500095 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/11/11,4.103524139047613 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/11/10,2.624931749999998 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2017/10/25,2.3745452300000007 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/05/05,3.8541515266666657 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/04/28,6.771699999999998 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/06/07,8.25290000136002 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/05/29,5.684701849838215 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/05/30,3.3754098533333337 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/07/09,12.645616666666664 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/07/08,19.016874999769996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/06/22,6.09418940861166 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/08/10,3.8383924516666617 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/08/09,2.8113545500000003 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/09/03,2.7519250000000035 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/08/25,7.107106820000005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/10/05,7.013325609666667 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/12/07,22.30574166666668 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/11/22,21.791766666666685 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2018/12/23,7.365883333318338 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/02/10,11.08439166652418 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/03/06,22.47810000000001 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/02/26,13.132908333238335 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/04/23,3.0089507683333307 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/05/08,2.814122200000001 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/04/22,2.5776511875000008 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/06/01,13.25472499892499 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/06/09,2.88216495 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/06/26,8.189136365167506 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/08/04,15.021775020772496 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/08/05,4.134434099999994 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/07/27,5.067100000190005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/09/05,4.661682469047612 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/08/29,7.711672899899163 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/09/06,3.930047734999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/09/21,18.961125004600014 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/10/08,4.977754499999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/09/29,11.928933333333337 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/11/08,6.716699999160011 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/10/24,13.026458333933329 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2019/11/25,15.86800208403835 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/02/21,22.47810000000001 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/02/29,21.867666666666683 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/02/20,10.843175000185006 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/04/01,8.848274999762515 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/05/02,16.137808342533358 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/04/25,3.343349251666664 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/05/03,6.937690161666666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/05/27,7.330677276884167 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/06/04,4.512627250000004 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/05/26,5.166625000120006 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/07/05,15.102408360933332 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/06/28,3.4953249999999927 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/07/06,4.92528337166666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/07,8.645618948333341 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/31,2.6710689616666654 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/22,16.921291666666647 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/30,2.4243407500000016 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/08/23,3.204475000000006 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/10/09,3.96324019666666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/10/10,14.41040000345 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2020/11/03,5.909824997420014 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/01/30,12.862350000184993 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/05/06,5.862300000000004 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/06/07,3.5131750000000017 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/05/29,16.51798333311583 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/08/02,7.164041668381665 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/08/10,3.114647500000001 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/07/25,12.434816666739165 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/09/11,11.526812499999998 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/08/26,2.930952250047504 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/06,5.930655283333324 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/09,2.8510591000000005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/05,3.829403721153848 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/10/29,2.615965793269229 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/24,7.694087168269237 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/11/21,2.385363299999999 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/12/24,19.56087500000002 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2021/12/23,3.1430250000000006 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/01/25,22.47810000000001 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/02/26,22.890716666666677 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/04/06,9.916151300920005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/03/29,21.78088333333335 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/09,6.462221976666665 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/09,3.390682999999997 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/08,8.269515915509988 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/01,5.525215929999995 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/04/30,5.622783338763322 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/04/22,3.157641692307692 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/31,8.569466656381666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/26,15.367804165901669 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/25,3.369525014999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/05/24,5.79707209945905 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/07/04,19.92125833333337 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/06/29,3.727779549999994 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/07/03,6.409490262910713 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/06/26,4.613400000000003 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/06/25,2.8330923399999985 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/07/28,2.6397250000000043 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/07/27,12.06351666663666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/08/29,4.901975000965003 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/08/28,5.069565869999996 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/09/30,3.172071254807692 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/09/29,3.3975750000000096 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/09/21,14.912833333713325 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/10/26,6.733699246785833 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/11/09,3.0675188111263725 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/11/08,2.784556918269229 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/10/31,5.990563638927496 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/12/10,3.500927250000001 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/12/02,7.370420100000005 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2022/11/24,2.849674999999998 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/04/10,11.662824999952493 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/04/09,12.506108333238323 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/04/02,12.639658333238328 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/04/01,13.158533333238337 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/05/31,8.888643180072505 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/05/26,7.543504163405835 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/06/05,5.339125000747504 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/05/28,10.90150833537082 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/05/27,17.322050002394977 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/06/22,7.887268180192503 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/07/06,6.583111369999997 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/06/21,4.765151516739166 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/10,13.676583335753325 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/05,8.890984090892506 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/07/31,5.200724999955003 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/07/30,3.453250000000004 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/07/23,3.4782157133333333 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/01,8.789846966786666 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/27,5.251449998650004 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/09,4.769135606666667 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/01,5.722950000432502 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/31,4.891360606666663 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/24,4.36769999999999 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/08/23,2.50902254 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/28,10.733829168044164 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/23,5.998629167004165 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/10/02,5.083260606666661 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/25,14.20447500050499 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/09/24,17.14474999999998 -Union Falls Pond,120053521,-73.93890297497306,44.48282958714989,2023/11/03,4.930656799999995 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/01/05,21.75304166666668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/01/05,21.75304166666668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/02/23,22.404625000000006 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/02/22,21.750616666666684 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/02/23,22.404625000000006 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/02/22,21.750616666666684 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/04/28,7.444735418514171 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/06,2.8635155750000005 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/04/28,7.444735418514171 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/06,2.8635155750000005 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/06,4.885299560490832 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/30,7.714468761379997 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/07,13.725808333333314 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/29,12.770858333333322 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/22,11.712750031050009 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/06,4.885299560490832 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/30,7.714468761379997 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/07,13.725808333333314 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/29,12.770858333333322 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/05/22,11.712750031050009 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/07/08,13.64684166513666 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/22,22.123929164944176 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/07/08,13.64684166513666 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/06/22,22.123929164944176 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/09,4.3735795505575 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/02,21.204258332398336 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/07/24,19.69162499999999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/01,2.558075000000002 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/09,4.3735795505575 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/02,21.204258332398336 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/07/24,19.69162499999999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/01,2.558075000000002 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/25,3.672626374811659 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/11,5.819600003357494 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/02,6.203425002374996 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/08/25,3.672626374811659 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/11,5.819600003357494 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/02,6.203425002374996 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/26,8.5657500007625 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/10/04,12.882033333333318 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/27,2.443913973626373 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/26,8.5657500007625 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/10/04,12.882033333333318 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/09/27,2.443913973626373 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/05,13.022199999784984 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/05,13.022199999784984 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/29,9.18567804447166 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/12/07,4.481375000000008 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/30,16.990691666851653 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/29,9.18567804447166 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/12/07,4.481375000000008 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2015/11/30,16.990691666851653 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/05,11.753503344810827 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/03/29,9.826400030062509 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/05,11.753503344810827 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/03/29,9.826400030062509 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/07,11.068325025215008 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/30,6.800575000072509 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/21,12.995925000429995 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/08,3.22902500000001 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/29,3.236219024999999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/07,11.068325025215008 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/30,6.800575000072509 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/21,12.995925000429995 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/08,3.22902500000001 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/04/29,3.236219024999999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/31,7.838996587554999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/05/31,7.838996587554999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/07/03,7.056472923721662 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/06/24,6.019415829890837 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/07/03,7.056472923721662 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/06/24,6.019415829890837 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/11,2.6331840955075005 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/04,4.037950000072491 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/07/26,4.254102020004405 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/03,2.949475000072504 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/11,2.6331840955075005 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/04,4.037950000072491 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/07/26,4.254102020004405 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/03,2.949475000072504 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/05,4.455072799999991 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/27,7.317717426666664 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/04,3.368084149999997 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/05,4.455072799999991 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/08/27,7.317717426666664 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/04,3.368084149999997 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/07,7.341343191811664 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/28,8.459829175489174 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/21,3.759353791666659 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/06,2.693720460000001 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/07,7.341343191811664 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/28,8.459829175489174 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/09/21,3.759353791666659 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/06,2.693720460000001 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/08,4.054537890002501 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/23,15.490366687414188 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/07,2.2578450499999985 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/08,4.054537890002501 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/10/23,15.490366687414188 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/07,2.2578450499999985 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/09,4.181912074999995 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/23,3.0078000000000014 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/09,4.181912074999995 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/11/23,3.0078000000000014 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/26,23.333575 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/25,12.757925000184994 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/26,23.333575 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2016/12/25,12.757925000184994 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/02/27,21.675758333333352 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/02/20,20.365858333238364 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/02/27,21.675758333333352 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/02/20,20.365858333238364 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/03/23,22.120274999785007 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/04/09,20.595958333238368 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/03/23,22.120274999785007 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/04/09,20.595958333238368 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/04/24,13.70026674486668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/04/24,13.70026674486668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/11,16.19543333333333 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/03,7.534270832640839 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/11,16.19543333333333 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/03,7.534270832640839 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/27,6.867399991462507 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/07/05,13.141216666221656 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/06/27,6.867399991462507 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/07/05,13.141216666221656 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/07,8.508083339330835 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/07/29,15.661808372433333 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/06,2.938750000000004 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/07,8.508083339330835 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/07/29,15.661808372433333 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/06,2.938750000000004 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/30,2.7910439585983324 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/08/30,2.7910439585983324 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/01,3.5681037966666618 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/09/24,3.555243185072493 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/02,2.41339116826923 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/09/23,5.435454177250826 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/01,3.5681037966666618 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/09/24,3.555243185072493 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/02,2.41339116826923 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/09/23,5.435454177250826 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/11/11,3.341263778666664 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/11/10,17.248316666851654 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/10/25,5.9190636799999945 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/12/04,3.0652312492725056 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/01/05,22.663366666666672 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2017/12/29,22.34590833333334 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/01/06,21.75304166666668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/05/05,10.785738627299995 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/06/07,14.951783335650834 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/05/29,6.518183325570838 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/05/30,5.756975000699997 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/07/09,4.285086385072488 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/06/30,15.02469583295083 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/07/08,9.266935002777478 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/06/22,12.84398333333332 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/08/10,2.715313319871793 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/08/09,12.670133333333322 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/08/25,15.24888333331833 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2018/11/22,4.5465067500475 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/02/09,9.957608332975852 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/04/23,7.087158335870843 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/05/08,5.708125004672497 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/04/22,3.09300612 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/06/01,9.604204163754192 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/06/09,6.555267825071664 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/07/03,4.418271980080001 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/06/26,4.3149932000724895 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/08/04,16.959108333095827 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/07/28,5.477695824468342 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/07/27,9.163887512870003 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/09/05,3.712237896666658 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/09/21,6.6845962133333305 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/10/08,4.082567630769227 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/09/29,3.831470904999995 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2019/11/09,3.36514423076923 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/02/21,22.451158333333343 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/02/20,21.867666666666683 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/04/01,3.0707250000000035 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/02,10.850617435062505 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/04/25,17.98317505980002 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/10,10.106408365580831 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/03,4.243728033333326 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/27,5.16440378944333 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/05/26,3.337004500000002 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/07/05,6.963475003142503 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/08/06,7.006200003117502 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/07/30,3.552827564102563 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/08/31,3.281495499999997 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/08/22,3.3480272716674966 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/10/09,3.113425029999998 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/10/01,9.11417500028999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/11/10,8.409869708405825 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/11/03,4.690179166664176 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/10/25,10.756138763822491 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2020/12/29,21.75304166666668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/03/02,22.26459166666668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/04/03,10.284322921419166 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/04/04,15.296843750705015 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/05/06,4.530997729999995 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/06/06,16.267499999809985 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/06/07,2.8034772500000007 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/05/29,4.651300000142491 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/06/23,2.376025000000002 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/08/02,7.221375033149999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/07/24,13.35723336126833 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/09/10,7.904925011522501 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/08/25,4.585550001979999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/09/26,2.78629308333333 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/11/06,4.804575052714282 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/10/28,9.150431066666664 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/10/29,2.787035360576923 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/11/24,3.871818615384616 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2021/11/21,12.916825000047496 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/01/08,21.75304166666668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/02/02,21.675758333333352 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/01/24,21.867666666666683 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/02/26,22.23439166666668 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/03/29,22.113474999737512 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/03/22,11.52869166657166 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/05/09,3.002764800000001 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/05/08,7.939353033333334 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/05/01,5.22425833730083 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/04/30,6.8966666689666605 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/04/22,4.601392307692304 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/05/24,3.104725000000004 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/07/04,11.076125000049998 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/07/11,9.255008338198314 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/07/04,3.938604244871791 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/07/03,5.213670190929881 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/06/26,5.095175000144992 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/06/25,2.795652225000003 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/10,3.4678219669566626 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/08/24,7.867606245495001 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/08/29,2.5463500000000017 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/08/28,3.4671603283333274 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/22,3.2308227357249977 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/10/08,3.2109750000000075 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/30,13.043041666666651 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/29,2.5513795000000017 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/22,5.151173453846148 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/09/21,15.529366667769164 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/11/09,3.582597461538462 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/11/08,2.1966429499999967 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/12/10,2.275046475000001 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/12/02,3.083675000000006 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2022/11/24,3.1389067500000016 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/02/04,22.304175000000008 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/04/10,10.563958333238327 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/04/02,12.640574999905006 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/04/01,13.555800000332512 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/03/24,17.36656250072749 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/05/11,7.43883333793333 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/05/31,10.335352270892509 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/05/26,4.206125000072495 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/06/04,4.263438639159999 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/05/27,21.910241665901665 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/06/22,19.238170833380828 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/07/06,4.0968613653600015 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/08/05,4.007237499987507 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/07/30,3.286654500000003 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/07/22,4.823098882292499 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/09/06,6.860944706666666 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/09/01,3.385486369999992 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/09/08,12.625404166451666 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/08/31,3.300565713333331 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/08/23,3.827106849999993 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/10/03,14.08472916654666 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/09/28,5.541758326925841 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/10/03,3.605712349999996 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/10/02,5.783075000192498 -Sand Lake,166890765,-74.9961540318365,43.57179412175847,2023/11/03,2.4204131750000006 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2014/12/26,4.542549998232511 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2014/12/26,4.542549998232511 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/03/08,21.750616666666684 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/02/20,21.75304166666668 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/03/08,21.750616666666684 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/02/20,21.75304166666668 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/05/03,11.960845836383353 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/05/11,5.963126310594048 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/05/03,11.960845836383353 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/05/11,5.963126310594048 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/07,10.073525000355 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/07/22,9.153002081243343 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/07/30,11.132279938734175 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/07,10.073525000355 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/07/22,9.153002081243343 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/07/30,11.132279938734175 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/09/08,14.700583749905006 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/23,13.785254863278602 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/31,10.18112499999999 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/09/08,14.700583749905006 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/23,13.785254863278602 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/08/31,10.18112499999999 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/10/10,4.339893890386071 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/09/24,15.848358333428326 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/10/10,4.339893890386071 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/09/24,15.848358333428326 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/10/26,21.0643627939253 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/11/03,11.004644693333328 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/10/26,21.0643627939253 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2015/11/03,11.004644693333328 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/01/06,3.250969230769229 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/01/06,3.250969230769229 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/04/03,9.4435062725525 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/03/26,16.94923333295083 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/04/03,9.4435062725525 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/03/26,16.94923333295083 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/04/27,20.51248334573581 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/04/27,20.51248334573581 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/07/08,16.237741666666665 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/06/30,16.540583349580846 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/07/08,16.237741666666665 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/06/30,16.540583349580846 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/08/09,8.300025016500001 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/08/01,8.549979864983603 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/08/09,8.300025016500001 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/08/01,8.549979864983603 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/10,8.969395831398343 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/02,12.23862652342832 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/10,8.969395831398343 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/02,12.23862652342832 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/26,8.279000006130005 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/10/04,7.054566841999994 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/09/26,8.279000006130005 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/10/04,7.054566841999994 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/10/28,6.55614999409001 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2016/10/28,6.55614999409001 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/03/05,11.706566667856691 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/03/05,11.706566667856691 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/03/29,8.781950000145004 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/03/29,8.781950000145004 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/04/30,7.566837495170009 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/04/30,7.566837495170009 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/06/09,6.140172501057507 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/06/09,6.140172501057507 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/06/25,7.38683332525834 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/06/25,7.38683332525834 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/08/04,5.45689556695083 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/08/04,5.45689556695083 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/09/21,10.874258337933322 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/09/21,10.874258337933322 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/10/31,7.182925000000011 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/11/08,6.2410977523076845 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2017/11/24,16.350225000237508 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/02/20,7.386208333718338 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/03/24,16.343581253887496 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/05/03,6.487320911825002 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/05/27,8.01540125056749 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/07/06,5.471700185976552 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/08/23,7.515468180625001 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/10/10,8.68166229199999 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2018/11/11,17.693558332545823 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/03/27,14.442800000705008 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/05/06,11.086618190000005 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/06/07,19.7526666656142 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/07/01,19.03587083290332 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/07/09,16.61977083333334 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/06/23,22.129983335633327 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/08/02,8.74231667019416 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/08/10,10.4132186451275 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/07/25,8.768425000479995 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/09/03,9.082100000000004 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/09/11,12.993619452151943 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/10/05,27.89573334032832 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/09/27,5.7122226699999965 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/11/06,9.829551141744998 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/10/29,25.405361669156697 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/12/08,5.183163823594169 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2019/12/24,8.112631258404992 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/03/05,17.720164583665827 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/04/06,12.659822916666664 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/04/22,6.924975 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/06/01,8.023452293547503 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/06/09,6.574125000767501 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/05/24,8.966746790967504 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/07/03,17.75015833314083 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/06/25,4.332692123846146 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/07/27,2.660975000047499 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/09/05,17.11745416946664 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/09/21,8.035059846714171 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/11/08,9.716962508525002 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2020/10/23,11.765411667319166 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/01/11,6.085749996655008 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/06/04,11.985149998327495 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/05/27,4.930751928285 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/07/06,9.70796171202165 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/06/28,9.161625000217494 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/08/07,9.624966668329185 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/07/22,12.63277916794918 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/07/30,10.1704500000725 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/08/23,6.920404207859168 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/09/24,5.249875603075835 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/10/02,15.186541692111694 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/11/07,5.293650052307688 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/11/03,12.109884090189984 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2021/11/02,23.19799166652917 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/01/22,21.95438333328585 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/03/03,10.67225833311834 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/04/28,18.930783338228338 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/06/10,2.2998968330725 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/05/29,20.83556666690416 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/05/24,8.861770000479995 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/05/30,4.982400000072495 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/06/27,3.620746183623332 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/07/09,5.413483198072495 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/07/01,6.430383340328339 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/06/23,6.208508333478332 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/08/10,3.353875000000001 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/08/02,8.212727275145001 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/07/25,9.729129552395008 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/10/05,12.140237873333314 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/11/10,13.361211368212505 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/10/24,22.55659444952441 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/10/29,4.716584280769228 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2022/11/22,7.349899640696667 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/01/09,14.482650000309988 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/02/08,5.996599997545008 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/02/02,11.610044515016677 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/04/10,10.322029591275845 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/04/07,16.16608124947751 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/03/30,16.505900002680026 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/04/27,8.813450007877512 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/05/09,6.3575944312523776 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/06/10,4.804096819424997 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/05/24,9.080560415834183 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/06/10,16.477939166429174 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/06/02,3.1236704999999967 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/07/04,3.5742288333333305 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/06/26,9.902275000289992 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/08/03,12.661633340193328 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/07/28,3.9220583366666575 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/08/30,10.583477499329994 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/09/06,3.180577250000005 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/08/29,13.880646966644148 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/09/30,13.826966659999966 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/09/22,14.674961115758606 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/10/23,6.867124993845007 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/11/01,7.677569696959162 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/10/24,3.7147371666666658 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/12/03,3.712675000000007 -Allegheny Reservoir,166899002,-78.93641116221721,41.94278043441859,2023/11/25,4.3056843007692285 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/01/22,10.41331666666668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/01/22,10.41331666666668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/02/24,21.67155833333335 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/02/24,21.67155833333335 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/04/28,15.02883336587081 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/04/29,6.162002729999999 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/04/28,15.02883336587081 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/04/29,6.162002729999999 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/05/30,9.270170832173353 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/06/07,9.670442050835003 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/05/22,5.206945082254159 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/05/30,9.270170832173353 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/06/07,9.670442050835003 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/05/22,5.206945082254159 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/10,15.462766673254174 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/01,6.062924993735015 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/10,15.462766673254174 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/01,6.062924993735015 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/02,17.140100004220013 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/25,20.562249999952503 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/02,17.140100004220013 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/07/25,20.562249999952503 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/03,16.322174998860007 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/27,11.431688783269992 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/11,3.4953045000000054 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/26,14.377806250167517 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/03,16.322174998860007 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/27,11.431688783269992 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/11,3.4953045000000054 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/08/26,14.377806250167517 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/10/05,18.760995832380846 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/27,17.02429583359584 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/10/05,18.760995832380846 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2015/09/27,17.02429583359584 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/01/02,5.385837500282507 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/01/02,5.385837500282507 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/10,6.044749999770006 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/01/25,8.169474997587516 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/02,21.779700004742523 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/10,6.044749999770006 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/01/25,8.169474997587516 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/02,21.779700004742523 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/26,20.734133354008343 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/27,2.955373761538459 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/26,20.734133354008343 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/02/27,2.955373761538459 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/03/29,11.191050430713338 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/03/30,20.22175835182834 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/03/29,11.191050430713338 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/03/30,20.22175835182834 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/09,15.295341734689153 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/04/23,10.5373250190975 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/08,2.8724000000000034 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/04/22,11.893814495256663 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/09,15.295341734689153 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/04/23,10.5373250190975 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/08,2.8724000000000034 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/04/22,11.893814495256663 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/25,14.703025012600005 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/09,18.82737500638004 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/05/25,14.703025012600005 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/09,18.82737500638004 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/07/03,24.63075416880416 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/26,10.810414566343338 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/25,15.57212916640417 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/07/03,24.63075416880416 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/26,10.810414566343338 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/06/25,15.57212916640417 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/08/04,14.855000000000002 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/07/27,23.998108335775843 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/08/04,14.855000000000002 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/07/27,23.998108335775843 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/08/28,15.66972500115002 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/08/28,15.66972500115002 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/07,16.457475000247506 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/09/21,18.92513333333336 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/09/29,23.47630833333333 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/07,16.457475000247506 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/09/21,18.92513333333336 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/09/29,23.47630833333333 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/11/08,24.23965833563336 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/11/01,11.125015832165836 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/23,19.398375000580003 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/31,22.052831252490023 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/11/08,24.23965833563336 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/11/01,11.125015832165836 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/23,19.398375000580003 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/10/31,22.052831252490023 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/03,11.0882937594425 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/02,3.439885205769229 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/03,11.0882937594425 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/02,3.439885205769229 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/01/11,10.93542083893333 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/26,24.44116666666665 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/27,18.96141669196668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/01/11,10.93542083893333 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/26,24.44116666666665 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2016/12/27,18.96141669196668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/02/28,11.879937527930004 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/03/08,2.368087975 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/02/20,19.714556250200005 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/02/28,11.879937527930004 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/03/08,2.368087975 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/02/20,19.714556250200005 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/04/09,2.417622150000003 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/04/02,2.474624650000001 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/04/09,2.417622150000003 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/04/02,2.474624650000001 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/05/27,6.4920000013949855 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/05/27,6.4920000013949855 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/06/28,3.032769230769232 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/06/28,3.032769230769232 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/07/31,16.805675001724993 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/07/30,13.353983346130851 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/07/31,16.805675001724993 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/07/30,13.353983346130851 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/08,7.283794198039164 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/01,19.951028333333344 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/08/23,14.43835835195083 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/08/31,15.910725000189998 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/08,7.283794198039164 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/01,19.951028333333344 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/08/23,14.43835835195083 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/08/31,15.910725000189998 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/10,7.176224993385007 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/03,13.71071666906668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/24,13.177539585415843 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/11,23.304883333165847 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/02,15.62351666676168 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/10,7.176224993385007 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/03,13.71071666906668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/09/24,13.177539585415843 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/11,23.304883333165847 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/02,15.62351666676168 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/11/11,18.899183334298343 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/11/04,6.052603714471669 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/27,15.104399999905004 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/11/11,18.899183334298343 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/11/04,6.052603714471669 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/10/27,15.104399999905004 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2017/12/06,9.78662916444667 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/03/11,6.653274768717941 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/04/05,4.593375000289997 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/04/28,3.622325000000008 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/04/21,9.294358336666653 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/06/07,12.023037499715016 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/05/30,13.374025000000008 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/05/23,4.016699246666662 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/07/09,13.854866668966674 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/07/02,23.37867291666668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/08/10,8.083708331618341 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/08/03,11.31189166874916 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/08/02,4.637722036153836 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/09/04,7.4197479368541615 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/08/26,7.685914999582517 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/09/03,13.662683334055831 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/10/05,22.10436666884668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/11/07,20.417944465239454 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/10/30,20.30440834037585 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/12/09,11.19999168943666 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/12/08,4.107106819999999 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/11/22,3.47925651666666 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2018/12/25,4.603767854904998 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/01/26,9.851387519319996 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/02/10,9.58254393842168 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/03/06,11.201000000000016 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/04/07,6.568017497369998 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/03/30,6.560675000145 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/05/02,11.270208345023333 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/04/23,21.56481252549002 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/06/03,14.548300026065004 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/05/25,12.55762501840499 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/06/02,11.587124999999984 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/07/05,6.396399993015007 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/06/26,15.681283348563342 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/07/04,25.556175000000003 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/07/28,9.688412529064994 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/09/07,13.85532500249001 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/08/29,10.484054174041663 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/08/22,12.123808339345842 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/09/23,13.778749999630008 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/09/22,15.056600003450002 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/11/01,22.14608333392334 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/10/24,28.23254166896665 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/12/03,11.568514588380836 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/11/26,12.863454861158605 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/12/11,12.811758333518323 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/11/25,17.03728333563334 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2019/12/28,3.313683333033337 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/01/29,13.502454868201111 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/03/01,9.985393946151648 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/02/21,6.934128028333333 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/03/09,4.850183338240829 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/04/02,11.628689590298343 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/03/24,13.704786137297488 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/04/01,4.572781305333329 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/05/03,5.117225002299993 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/05/27,11.07887499667 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/06/04,8.831841682766672 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/06/28,11.751600110992513 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/06/21,9.303528786666677 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/07/06,5.393490031666663 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/08/08,12.92902499964251 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/08/07,14.996975000190009 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/07/22,2.813152250000007 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/08/24,12.448566673014176 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/09/08,15.214154183701671 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/08/23,18.640677275095 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/10/11,6.444708324520843 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/10/10,24.31990000047499 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/11/28,9.525210413761677 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/12/06,3.32626564711538 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/01/06,6.144695829203348 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2020/12/29,2.562505830769231 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/01/22,8.9000750913486 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/03/04,9.01683333568082 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/04/05,13.936720849198334 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/03/27,18.858145888465845 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/05/06,3.125565547743333 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/06/07,18.740966686579192 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/06/24,9.02699469666668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/07/09,4.239375000192493 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/06/23,3.079950000072505 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/08/11,17.218743752632488 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/08/02,12.372712499975009 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/09/03,3.297265156666663 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/08/27,8.665300003977501 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/09/11,23.36150000460001 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/08/26,15.708016668966684 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/09/27,16.820491666451673 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/11/06,12.004450760000005 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/11/09,3.354019579999997 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/11/04,13.51201667126668 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2021/12/01,10.107833935029166 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/02/10,3.291719230769237 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/02/26,18.134512500475 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/02/27,17.58475000000005 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/02/26,3.971558798333331 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/03/30,8.238387497167507 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/04/08,2.8488750000000045 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/03/22,4.610405303333328 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/09,16.33762727333335 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/10,8.197278043333325 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/09,10.2778250506 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/01,10.042200009199984 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/05/25,14.63097500079999 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/07/11,8.501900000000013 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/06/29,25.58236209023335 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/06/24,23.790632918966693 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/07/04,4.461380315217497 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/06/26,6.770125001709996 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/02,7.37139999706751 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/07/28,9.326900012804993 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/06,9.466520469999995 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/05,8.570075001482481 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/07/29,3.824275000000004 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/31,2.4292962307692325 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/08/29,6.495799999999998 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/10/09,16.01851630971882 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/10/08,21.079572263164224 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/09/23,18.295393182442503 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/11/07,15.401859099917504 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/10/26,9.136783333533344 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/11/10,15.393718182395002 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/11/09,14.332346969061666 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/11/26,11.041643179999983 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2022/12/27,13.313041675724172 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/02/10,10.297647929921665 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/02/06,14.35315 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/01/28,2.375226849999999 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/03/09,2.3121572 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/04/11,13.929025071300014 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/04/10,2.4966744750000016 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/04/03,11.133043179999987 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/04/02,13.663406056666677 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/03/26,2.6069730250000034 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/05/26,18.000440153333365 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/06/05,5.459789040705837 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/05/29,14.88796666666667 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/05/28,3.5437113849999973 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/07/07,11.969175000337492 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/06/30,13.18877500029 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/06/29,4.727425000047492 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/06/21,5.847093941746669 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/08/05,22.68568083333333 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/07/31,21.66383500000002 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/07/31,10.04283485333334 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/07/23,9.241978786666674 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/08/27,14.257625006792514 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/08/22,15.28760250033251 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/09/01,22.42975000460001 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/10/03,5.449759039999996 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/10/28,21.422410763566692 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/11/29,11.83042197268832 -Orange Lake,6213032,-74.1036054599578,41.549051548150665,2023/11/28,4.258560080769225 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/02/07,22.674233333333337 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/02/07,22.674233333333337 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/03/11,11.54560833307084 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/03/11,11.54560833307084 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/06,4.360050000410001 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/06,4.360050000410001 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/30,4.096201529091667 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/22,13.28875001265001 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/30,4.096201529091667 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/05/22,13.28875001265001 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/03,7.667477082725849 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/11,3.0853022499999976 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/08/26,4.285250000362493 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/03,7.667477082725849 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/11,3.0853022499999976 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/08/26,4.285250000362493 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/10/05,10.40773333810584 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/27,10.15621136 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/10/05,10.40773333810584 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/09/27,10.15621136 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/11/22,7.561899994615005 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/11/30,2.6962520000000016 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/11/22,7.561899994615005 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2015/11/30,2.6962520000000016 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/03/05,13.28685833245833 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/03/05,13.28685833245833 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/03/29,9.791802975520476 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/03/29,9.791802975520476 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/04/30,5.156733338333331 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/04/30,5.156733338333331 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/05/24,4.074824999999992 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/05/24,4.074824999999992 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/07/03,4.318076640440242 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/07/11,4.431499450333331 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/06/25,5.3551 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/07/03,4.318076640440242 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/07/11,4.431499450333331 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/06/25,5.3551 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/08/04,8.362250028074996 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/08/04,8.362250028074996 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/05,10.41954772333334 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/08/28,5.948261366834172 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/05,10.41954772333334 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/08/28,5.948261366834172 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/10/07,5.451702266739172 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/21,8.511340146739164 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/29,4.865995489999996 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/10/07,5.451702266739172 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/21,8.511340146739164 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/09/29,4.865995489999996 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/11/08,3.908384863623329 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/10/23,11.842699997234996 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/11/08,3.908384863623329 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2016/10/23,11.842699997234996 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/01/11,17.549756250800016 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/01/11,17.549756250800016 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/02/28,10.403625015787492 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/03/08,12.939492917046662 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/02/28,10.403625015787492 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/03/08,12.939492917046662 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/04/09,3.489544327435893 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/04/09,3.489544327435893 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/05/27,3.2627649207692277 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/05/27,3.2627649207692277 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/06,15.257855834185843 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/06,15.257855834185843 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/08/07,12.553623400075823 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/22,17.06889166767416 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/30,2.7235362750000003 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/08/07,12.553623400075823 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/22,17.06889166767416 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/07/30,2.7235362750000003 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/08/23,12.398620888230834 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/08/23,12.398620888230834 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/10/10,4.215525002395004 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/09/24,6.304950000142506 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/10/02,4.526233802769228 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/10/10,4.215525002395004 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/09/24,6.304950000142506 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/10/02,4.526233802769228 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/11/11,7.914777270144992 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/11/11,7.914777270144992 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2017/11/27,7.535868801437499 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/05/30,4.267200000072502 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/07/09,8.6527250042825 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/07/01,10.532250000457497 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/08/10,4.076961359999991 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/09/03,6.934100493248208 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/10/05,2.7900344307692317 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2018/12/08,5.701335736864881 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/01/25,15.521991666619163 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/03/06,22.177183333333343 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/02/26,21.85934999973752 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/05/09,8.704699994619999 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/04/23,11.251837297656902 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/06/26,8.485150004695003 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/07/28,7.199112915306679 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/08/05,12.663633332903322 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/08/29,8.111025014207497 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/09/06,3.3089238307692286 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/10/08,4.576574722769226 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/11/01,4.106279582353339 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/10/24,4.084100783333327 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2019/11/25,9.62405682 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/03/08,10.909424999620022 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/04/01,2.898434131666667 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/04/25,3.536790915214999 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/05/03,8.07207045999999 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/05/27,6.757533335965829 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/06/04,6.471625000862503 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/06/28,9.712449985999994 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/07/06,2.75497711153846 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/07/30,9.56264166678667 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/08/07,3.2909465207692272 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/08/31,3.772810606739163 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/10/10,14.729275002299994 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/09/24,8.569383333453324 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/11/03,5.695025000200003 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2020/12/29,17.00748333970835 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/03/11,12.721558333190828 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/03/27,7.243225004027498 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/05/06,5.63066591 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/06/07,6.667850000264999 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/05/22,9.687916668271654 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/08/02,3.878316666951664 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/08/10,15.692200004600007 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/09/11,5.962475000357504 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/08/26,21.315958333333324 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/11/06,5.057656830214993 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/11/09,3.1869204649999947 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/10/29,3.484447603205125 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/11/22,8.3858431373394 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/12/24,11.580508333333334 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2021/12/24,8.018216664456675 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/01/25,22.47810000000001 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/02/26,22.14189166666668 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/03/30,11.90125750073251 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/03/22,3.576900014999997 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/05/09,5.547361360047503 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/05/09,4.208565079999996 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/05/01,5.57985454999999 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/04/23,6.7677750064624975 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/05/25,4.702558715825833 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/06/29,3.313365912174163 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/06/26,3.227865910217499 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/07/28,6.200933333333333 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/08/31,3.1753303516025624 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/08/29,17.36550000133999 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/10/04,15.226974999094995 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/10/08,5.667621391999993 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/09/30,13.576287500094995 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/10/26,9.650531251627486 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/11/09,2.8968850807692297 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2022/12/27,12.68026666665166 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/02/21,10.451208333070849 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/04/07,6.920587503333341 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/04/10,3.909352099999996 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/04/26,3.5263887 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/05/26,7.818164770867506 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/05/28,7.055575000452503 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/07/04,2.6238931826825 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/06/21,15.35615001856752 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/08/05,19.52960019147916 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/07/23,3.238569706739161 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/01,13.489464167214155 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/08/22,10.484044693333336 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/09,10.501841665901663 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/01,23.68949958342832 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/08/24,23.72221666666667 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/28,10.29994584131082 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/23,5.920370827698337 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/10/03,18.860875002489976 -Augur Lake,9527501,-73.49891901129267,44.45894854946804,2023/09/25,3.7911250000725016 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/01/29,22.348225000000006 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/01/29,22.348225000000006 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/02/22,23.552474999999998 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/02/22,23.552474999999998 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/05,4.9309637875092776 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/04/28,5.239650005190004 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/06,8.552088641022483 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/05,4.9309637875092776 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/04/28,5.239650005190004 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/06,8.552088641022483 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/06/06,4.522039625507496 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/06/07,10.818300000142482 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/29,3.8075590365384575 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/06/06,4.522039625507496 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/06/07,10.818300000142482 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/05/29,3.8075590365384575 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/09,8.024041677999165 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/10,2.7069842500000028 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/01,6.3339357152932045 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/09,8.024041677999165 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/10,2.7069842500000028 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/01,6.3339357152932045 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/03,5.934770821503342 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/25,2.8973144678571416 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/11,3.966829395769224 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/03,5.934770821503342 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/08/25,2.8973144678571416 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/11,3.966829395769224 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/10/05,9.746329169864168 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/26,3.499456086666658 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/10/04,4.936663625145 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/27,2.6657111125 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/10/05,9.746329169864168 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/26,3.499456086666658 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/10/04,4.936663625145 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/09/27,2.6657111125 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/29,4.527031814999996 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/22,4.00768574141357 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/21,12.842583333118329 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/29,4.527031814999996 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/22,4.00768574141357 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2015/11/21,12.842583333118329 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/01/24,21.98777499978501 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/01/24,21.98777499978501 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/03/04,22.787799999785 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/03/05,13.828591666571672 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/03/04,22.787799999785 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/03/05,13.828591666571672 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/05,7.940693185072502 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/05,7.940693185072502 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/30,7.054195450000009 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/21,7.790100004672501 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/29,5.625606445116663 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/30,7.054195450000009 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/21,7.790100004672501 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/04/29,5.625606445116663 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/23,6.948537499622498 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/31,4.530296616146665 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/24,12.416624999569985 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/23,6.948537499622498 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/31,4.530296616146665 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/05/24,12.416624999569985 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/03,3.9799591101449927 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/06/24,2.8713689492033323 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/11,5.288315912027497 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/06/25,3.775203530769224 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/03,3.9799591101449927 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/06/24,2.8713689492033323 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/11,5.288315912027497 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/06/25,3.775203530769224 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/11,14.074133354323337 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/03,12.411833333118318 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/27,4.392336364999992 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/11,14.074133354323337 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/03,12.411833333118318 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/07/27,4.392336364999992 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/05,4.424218299999988 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/27,4.172265804482612 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/04,5.265159090337496 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/28,5.095363461610949 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/05,4.424218299999988 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/27,4.172265804482612 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/04,5.265159090337496 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/08/28,5.095363461610949 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/10/07,3.595184848333327 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/28,8.483361360000002 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/21,4.170695698333326 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/10/06,2.340856700000001 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/29,2.906602275 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/10/07,3.595184848333327 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/28,8.483361360000002 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/21,4.170695698333326 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/10/06,2.340856700000001 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/09/29,2.906602275 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/11/08,9.702408337860822 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/11/07,2.3920361000000003 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/11/08,9.702408337860822 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/11/07,2.3920361000000003 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/12/10,9.923941666666686 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/12/10,9.923941666666686 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/12/25,21.88613333333335 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2016/12/25,21.88613333333335 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/03/08,6.307074643076913 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/02/27,10.628998333848356 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/02/20,14.687774999857508 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/03/08,6.307074643076913 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/02/27,10.628998333848356 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/02/20,14.687774999857508 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/03/23,22.348225000000006 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/03/23,22.348225000000006 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/04/24,12.372550029900012 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/05/11,3.5092022502649978 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/04/24,12.372550029900012 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/05/11,3.5092022502649978 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/06/11,4.413273223554046 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/06/11,4.413273223554046 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/05,3.239342299999997 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/06/28,4.145149999999993 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/05,3.239342299999997 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/06/28,4.145149999999993 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/29,14.629625006899998 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/30,2.996626387499999 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/29,14.629625006899998 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/07/30,2.996626387499999 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/08/30,3.8071500000724927 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/08/30,3.8071500000724927 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/10,9.090707922204158 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/01,5.307505952380953 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/09/24,8.95363446676167 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/02,3.4856843932692265 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/09/23,4.990775000697504 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/10,9.090707922204158 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/01,5.307505952380953 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/09/24,8.95363446676167 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/02,3.4856843932692265 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/09/23,4.990775000697504 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/11/10,2.873508735 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/25,6.101569114999994 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/11/10,2.873508735 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/10/25,6.101569114999994 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2017/12/04,4.156116666736678 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/01/29,11.270149999985 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/05/05,8.05377667131416 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/05/29,12.910925013442496 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/05/30,4.183603033478328 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/07/09,12.985258333618328 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/06/30,4.761045458760003 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/07/08,12.525433333380825 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/07/01,12.881883333405815 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/06/22,4.354400000000003 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/08/10,4.094113699999993 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/08/09,3.825252250000002 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/09/03,2.944025000000005 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/08/25,4.03949910999999 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/10/05,10.8529750003125 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/12/07,22.373925000000007 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2018/11/22,3.644000000000008 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/02/09,15.782599999999988 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/02/01,21.794191666666684 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/01/25,11.687449999984995 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/02/26,21.66638333333335 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/04/23,4.971870555552742 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/05/08,7.880575004672487 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/04/22,7.393813461538462 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/06/10,21.3452249983025 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/06/09,4.343511409999988 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/07/04,8.729450000262496 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/08/04,14.885950027887493 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/08/05,3.335829500000001 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/07/27,3.4757750000000005 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/09/05,3.040134089999995 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/09/06,3.953499999999994 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/09/21,7.516722737341666 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/10/08,3.2823658000000013 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/11/01,7.603125009520005 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/10/23,12.187190300771652 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/11/09,3.2237500000000083 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/12/11,4.215745316346153 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2019/11/25,2.7662272500000027 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/02/05,22.47810000000001 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/04/01,15.248708336930845 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/05/02,15.638533393133352 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/04/25,9.15176668281416 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/05/03,3.31216365 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/05/27,3.4943901586241632 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/05/26,8.08725000385498 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/07/06,4.074319706666662 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/06,3.778791683405828 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/07/30,2.372313646737501 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/07,2.602204750000002 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/31,3.6263468991025656 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/22,4.116175763333327 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/08/23,4.3476192307692205 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/10/09,3.155066688333331 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/09/23,17.901120833428326 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/10/10,12.72557917246417 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/11/10,8.887512133405814 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/10/25,9.536499995720014 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2020/12/29,21.75304166666668 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/01/30,21.981250000000014 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/03/02,22.47810000000001 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/04/03,13.85937500756249 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/05/06,3.888190919999997 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/04/27,4.625854168966669 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/06/06,19.21018333385581 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/06/07,5.526400005437507 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/05/29,6.10102010306083 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/06/23,3.119777250047502 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/08/02,11.377729167141686 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/08/10,11.19849999983248 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/09/10,8.792414585790832 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/08/25,4.334650000820001 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/09/11,3.307888424999994 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/08/26,3.4925794999999984 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/09/26,4.419674892453446 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/11/05,3.327817384615385 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/10/29,2.351557699999999 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/11/29,9.03371666735417 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/11/24,2.3483860999999986 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/12/24,11.37413333333334 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2021/12/23,10.634383333333352 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/02/26,13.16834999969 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/04/06,21.69311666662917 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/03/29,21.88613333333335 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/09,2.9230917999999986 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/08,10.528125017677494 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/01,3.782003033333331 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/04/30,3.791581829999996 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/31,18.15137500124999 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/25,3.494697749999996 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/05/24,5.3692500007475 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/07/04,3.460109090144994 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/06/29,20.75612499995248 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/07/04,4.1950545 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/07/03,4.680939414054165 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/06/26,9.865275000457496 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/06/25,13.165000005797504 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/08/07,4.204293190144989 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/08/05,5.363500000144994 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/07/28,3.551262794871789 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/09/10,6.890259090867504 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/08/24,11.990416737244168 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/08/28,2.470986225000002 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/09/22,14.567941669971669 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/09/30,2.158793074999997 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/11/09,2.7552322499999997 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/11/08,2.0465975500000004 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/10/24,4.263350000337493 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/10/23,12.64322500039999 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/12/10,2.3343363500000005 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/11/24,4.326195316346156 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2022/12/27,12.010024999937505 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/02/04,22.14189166666668 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/04/10,9.579783333238325 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/04/09,12.647849999904992 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/04/02,11.74481666657166 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/04/01,12.257081250355007 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/09,18.33450834253332 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/11,5.732100000000007 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/31,3.2419704504349967 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/26,2.774617421956667 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/06/05,8.983294231759226 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/06/04,5.2246107225132095 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/28,4.205475000144991 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/05/27,16.685000000072492 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/06/22,2.5289545421025004 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/07/06,4.707043185119993 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/06/21,5.313525000699994 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/08/10,7.943150004784999 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/08/05,3.1936884622634585 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/07/30,5.447250000144992 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/07/23,3.59762803468583 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/06,4.543939285786778 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/01,2.053250606116668 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/09,4.347435607414165 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/01,7.140725000407505 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/08/31,3.802636339999995 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/08/23,3.845387530769224 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/28,17.32051921308417 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/10/03,5.430375000362497 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/10/02,3.479574109999993 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/09/25,5.482975000552507 -Lake Ozonia,15454626,-74.60857600091316,44.595267434136005,2023/11/28,4.176579184230763 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/07,10.452775000000017 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/01/29,22.407050000000005 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/01/22,10.460433333333356 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/07,10.452775000000017 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/01/29,22.407050000000005 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/01/22,10.460433333333356 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/23,22.348225000000006 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/03/10,21.78088333333335 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/22,9.153074999212512 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/23,22.348225000000006 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/03/10,21.78088333333335 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/02/22,9.153074999212512 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/04/03,9.39795833316585 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/04/03,9.39795833316585 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/06,10.549666671339155 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/06,10.549666671339155 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/06/06,15.324991680466669 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/30,2.5619818224799986 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/29,3.5345295499999945 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/22,5.04060153666666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/06/06,15.324991680466669 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/30,2.5619818224799986 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/29,3.5345295499999945 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/05/22,5.04060153666666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/07/08,13.147799997092497 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/07/08,13.147799997092497 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/09,3.551648199999994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/10,12.256783333533322 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/01,4.313325230769224 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/09,3.551648199999994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/10,12.256783333533322 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/01,4.313325230769224 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/25,4.53969395379083 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/11,3.678210695769223 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/08/25,4.53969395379083 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/11,3.678210695769223 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/10/05,5.786200003042502 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/26,3.62813787666666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/10/04,5.875725000072512 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/27,3.11039861826923 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/10/05,5.786200003042502 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/26,3.62813787666666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/10/04,5.875725000072512 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/09/27,3.11039861826923 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/11/05,5.473031909999996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/11/05,5.473031909999996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/11/21,16.85803750016999 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2015/11/21,16.85803750016999 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/01/24,21.675758333333352 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/01/24,21.675758333333352 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/02/26,21.69402500000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/03/05,12.504583333118328 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/02/26,21.69402500000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/03/05,12.504583333118328 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/05,10.37794166666666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/05,10.37794166666666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/07,8.163758333768339 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/30,3.92646970666666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/21,7.317578796666668 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/29,22.149775000984988 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/07,8.163758333768339 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/30,3.92646970666666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/21,7.317578796666668 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/04/29,22.149775000984988 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/23,4.488554163041671 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/31,11.355883348330831 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/24,4.138599999999991 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/23,4.488554163041671 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/31,11.355883348330831 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/05/24,4.138599999999991 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/06/24,4.371758447594047 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/07/11,11.30769166690416 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/06/25,4.994136359999996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/06/24,4.371758447594047 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/07/11,11.30769166690416 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/06/25,4.994136359999996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/11,3.008847735772498 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/04,3.452603796811661 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/03,20.451283333333315 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/07/27,3.1809003107692284 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/11,3.008847735772498 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/04,3.452603796811661 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/03,20.451283333333315 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/07/27,3.1809003107692284 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/05,3.511809100072493 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/04,7.66945 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/28,3.9443068203124936 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/05,3.511809100072493 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/04,7.66945 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/08/28,3.9443068203124936 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/07,8.915813630145003 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/28,2.8750113606524987 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/21,3.3186424318116616 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/06,2.215236200000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/29,3.876077284999994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/07,8.915813630145003 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/28,2.8750113606524987 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/21,3.3186424318116616 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/06,2.215236200000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/09/29,3.876077284999994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/11/08,16.436850027600016 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/23,14.043692932791664 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/11/07,8.692497699999997 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/11/08,16.436850027600016 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/10/23,14.043692932791664 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/11/07,8.692497699999997 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/12/25,21.75304166666668 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2016/12/25,21.75304166666668 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/03/08,14.41704583323834 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/03/08,14.41704583323834 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/03/23,22.348225000000006 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/03/23,22.348225000000006 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/04/24,13.564652273405844 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/05/11,3.152224374999999 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/04/24,13.564652273405844 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/05/11,3.152224374999999 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/06/11,4.650325764306666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/06/11,4.650325764306666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/07/05,2.704938550000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/07/05,2.704938550000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/07/30,2.638604450000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/07/30,2.638604450000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/08/30,11.206090910047507 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/08/23,4.377950650859278 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/08/30,11.206090910047507 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/08/23,4.377950650859278 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/10,6.038725000675002 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/01,4.0242136249999945 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/09/24,8.50397878681167 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/02,3.2289203625 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/09/23,6.091775000215007 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/10,6.038725000675002 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/01,4.0242136249999945 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/09/24,8.50397878681167 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/02,3.2289203625 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/09/23,6.091775000215007 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/11,3.2496477302625038 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/10,8.604650001095003 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/25,5.166890999999993 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/11,3.2496477302625038 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/10,8.604650001095003 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/10/25,5.166890999999993 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/12/04,12.101387504085023 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2017/11/26,2.935925 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/01/29,12.175910417414164 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/05/05,5.745193219999989 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/05/29,3.935251531811663 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/05/30,3.346977749999993 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/07/09,4.573293199999986 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/07/08,14.160333333405818 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/07/01,10.01823333733332 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/06/22,2.740395325000002 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/08/10,3.977297800072492 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/08/09,3.3415500000000007 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/08/25,3.970847354999994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2018/10/05,5.175274271666657 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/02/26,21.909850000000016 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/04/23,6.836634853333331 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/05/08,5.157684102299999 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/04/22,2.5167829900000003 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/06/09,2.81712955 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/06/26,10.206749999524993 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/07/04,13.322525000309994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/08/04,8.492150000892503 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/08/05,2.513248325000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/09/05,4.126285089999988 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/08/29,4.977131719120112 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/09/06,4.137024999999994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/09/21,7.78998787666667 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/10/08,6.148968199999993 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/10/23,3.3289191448717954 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2019/11/25,13.322666666981675 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/02/29,14.41943333331833 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/02/20,9.998699999427512 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/05/02,7.524125778405828 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/04/25,7.407375000072503 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/05/03,5.632077299999992 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/06/04,13.737212500309996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/05/26,3.3422659100000014 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/07/05,6.806959094737505 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/06/28,7.239074998405009 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/07/06,2.691607675000003 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/06,12.373799998197502 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/07/30,3.4858500038625 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/07,14.56060833333331 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/31,22.442429167331703 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/22,7.512179168966681 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/09/08,7.295191667166672 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/08/23,4.269522734999994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/10/09,3.777312886739159 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/10/10,16.166768340518338 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/09/24,13.768075000404998 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/11/10,8.990541559047621 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/10/25,12.485793753382486 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2020/12/29,21.848400000000016 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/02/06,13.088791666404166 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/04/03,11.421725009635 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/04/04,15.994783346030836 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/03/26,9.7307250002375 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/05/06,5.46502725 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/06/06,10.174275005179991 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/06/07,4.089732985769222 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/05/29,21.12945833321334 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/08/10,8.018259090239999 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/07/25,19.105974999922516 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/08/25,5.269458335383333 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/09/11,7.682554168246661 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/08/26,3.6474090901199943 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/06,12.309283348883328 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/10/28,4.39030983333333 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/09,5.06844607966666 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/05,2.371837690000002 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/10/29,2.4992710249999983 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/12/07,21.68654166572917 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/24,2.577922449999999 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/11/21,3.347579589999998 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/12/24,22.964575 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2021/12/23,21.75304166666668 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/04/06,9.644233333743347 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/03/29,21.867666666666683 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/09,4.022660606666661 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/09,4.547522060769224 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/08,4.4691750022999965 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/01,5.314410467999993 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/04/30,8.022908340305827 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/04/23,21.69755000033752 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/04/22,5.150050000507494 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/31,17.243899999417504 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/05/25,3.8346727301200008 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/07/04,3.1705734836233286 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/06/29,6.304175002802505 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/06/26,3.2734002857692253 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/08/24,2.784336200228939 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/08/29,9.643391667096644 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/08/28,3.230458199999997 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/09/30,12.6840625000725 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/09/22,2.877781225000001 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/09/21,12.973550000357491 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/10/31,8.932999996359994 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/10/26,4.666255332174156 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/11/09,3.481234729999996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/11/08,2.14569535 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/12/10,2.6262922500000023 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/12/02,20.844199999990018 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2022/11/24,3.18384975 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/04/01,10.895900002442495 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/09,12.542379165901655 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/11,5.17163485333333 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/04/26,3.3895750000000064 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/04/25,5.177225000507495 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/31,7.1485113601925 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/26,3.26345303333333 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/06/05,21.44294167586668 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/28,13.914166671601672 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/05/27,20.68018977461752 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/06/22,3.5462454502174925 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/07/06,3.753954549999996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/08/05,18.741899998924985 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/07/30,3.5084568200724933 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/07/22,3.63215682 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/06,3.374165143985828 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/01,2.8732977310875 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/09,13.28228333373332 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/01,4.422694701881662 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/08/31,3.205427339999996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/08/24,4.8964856076566585 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/08/23,3.259572749999996 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/28,14.478625017752476 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/23,17.90849166770917 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/10/03,5.833200000047507 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/10/02,2.5215149150000027 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/09/25,20.81619166655914 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/11/03,5.459275029999991 -Stony Creek Ponds,15465983,-74.30839822569781,44.21800683054053,2023/11/28,13.575949999474998 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/01/29,22.27547500000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/01/22,23.54250833333332 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/06,22.689058333333342 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/01/29,22.27547500000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/01/22,23.54250833333332 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/06,22.689058333333342 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/23,22.674233333333337 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/22,21.18509166666669 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/23,22.674233333333337 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/02/22,21.18509166666669 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/05,21.76082916742668 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/06,4.5494750003125 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/05,21.76082916742668 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/06,4.5494750003125 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/06,5.012223744657731 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/30,21.15266500123252 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/07,13.450408333333316 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/29,15.020241666666662 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/22,3.4322098533333367 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/06,5.012223744657731 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/30,21.15266500123252 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/07,13.450408333333316 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/29,15.020241666666662 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/05/22,3.4322098533333367 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/07/08,7.176541680349168 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/22,22.490312500855037 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/07/08,7.176541680349168 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/06/22,22.490312500855037 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/09,3.642283346666661 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/02,15.491408333333318 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/01,2.578467125000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/07/25,15.368199999769995 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/09,3.642283346666661 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/02,15.491408333333318 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/01,2.578467125000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/07/25,15.368199999769995 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/03,6.456631240952512 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/25,3.679279554999992 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/11,2.444875000000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/02,11.295383333405834 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/03,6.456631240952512 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/08/25,3.679279554999992 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/11,2.444875000000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/02,11.295383333405834 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/10/05,21.44442499928 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/26,4.799698476355306 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/10/04,12.89615833353332 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/27,2.8576225059981675 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/10/05,21.44442499928 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/26,4.799698476355306 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/10/04,12.89615833353332 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/09/27,2.8576225059981675 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/05,3.093246383974355 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/05,3.093246383974355 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/12/08,6.63754999647001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/29,11.5360461138436 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/22,6.781881241205007 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/30,2.9641272500000064 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/12/08,6.63754999647001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/29,11.5360461138436 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/22,6.781881241205007 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2015/11/30,2.9641272500000064 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/01/24,21.75304166666668 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/01/24,21.75304166666668 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/02/26,22.351800000000008 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/03/05,22.097808333285847 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/02/26,22.351800000000008 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/03/05,22.097808333285847 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/05,7.478638649999991 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/03/29,6.1394499956100095 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/05,7.478638649999991 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/03/29,6.1394499956100095 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/07,5.573519164951669 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/30,3.748906091739162 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/21,5.697821867999992 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/29,3.704029172371664 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/07,5.573519164951669 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/30,3.748906091739162 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/21,5.697821867999992 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/04/29,3.704029172371664 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/23,5.571207623405238 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/31,6.00591667204666 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/24,8.342925000529993 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/23,5.571207623405238 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/31,6.00591667204666 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/05/24,8.342925000529993 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/03,3.306128533205126 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/06/24,3.4702666683333274 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/11,9.191284098856652 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/06/25,3.99083487884615 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/03,3.306128533205126 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/06/24,3.4702666683333274 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/11,9.191284098856652 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/06/25,3.99083487884615 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/11,2.4644704510875006 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/04,3.9226733346666576 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/26,21.97015250031252 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/03,7.270083339083329 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/27,3.20762750576923 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/11,2.4644704510875006 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/04,3.9226733346666576 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/26,21.97015250031252 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/03,7.270083339083329 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/07/27,3.20762750576923 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/05,3.285727749999994 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/27,2.9555604733624974 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/04,3.657643189999997 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/28,5.065250000072493 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/05,3.285727749999994 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/27,2.9555604733624974 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/04,3.657643189999997 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/08/28,5.065250000072493 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/07,2.7429022800725 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/28,5.838160608405834 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/21,2.968589274666666 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/06,2.3523916673076903 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/29,3.6188161857692247 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/07,2.7429022800725 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/28,5.838160608405834 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/21,2.968589274666666 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/06,2.3523916673076903 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/09/29,3.6188161857692247 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/11/08,4.094641822289998 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/23,6.612050645714278 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/11/07,2.812398418269229 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/11/08,4.094641822289998 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/10/23,6.612050645714278 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/11/07,2.812398418269229 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/10,3.710954433478329 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/09,3.5674295000475045 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/10,3.710954433478329 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/09,3.5674295000475045 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/01/02,22.177183333333343 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/25,22.22658333333335 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/01/02,22.177183333333343 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2016/12/25,22.22658333333335 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/02/04,22.476633333333343 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/02/04,22.476633333333343 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/03/08,11.968075000427502 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/02/27,13.003675000705018 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/03/08,11.968075000427502 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/02/27,13.003675000705018 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/03/23,22.30574166666668 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/03/23,22.30574166666668 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/04/24,12.53138333333333 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/05/11,2.121101725 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/04/24,12.53138333333333 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/05/11,2.121101725 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/06/11,5.46110363262 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/06/11,5.46110363262 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/05,2.9069977250000005 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/05,2.9069977250000005 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/29,3.524141673405826 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/06,2.9971567500000016 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/30,2.7647117793956038 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/29,3.524141673405826 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/06,2.9971567500000016 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/07/30,2.7647117793956038 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/30,3.338684095072497 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/23,5.815443952801664 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/30,3.338684095072497 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/08/23,5.815443952801664 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/10,5.799906839999999 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/01,3.812401566666659 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/09/24,7.688427270217504 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/02,2.9599812502289367 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/09/23,3.632672729999998 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/10,5.799906839999999 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/01,3.812401566666659 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/09/24,7.688427270217504 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/02,2.9599812502289367 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/09/23,3.632672729999998 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/11/11,9.769944258553595 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/11/10,2.8992750000000056 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/25,6.046230569999995 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/11/11,9.769944258553595 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/11/10,2.8992750000000056 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/10/25,6.046230569999995 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2017/12/04,13.750629586728351 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/05/05,5.1868500023724975 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/06/07,3.235874998192503 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/05/29,13.605541673566664 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/05/30,3.105804600000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/07/09,4.249744599999989 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/07/08,17.000175001214988 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/06/22,2.6144702182692305 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/08/10,4.127955999999994 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/08/09,4.573638624999993 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/09/03,4.324064534102562 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/08/25,5.163129999999993 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/09/27,4.6592746269616665 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/10/05,2.5777781700000006 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/12/07,22.67296666666667 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2018/11/22,21.82000000033752 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/02/09,11.214224999125006 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/02/26,21.77565833333335 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/04/23,14.104587502470013 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/05/08,3.630678008333328 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/04/22,2.6492827875 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/06/01,10.132824999572524 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/06/09,3.347273214999995 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/07/03,7.826389582740828 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/06/26,18.104033333118323 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/08/04,6.755022727556668 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/07/28,10.59996249657251 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/08/05,2.973140500000003 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/07/27,3.270750000000005 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/09/05,3.1773609179999944 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/09/06,2.82795501153846 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/09/30,7.752124998635012 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/09/21,7.7240863599999985 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/10/08,3.496184561538457 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/11/08,6.482749996625013 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/10/23,7.669126500822747 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/11/09,3.297425000000008 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2019/11/25,3.2787847548076936 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/02/21,9.869816666666685 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/02/29,21.919450000000012 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/02/20,22.21583333333335 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/04/01,18.103709090000013 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/02,9.117961226333328 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/04/25,7.618266673661676 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/10,4.255875000144994 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/03,5.279715914999997 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/27,3.991699238478327 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/06/04,11.603820090567492 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/05/26,2.9726032199999985 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/07/05,7.968791672296662 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/06/28,11.45762499871752 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/07/06,2.9040856490384623 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/06,3.913192446739164 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/07/30,3.641786365217491 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/07,3.1893750000000045 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/22,7.304814589308325 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/30,2.774856645000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/08/23,4.755514393333328 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/10/09,5.152772781047612 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/10/10,3.675350000000003 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/09/24,12.713975002537492 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/11/10,10.39517186238094 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2020/10/25,11.549022911474164 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/01/29,22.76205 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/01/30,21.66638333333335 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/03/02,22.539900000000006 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/04/03,11.334616727911676 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/04/04,3.6706000000000047 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/05/06,2.428424950000002 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/06/07,10.8847000014625 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/05/29,4.748329169141662 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/07/09,17.69817500040001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/06/23,5.026390226923069 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/07/24,10.187208336258312 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/08/10,5.103250000072493 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/07/25,6.471892284871786 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/08/25,10.239783333958338 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/09/11,3.540954499999998 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/08/26,3.8202795000725 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/09/26,7.10641667826168 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/11/06,5.5390934522859565 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/10/28,7.652824999925014 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/11/05,3.0292192307692307 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/10/29,2.529708198626372 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/12/07,4.201025000144994 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/11/24,2.335375767307689 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/11/21,2.4583429249999997 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2021/12/24,23.10110833333333 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/04/06,7.745041666106683 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/04/06,10.789359582758332 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/03/22,12.978691666476667 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/09,3.889752210769228 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/08,3.9408022799999993 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/01,3.024837075000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/04/30,3.665004544999997 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/04/22,3.017561686538457 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/31,15.073671249525011 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/26,7.661225004592499 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/06/10,7.316800000457497 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/25,5.971675003095 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/05/24,6.48748333345334 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/07/04,8.480493179999998 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/06/29,4.606514600072489 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/07/11,14.600558333318313 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/07/03,6.688485613288327 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/06/25,5.408250000797495 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/08/05,4.5582840999999945 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/07/28,4.44027316410256 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/10,7.165597347076671 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/08/24,5.30907500081 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/08/29,6.503025759195827 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/08/28,3.506147729999995 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/22,5.866533535565002 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/30,3.6383041711566633 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/29,2.9287750000000035 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/22,2.778577250000005 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/09/21,3.972119099999993 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/10/31,9.46854583348334 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/10/26,7.59314999432001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/11/09,2.849154879807691 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/11/08,2.269662142307689 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/12/10,3.596005799999995 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2022/11/24,2.980050000000002 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/02/04,22.23312500000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/09,11.995213657182491 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/31,8.177393180217502 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/26,3.190875605029165 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/06/05,6.605175000507498 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/28,14.100175002587507 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/05/27,19.04885000227749 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/06/22,3.1766718183625 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/07/06,3.665774824999994 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/06/21,4.779492082692306 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/08/10,17.121891666451646 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/08/05,14.92000000016749 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/07/22,2.964679500000001 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/06,3.946123488333327 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/01,6.743690147511667 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/01,3.076277300072495 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/08/31,3.7465219149999927 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/08/23,2.8249084807692286 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/10/03,16.504385606666688 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/28,13.879827194580832 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/23,8.168550003522494 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/10/03,4.013240909999992 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/10/02,2.7721309300000003 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/09/25,6.79968333405584 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/11/03,2.3941246750000027 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/10/27,2.8767022500000063 -Gull Pond,15466007,-74.5275672822082,44.21021284642578,2023/11/28,2.9143750000000037 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/07,22.76205 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/01/22,23.64002499999999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/07,22.76205 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/01/22,23.64002499999999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/23,22.404625000000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/23,22.404625000000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/03/10,21.88613333333335 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/23,22.404625000000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/02/23,22.404625000000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/03/10,21.88613333333335 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/03,8.148066666499181 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/03,8.148066666499181 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/28,8.630945847578328 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/28,3.5034363652675014 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/06,4.907038625192496 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/06,5.924500000167493 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/28,8.630945847578328 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/04/28,3.5034363652675014 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/06,4.907038625192496 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/06,5.924500000167493 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/06,5.835202086513337 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/30,14.151950001564996 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/30,16.485300000804997 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/07,12.50030833333332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/07,12.316624999999982 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/29,2.935754999999997 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/22,5.284125000000004 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/22,4.249750000000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/06,5.835202086513337 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/30,14.151950001564996 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/30,16.485300000804997 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/07,12.50030833333332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/06/07,12.316624999999982 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/29,2.935754999999997 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/22,5.284125000000004 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/05/22,4.249750000000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/07/08,10.676387500887497 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/07/08,10.676387500887497 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/09,3.572361399999993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/07/24,10.33122500124751 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/10,3.382102250000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/10,2.6310750000000014 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/01,10.080300000552493 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/09,3.572361399999993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/07/24,10.33122500124751 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/10,3.382102250000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/10,2.6310750000000014 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/08/01,10.080300000552493 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/11,2.7860522500000013 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/11,2.647102250000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/02,2.898375000047501 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/11,2.7860522500000013 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/11,2.647102250000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/02,2.898375000047501 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/05,16.674266666851647 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/05,16.691266666851647 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/26,3.178470479999995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/04,3.98210833813833 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/27,2.7699099182692293 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/27,3.1602940432692304 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/05,16.674266666851647 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/05,16.691266666851647 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/26,3.178470479999995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/10/04,3.98210833813833 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/27,2.7699099182692293 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/09/27,3.1602940432692304 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/05,2.0390566999999966 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/05,2.0390566999999966 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/12/08,6.415449996270008 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/12/08,6.840399998635012 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/29,9.170416980380828 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/30,2.6165535668956057 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/30,3.994426903846148 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/12/08,6.415449996270008 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/12/08,6.840399998635012 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/29,9.170416980380828 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/30,2.6165535668956057 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2015/11/30,3.994426903846148 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/02/26,22.373925000000007 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/02/26,22.351800000000008 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/05,12.284041667051666 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/05,10.927933333518338 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/02/26,22.373925000000007 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/02/26,22.351800000000008 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/05,12.284041667051666 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/05,10.927933333518338 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/05,20.486033354128363 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/29,5.292692235564167 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/29,5.5337931793825 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/05,20.486033354128363 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/29,5.292692235564167 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/03/29,5.5337931793825 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/30,3.626865166666665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/30,3.170384253666665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/21,7.152015927372498 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/29,17.24382500018999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/22,17.896783333718332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/22,12.643975000072478 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/30,3.626865166666665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/30,3.170384253666665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/21,7.152015927372498 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/29,17.24382500018999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/22,17.896783333718332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/04/22,12.643975000072478 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/23,15.28065002769501 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/31,8.13001894179917 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/24,3.071041 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/24,4.50021971166666 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/23,15.28065002769501 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/31,8.13001894179917 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/24,3.071041 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/05/24,4.50021971166666 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/03,10.649133347373327 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/03,9.170925011739987 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/24,8.991233334685836 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/11,13.595683333333318 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/11,12.797483333333323 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/25,2.3605550000000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/25,2.7043511298076925 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/03,10.649133347373327 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/03,9.170925011739987 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/24,8.991233334685836 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/11,13.595683333333318 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/11,12.797483333333323 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/25,2.3605550000000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/06/25,2.7043511298076925 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/11,14.969108423480822 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/04,3.0134196999999987 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/04,2.922335599999999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/26,4.676170836658333 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/03,3.371552250000005 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/27,3.3654839999999995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/27,3.447799999999998 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/11,14.969108423480822 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/04,3.0134196999999987 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/04,2.922335599999999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/26,4.676170836658333 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/03,3.371552250000005 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/27,3.3654839999999995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/07/27,3.447799999999998 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/05,3.6316095499999927 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/05,3.811927749999993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/27,3.099598486666663 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/04,2.493888600000002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/28,9.823241667046652 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/28,10.953383333713315 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/05,3.6316095499999927 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/05,3.811927749999993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/27,3.099598486666663 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/04,2.493888600000002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/28,9.823241667046652 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/08/28,10.953383333713315 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/07,4.912668231047611 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/07,4.355784146047612 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/28,2.680029406333333 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/21,3.3451324246666605 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/21,3.1235856066666634 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/06,2.443196430769228 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/29,2.4710156000000016 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/29,2.5430560000000013 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/07,4.912668231047611 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/07,4.355784146047612 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/28,2.680029406333333 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/21,3.3451324246666605 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/21,3.1235856066666634 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/06,2.443196430769228 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/29,2.4710156000000016 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/09/29,2.5430560000000013 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/08,5.182532634380944 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/08,5.109550814380946 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/23,8.273285601666656 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/23,6.532731066714165 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/07,3.421539774038462 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/08,5.182532634380944 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/08,5.109550814380946 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/23,8.273285601666656 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/10/23,6.532731066714165 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/11/07,3.421539774038462 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/10,9.35759166666668 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/10,9.217266666666678 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/10,9.35759166666668 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/10,9.217266666666678 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/01/02,22.34590833333334 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/26,23.54250833333332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/01/02,22.34590833333334 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2016/12/26,23.54250833333332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/28,13.96546666891916 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/08,18.45479168108419 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/08,16.883116676341665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/27,9.797841666666676 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/20,14.854908337885826 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/20,14.854908337885826 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/28,13.96546666891916 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/08,18.45479168108419 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/08,16.883116676341665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/27,9.797841666666676 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/20,14.854908337885826 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/02/20,14.854908337885826 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/23,22.34590833333334 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/04/09,13.40400833323834 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/03/23,22.34590833333334 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/04/09,13.40400833323834 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/04/24,7.927183336666664 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/05/11,3.0970932250000005 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/05/11,2.486720750000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/04/24,7.927183336666664 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/05/11,3.0970932250000005 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/05/11,2.486720750000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/06/11,8.216541661126662 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/06/11,8.216541661126662 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/05,2.484844042307691 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/05,2.484844042307691 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/07,3.80295063485916 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/07,3.6463189815258272 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/29,10.857050000249997 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/06,4.720725758523331 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/30,2.800615274038462 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/30,3.398083543269231 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/07,3.80295063485916 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/07,3.6463189815258272 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/29,10.857050000249997 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/06,4.720725758523331 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/30,2.800615274038462 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/07/30,3.398083543269231 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/30,18.18251083352333 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/23,15.733631251267497 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/23,15.641264583935827 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/30,18.18251083352333 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/23,15.733631251267497 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/08/23,15.641264583935827 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/01,3.492861479999993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/24,3.520709094999995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/24,3.537616668333329 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/02,2.620641218269232 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/02,3.148428004807692 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/23,3.1413302499999984 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/01,3.492861479999993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/24,3.520709094999995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/24,3.537616668333329 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/02,2.620641218269232 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/02,3.148428004807692 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/09/23,3.1413302499999984 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/11,9.939239282380946 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/11,9.36112110571428 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/10,2.6197863500000005 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/25,5.334210210769227 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/11,9.939239282380946 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/11,9.36112110571428 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/11/10,2.6197863500000005 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/10/25,5.334210210769227 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2017/12/04,11.723266721359169 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/05/05,7.821558339083326 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/05/29,5.547989587210835 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/05/30,2.675895350000004 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/05/30,3.8886216857692246 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/09,4.789439599999984 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/09,4.833455499999984 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/08,12.234883333380822 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/01,5.020925000724992 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/07/01,5.967850000507496 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/06/22,3.233956879807692 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/08/10,4.284173777435891 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/08/10,3.3158274524358946 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/08/09,5.979375000000004 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/09/03,3.0851045 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/09/03,2.498811250000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/08/25,18.12485000020001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/10/05,2.586811250000002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/10/05,2.467704350000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/12/07,10.632091666451675 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/12/08,21.866400000000016 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/11/22,8.636345038548328 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2018/11/22,2.4686250000000007 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/02/09,11.070249998925007 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/02/02,23.424491666666658 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/02/26,21.75304166666668 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/02/26,21.75304166666668 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/04/30,3.60045625013001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/04/23,6.977777077810839 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/04/23,8.054179166244175 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/05/08,11.19843335410583 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/04/22,2.37028929230769 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/06/10,7.348425008227492 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/06/10,4.386784094974997 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/06/01,10.737233337458354 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/06/09,5.87087500103249 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/07/03,9.844193759984996 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/04,16.532458354105835 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/05,12.72083333373332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/05,3.243952250000007 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/07/27,4.579081749999999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/05,3.707510606666657 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/29,4.771454886662504 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/08/29,8.928149171869155 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/06,2.3847408499999987 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/06,2.565169804807692 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/30,8.024949992800005 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/30,8.93904999774751 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/21,7.673182573333331 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/10/08,3.619190300641019 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/10/08,3.0374231284340647 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/09/29,13.646033333333328 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/08,5.816274996730008 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/10/23,3.5572232983333287 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/09,2.374975 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/09,4.066424999999999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/12/11,17.15460000004749 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/12/11,3.895295504807693 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/25,14.274249999762514 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2019/11/25,14.218324999905011 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/02/05,10.000733333118344 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/02/05,9.916316666451676 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/02/21,22.137733333333344 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/04/01,11.9108250003325 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/04/01,12.0115500003325 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/02,7.106925000072499 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/04/25,4.2854147787525 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/04/25,4.2838272777925 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/10,13.60045833333332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/03,2.446677250000003 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/03,2.4955545 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/27,3.8708984883333257 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/27,3.833348488333325 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/05/26,2.9815818000000025 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/05,12.97352958257334 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/06,2.8120618432692317 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/06,3.182487629807692 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/06,17.78505000018499 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/30,3.464838205769228 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/07/30,3.464838205769228 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/07,3.907849999999994 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/07,4.068301517391663 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/31,2.1306447000000004 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/31,2.732710599999998 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/23,5.337167431666661 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/08/23,2.9836842857692267 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/09,5.089934159999987 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/09/23,12.3799999989725 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/10,5.624208333670833 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/10,6.3009283308417245 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/01,12.703308333318326 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/09/24,6.829359092991665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/09/24,7.626067427782492 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/11/10,4.049364556999995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2020/10/25,11.61031250692249 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/01/29,24.02516666666665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/01/30,21.791766666666685 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/01/30,21.791766666666685 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/03/02,22.447608333333346 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/05/06,2.5822694999999998 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/05/06,2.533633125 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/04/27,2.966900000000007 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/06/07,3.530004500000002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/06/07,4.7335545 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/05/29,5.914973874863327 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/06/23,3.038450000000002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/06/23,2.597583999999999 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/10,2.6251295000000034 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/10,2.5676067500000004 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/07/25,4.457894225769223 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/07/25,4.999932703974349 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/09/10,4.532865913333329 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/25,18.069074999999987 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/09/11,4.0971500000000045 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/09/11,3.5783500000000066 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/26,3.728149285769225 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/08/26,4.280421849615382 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/09/26,13.416524999559996 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/06,6.3997958334708365 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/06,10.362022077713323 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/10/28,8.665800026739163 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/05,2.877938461538464 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/10/29,2.52774516826923 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/10/29,2.816619793269231 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/12/07,12.499874999722495 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/24,2.2545930749999967 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/11/21,2.3055362499999976 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/12/24,24.44116666666665 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/01/08,21.856800000000018 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2021/12/23,12.963775000144995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/01,22.348225000000006 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/01/25,21.961558333333347 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/01/25,21.961558333333347 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/26,22.417966666666675 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/26,22.305908333333345 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/26,22.438508333333345 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/02/26,22.438508333333345 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/04/06,9.285933333743351 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/04/06,14.57986875826001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/03/29,21.88613333333335 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/03/22,14.811500000210016 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/09,2.430626750000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/09,2.7620792500000007 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/08,3.313885395 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/01,4.075112163333326 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/01,2.692377650000002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/04/30,10.7913250023 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/31,12.968358749667509 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/26,17.057916668966673 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/26,18.793991666666667 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/25,2.573847625000002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/05/25,4.595922730144993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/04,4.472758351739164 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/11,17.13809999971498 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/03,5.41195986182916 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/06/26,3.943757578645836 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/06/26,6.487550002612497 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/06/25,4.783909783333332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/07,3.7790219771016633 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/05,8.629950000507492 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/05,7.6990106069791615 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/28,3.338050118076921 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/07/28,3.670985031923073 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/10,7.128913259591669 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/24,4.191573107543332 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/29,6.550654166154152 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/29,4.842725000454994 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/08/28,2.3743475000000016 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/09,9.686574997075002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/09,10.123949997580004 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/22,3.2418627699999973 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/22,2.4176635500000008 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/30,17.428849999969994 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/22,2.9744628730769223 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/22,3.4330623499999984 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/09/21,8.717166668751652 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/26,15.826616666666668 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/11/09,2.661620955769229 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/11/09,2.7934523990384603 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/11/08,2.389928042307691 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/24,15.749716668266656 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/10/24,13.40399166826666 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/12/10,2.39093175 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/12/02,12.575675000862496 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2022/11/24,5.098475000192495 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/02/04,22.22352500000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/01/28,12.987441666356666 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/02/21,10.612133333023348 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/02/21,10.612133333023348 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/04/09,14.317108333285828 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/04/02,11.824274999857504 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/09,9.696379171099176 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/04/26,8.415350000192493 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/04/26,7.916173730914218 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/31,7.358603786739164 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/26,2.4344256196666656 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/26,4.158108217999993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/06/05,13.898158333595829 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/06/05,13.941475000262496 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/28,4.044450000529993 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/28,14.895600002540014 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/05/27,24.56179166666667 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/06/22,3.494252269999994 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/06,2.496545200000002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/10,12.303683333238329 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/05,10.652262506202494 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/05,8.72088899452524 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/30,3.765475000047501 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/23,4.413684853333328 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/23,3.273561073076924 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/07/22,2.856627250000005 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/06,8.540220450072496 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/01,3.4447886400724945 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/01,8.696709090120002 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/01,3.474955366666661 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/31,3.0129013399999987 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/08/23,2.390784942307693 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/10/03,16.75171060666669 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/28,14.936600030074992 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/23,4.8804203750724975 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/23,4.631727250072499 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/10/03,2.957033100000001 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/10/03,4.319012916666664 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/10/02,4.616602244999995 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/25,7.284400000192511 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/09/25,3.212809090337496 -Little Tupper Lake,15466283,-74.60636692090576,44.04201133609539,2023/11/03,5.045206749999995 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/01/22,23.94899999999999 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/02/23,22.674233333333337 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/03/10,21.67155833333335 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/04/03,9.26932499914001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/05,10.280050000277502 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/04/28,8.712483328385835 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/04/28,9.547287503372496 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/06,7.076825002372487 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/06,4.675875000287496 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/06/06,7.122199996442503 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/06/07,13.198499999999983 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/06/07,13.95592499999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/29,8.772325005104983 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/22,3.3008757583333312 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/05/22,3.084200000047501 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/07/08,3.94718063771488 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/06/22,4.183558333223337 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/08/09,3.529292744102562 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/08/01,2.8870545000000005 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/11,4.2654379471153865 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/11,2.3736021875 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/02,3.714275000000001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/08/26,14.130225000287483 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/08/26,12.239950000357489 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/05,7.934397919329172 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/05,6.711163994312743 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/26,9.239625012052487 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/04,3.051644999999997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/27,2.9955970432692305 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/09/27,3.382207793269231 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/05,2.302128017307689 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/29,13.940916666619168 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/10/29,13.940916666619168 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/22,7.975724988780005 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/22,7.696349988072504 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/30,3.099416076923077 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/30,4.372838678846145 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2015/11/21,4.002789780422498 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/02/02,3.1530750000725014 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/02/02,7.773217714150051 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/02/26,12.02168333311833 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/02/26,21.804150000000007 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/05,8.067145831215832 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/07,4.296537468555001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/30,4.57947970866666 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/30,4.827478181999992 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/21,6.837006834999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/04/29,6.489062884130832 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/23,5.154769443847738 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/31,4.974411005534167 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/24,3.635999999999996 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/05/24,10.716950006972494 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/03,3.9154796099999967 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/03,3.557875104999996 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/06/24,16.270775000072504 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/11,10.766308333570816 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/11,11.033250002537486 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/06/25,2.5180211303571443 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/06/25,3.576594909203294 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/11,5.433547161367502 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/04,3.878458941333323 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/04,3.810333941333324 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/26,11.228800012682491 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/03,2.5955823000000016 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/27,2.7387522500000063 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/07/27,4.256052249999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/05,2.750424999999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/05,2.799099999999997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/27,3.663809858405824 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/04,5.792174271666664 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/28,4.054848299999993 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/08/28,3.520229499999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/07,5.285307624380945 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/07,2.8184644133333325 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/28,5.4156606083808345 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/21,2.7201856066666674 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/21,2.4425840900000013 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/06,2.5516038307692286 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/29,5.280435714933208 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/09/29,4.785735715245712 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/11/08,3.6704809799999953 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/11/08,3.824406014999997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/23,3.318380437072499 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/10/23,3.799334971999997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/11/07,3.1684022548076927 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/12/10,4.417412500032504 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/12/10,9.24592708244585 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/01/02,22.47810000000001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2016/12/26,24.44116666666665 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/03/08,16.304052088185834 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/03/08,12.50365833431834 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/02/27,13.393508333238334 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/02/20,15.005562499905002 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/02/20,14.997674999905009 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/03/23,22.447608333333346 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/04/24,6.690245454999999 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/05/11,2.594259425000003 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/05/11,2.820443675000001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/06/11,7.423566132157493 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/07/05,5.191677199999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/06/28,2.926327250047501 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/06/28,2.319525000047499 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/07,2.824821971739165 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/07,2.937778721956664 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/07/29,16.48858333328582 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/06,2.9720295000000023 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/07/30,3.207875469999997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/07/30,2.6888498500000035 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/08,9.44776272369146 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/30,9.50540833418833 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/23,9.506677084720842 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/08/23,7.96708958307585 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/07,14.356900000312482 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/10/01,5.510255620769225 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/24,3.2241945429999963 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/24,3.0073490930724978 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/10/02,2.6540605736263734 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/10/02,3.281410043269231 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/09/23,3.194839109999997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/11/11,4.107207721999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/11/11,4.883809901047616 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/11/10,3.5148022500000065 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/10/25,2.8680522500000056 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2017/12/04,14.232298643309989 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/05/05,3.2344545000475016 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/05/29,9.352216662461668 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/05/30,3.814374999999997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/05/30,3.602470630769223 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/09,4.2166431999999885 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/09,4.210593199999988 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/08,12.87843750031 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/01,3.151102250047505 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/07/01,2.8814250000475026 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/06/22,2.8366119807692303 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/08/10,3.240128699999996 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/08/10,3.0678945999999967 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/08/09,3.46301364 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/08/25,19.743075000200005 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/10/05,2.774816668269229 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/10/05,3.0720307268314992 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/12/07,22.30574166666668 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/11/22,3.042200000000008 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2018/11/22,2.949475000000007 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/02/09,12.279108334963327 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/02/26,21.75304166666668 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/04/23,3.4336242517391646 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/04/23,3.484207583405831 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/05/08,8.469166673566654 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/04/22,2.1176450999999976 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/06/01,9.915425001065024 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/06/09,2.491649850000002 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/06/26,5.395514395432501 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/06/26,5.693200002291668 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/08/04,6.063566669094171 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/07/28,11.577160424411666 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/07/28,12.262929173176676 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/08/05,2.161720000000001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/08/05,5.126968980769229 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/07/27,4.048950000362494 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/05,4.500391559047611 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/06,2.754999824999999 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/06,2.807001711538462 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/21,7.723645449999999 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/10/08,2.8710048057692283 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/10/08,3.124875117307687 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/09/29,17.780016667466647 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/11/08,9.933287501810014 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/10/23,5.8759818224925 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/12/11,11.979535420824188 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/12/11,10.147595847058328 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/11/25,2.5196612500000004 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2019/11/25,3.5472638826923046 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/02/05,22.658500000000007 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/02/05,22.64890000000001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/03/08,22.451808333333343 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/02/20,21.791766666666685 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/02,6.863153048333332 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/04/25,9.3017499961375 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/04/25,9.354724995014998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/03,4.910896215633334 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/03,2.987279550000004 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/27,3.671745449999994 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/27,3.192949999999997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/06/04,14.59214999999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/06/04,3.942025000095005 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/05/26,3.1927736699999985 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/05,19.518674996630008 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/06,2.86789616826923 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/06,2.918214543269229 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/06,9.958341671339149 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/30,4.588592577152013 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/07/30,4.522731202152013 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/07,2.8047250000000044 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/07,12.585524999784989 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/31,4.005632681319044 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/31,4.072567801161665 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/22,2.664200000474997 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/30,12.897558374970831 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/23,2.6450978857692284 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/08/23,3.1618246615384598 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/09,5.790667332380945 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/10,8.218875760920824 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/10,8.68412500033249 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/01,3.559750000000005 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/09/24,5.035753035325829 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/09/24,10.006686367511657 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/11/10,5.156831107714275 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/10/25,13.560958333333335 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/12/29,4.278286216346155 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2020/12/29,4.251186216346155 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/01/30,21.794191666666684 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/03/11,7.217199999785006 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/03/02,22.29259999935501 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/04/03,22.29679999935501 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/05/06,4.841750000312496 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/05/06,5.946665910287497 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/06/07,3.182527250000007 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/06/07,3.400654500000004 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/05/29,15.82398333333332 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/06/23,2.76715675 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/06/23,5.085976923196919 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/08/10,2.837400000000004 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/08/10,4.182074999999996 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/07/25,7.301175000000005 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/07/25,6.619231661610953 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/08/25,10.42655417627416 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/09/26,12.586441675966682 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/06,10.988708347465831 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/06,7.658492363601108 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/09,3.1368567899999986 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/09,3.1007497899999983 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/05,3.123400000000002 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/10/29,2.7241848307692296 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/10/29,2.5757809807692307 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/12/07,2.4728468200000013 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/24,2.470422755769229 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/11/21,2.1324155624999985 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/12/24,24.44116666666665 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2021/12/23,6.999462611456535 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/01/25,9.841433333333349 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/01/25,10.913916667051671 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/02/26,23.23219166666666 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/02/26,22.529033333333334 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/03/30,22.26459166666668 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/04/06,8.792961676461665 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/03/29,21.88613333333335 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/03/22,13.638033333590842 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/03/22,15.30952500090502 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/09,2.513413349999999 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/09,2.6529219374999995 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/08,8.351775009199992 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/01,2.921352625 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/01,4.414398279999995 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/04/30,5.226724999999999 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/31,15.10243374952501 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/26,10.158733334370812 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/26,9.117533334370812 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/25,2.973775000000001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/25,3.493300000000003 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/05/24,3.3893795000000035 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/04,7.0470750012050045 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/29,17.42044999952249 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/29,17.25993999952249 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/11,17.82745000048001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/03,7.905202275402503 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/26,4.278849999999992 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/26,3.5302431999999984 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/06/25,6.2314750045475 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/07,4.331364998320009 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/05,5.242200001377489 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/05,5.547944707124159 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/28,2.7224250000000048 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/07/28,4.886325001104998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/10,8.066597349376678 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/29,3.8346250000000026 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/29,3.4429214807692343 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/08/28,2.623422475 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/09,6.3358249977600085 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/09,6.302824996255009 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/22,5.685349999970004 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/30,12.852949999999986 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/29,4.752162942307686 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/22,2.8488273750000013 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/22,3.5984599798076893 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/09/21,6.090625000285001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/31,8.711074991835002 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/26,8.848158333533345 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/11/09,2.909834793269229 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/11/09,2.9403519230769204 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/11/08,2.3478064500000007 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/10/24,9.787249999940007 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/12/10,2.322124850000001 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/12/02,4.693250000409995 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2022/11/24,3.2482317500000017 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/02/21,14.863641668881662 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/02/21,9.126924999762506 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/04/10,10.561558333238327 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/04/02,13.618991666619165 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/04/02,12.258474999904992 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/04/01,13.886483333238337 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/09,9.473614585785858 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/31,2.5734506047391674 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/26,3.5088422729999964 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/26,3.529971817999994 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/05,8.938400002539982 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/05,14.451958340233332 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/04,3.836900000312495 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/28,4.004725000989995 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/28,15.840758335850843 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/05/27,8.995053033975841 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/22,3.715359089999995 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/06,4.725875501806547 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/21,4.390096254807695 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/06/21,3.1843357307692326 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/10,11.200189583000856 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/05,9.83167103686 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/05,8.457150038345002 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/31,3.3795750000000004 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/31,4.072853330769225 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/30,9.50748334181082 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/23,3.4708250000000067 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/23,7.564125001392492 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/07/22,3.4945795000000044 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/06,5.092209094999991 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/01,2.7920931852174995 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/01,2.8315507684058328 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/01,5.000795455119991 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/01,5.314400000217494 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/31,3.541042436666659 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/08/23,2.3526364557692307 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/10/03,6.644525764999998 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/28,10.963068753157511 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/10/03,4.482091171666662 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/10/03,2.5525208500000023 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/10/02,3.5478990499999963 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/25,3.367931399999996 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/09/25,3.439715924999996 -Lake Eaton,15468185,-74.46673924990053,43.97880417730197,2023/11/03,4.351472948666663 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/01/22,23.94899999999999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/01/22,23.94899999999999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/03/02,10.265349999785007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/02/23,22.47810000000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/02/23,22.47810000000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/03/10,21.66638333333335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/03/02,10.265349999785007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/02/23,22.47810000000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/02/23,22.47810000000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/03/10,21.66638333333335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/04/28,8.325199993220005 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/04/28,7.999674992820006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/06,7.169975000287495 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/06,4.5704000004325 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/04/28,8.325199993220005 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/04/28,7.999674992820006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/06,7.169975000287495 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/06,4.5704000004325 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/06,4.308620218216781 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/30,8.409389585108327 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/30,8.111839585208328 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/07,12.95595833333332 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/07,12.614683333333316 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/29,4.593715909999999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/22,3.041574825000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/22,2.870527250000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/06,4.308620218216781 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/30,8.409389585108327 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/30,8.111839585208328 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/07,12.95595833333332 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/07,12.614683333333316 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/29,4.593715909999999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/22,3.041574825000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/05/22,2.870527250000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/07/08,2.820073504348332 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/22,6.277300003137508 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/07/08,2.820073504348332 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/06/22,6.277300003137508 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/09,3.7627454999999954 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/02,13.605174999000006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/02,22.302383332980835 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/09,3.7627454999999954 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/02,13.605174999000006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/02,22.302383332980835 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/03,11.753737502527516 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/03,20.11043333608335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/25,12.481850014474992 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/11,2.3224248000000007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/11,2.123447600000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/02,6.414700000410007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/03,11.753737502527516 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/03,20.11043333608335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/08/25,12.481850014474992 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/11,2.3224248000000007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/11,2.123447600000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/02,6.414700000410007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/05,14.092645674833316 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/05,15.308112593827492 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/26,12.898008348858331 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/04,3.709949999999996 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/27,2.1877749499999983 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/27,2.105472599999998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/05,14.092645674833316 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/05,15.308112593827492 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/26,12.898008348858331 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/10/04,3.709949999999996 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/27,2.1877749499999983 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/09/27,2.105472599999998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/05,2.39854055 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/05,2.39854055 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/30,2.5524303125000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/30,3.5990599355769213 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/21,3.805954171564165 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/30,2.5524303125000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/30,3.5990599355769213 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2015/11/21,3.805954171564165 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/10,22.404625000000006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/01/24,21.77565833333335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/10,22.404625000000006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/01/24,21.77565833333335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/26,10.081941666451678 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/26,10.00432499978501 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/26,10.081941666451678 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/02/26,10.00432499978501 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/05,11.364662372538604 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/05,11.364662372538604 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/07,7.940073331778334 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/30,3.1275166983333302 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/30,3.19552123833333 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/21,5.037036374999994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/29,4.971804169039167 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/07,7.940073331778334 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/30,3.1275166983333302 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/30,3.19552123833333 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/21,5.037036374999994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/04/29,4.971804169039167 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/23,4.882765691586783 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/31,6.049726148014162 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/24,5.999475000047506 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/24,3.2752749999999957 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/23,4.882765691586783 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/31,6.049726148014162 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/24,5.999475000047506 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/05/24,3.2752749999999957 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/03,21.02309583373833 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/03,18.715583332998325 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/24,14.839791678166655 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/11,10.540633335870822 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/11,9.45477500018999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/02,2.9333750000000043 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/25,2.4850588000000022 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/25,2.589277350000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/03,21.02309583373833 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/03,18.715583332998325 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/24,14.839791678166655 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/11,10.540633335870822 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/11,9.45477500018999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/02,2.9333750000000043 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/25,2.4850588000000022 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/06/25,2.589277350000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/11,5.502508526992497 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/04,3.926850000144991 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/04,4.261625000072489 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/03,14.62747500007248 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/27,2.688752250000007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/27,2.6697522500000064 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/11,5.502508526992497 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/04,3.926850000144991 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/04,4.261625000072489 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/03,14.62747500007248 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/27,2.688752250000007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/07/27,2.6697522500000064 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/05,3.604936399999992 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/05,3.558286399999992 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/27,3.609365919999993 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/04,3.414059124999994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/28,4.85740000101 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/28,4.688650001007499 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/05,3.604936399999992 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/05,3.558286399999992 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/27,3.609365919999993 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/04,3.414059124999994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/28,4.85740000101 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/08/28,4.688650001007499 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/07,4.21199305633333 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/07,3.3597968380724965 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/28,3.618921223695825 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/21,3.6047331779999943 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/21,3.3149490879999943 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/06,2.4777794500000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/29,14.056558333533312 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/29,13.404583333533315 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/07,4.21199305633333 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/07,3.3597968380724965 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/28,3.618921223695825 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/21,3.6047331779999943 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/21,3.3149490879999943 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/06,2.4777794500000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/29,14.056558333533312 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/09/29,13.404583333533315 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/08,6.884884853478335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/08,7.5607954601450045 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/23,2.9938000000724987 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/23,3.3084916683333305 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/07,2.90520763653846 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/08,6.884884853478335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/08,7.5607954601450045 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/23,2.9938000000724987 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/10/23,3.3084916683333305 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/11/07,2.90520763653846 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/10,12.74784166685166 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/09,6.3392522759075 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/10,12.74784166685166 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/09,6.3392522759075 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/01/02,22.373925000000007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/26,11.242791666666683 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/26,22.407066666666672 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/01/02,22.373925000000007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/26,11.242791666666683 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2016/12/26,22.407066666666672 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/03,22.351800000000008 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/03,22.351800000000008 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/08,16.52975482076921 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/08,5.732313407692301 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/27,21.675758333333352 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/20,14.931983333238334 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/20,14.721666666571672 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/08,16.52975482076921 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/08,5.732313407692301 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/27,21.675758333333352 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/20,14.931983333238334 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/02/20,14.721666666571672 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/23,22.34590833333334 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/09,6.531000000072501 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/09,6.569953428213331 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/03/23,22.34590833333334 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/09,6.531000000072501 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/09,6.569953428213331 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/24,7.408535606739175 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/05/11,2.340702200000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/05/11,2.413765090000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/04/24,7.408535606739175 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/05/11,2.340702200000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/05/11,2.413765090000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/11,5.710674466540834 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/11,5.710674466540834 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/05,2.866286300000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/28,3.560650000000008 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/28,2.4951250000000056 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/05,2.866286300000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/28,3.560650000000008 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/06/28,2.4951250000000056 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/29,16.484774999999985 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/06,3.080488520000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/30,3.1223316250000006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/30,2.688442375000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/29,16.484774999999985 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/06,3.080488520000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/30,3.1223316250000006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/07/30,2.688442375000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/30,10.307479184661664 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/23,18.199318849784994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/23,17.433602178685828 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/31,2.807125000000004 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/31,3.002975000000005 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/30,10.307479184661664 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/23,18.199318849784994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/23,17.433602178685828 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/31,2.807125000000004 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/08/31,3.002975000000005 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/10,6.9164958237683445 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/10,6.248587492445014 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/01,4.213566106666657 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/24,5.417170465145001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/24,5.740184858405836 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/02,2.532183950000002 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/02,2.2916819875000014 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/23,3.126700499999996 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/10,6.9164958237683445 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/10,6.248587492445014 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/01,4.213566106666657 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/24,5.417170465145001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/24,5.740184858405836 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/02,2.532183950000002 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/10/02,2.2916819875000014 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/09/23,3.126700499999996 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/11/11,5.130526567714275 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/11/11,4.58827279271428 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/11/11,5.130526567714275 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/11/11,4.58827279271428 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2017/12/04,10.862954200986668 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/01/29,6.028649999555008 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/05/05,2.6155222500000006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/04/28,5.057752538461526 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/04/28,6.009199346153836 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/05/29,5.670283326855835 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/05/30,4.320694330769222 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/05/30,2.9103825400000005 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/09,4.417493199999987 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/09,4.4194931999999865 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/08,12.84508333333332 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/01,4.338700000699998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/07/01,7.235950000362497 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/06/22,5.213775000000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/08/10,3.692736399999995 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/08/10,3.7221613999999943 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/08/09,4.146821213333323 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/09/03,2.515374999999997 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/09/03,2.483977250047501 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/10/05,2.433538449999999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/10/05,2.2422815999999988 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/12/07,22.67296666666667 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/12/08,21.867666666666683 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/11/22,11.990041666651662 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/11/22,12.327449999984994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2018/12/23,9.035008333333346 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/02/09,13.181515000095 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/02/26,21.867666666666683 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/02/26,21.867666666666683 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/04/23,6.3634848686708345 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/04/23,6.376466688670836 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/05/08,5.063209102299998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/04/22,2.1002021500000008 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/10,10.116374999399993 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/10,11.199750000697511 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/01,11.398908333933344 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/09,2.7061205000000017 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/07/03,9.680442558186304 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/26,4.031075000072489 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/06/26,4.053675000072489 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/07/04,12.257599999999982 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/07/04,10.06255833338082 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/04,12.07537084047084 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/05,3.881809199999995 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/05,3.7633682999999936 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/05,4.2255251866666566 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/29,4.318443180404998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/08/29,3.76536818019 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/06,2.888320300000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/06,2.775731350000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/21,6.967056056739165 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/10/08,2.6253292000000017 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/10/08,2.488842950000002 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/09/29,12.251674999999986 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/10/24,11.067475000622494 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/10/24,6.849200000410003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/11/25,4.241345966346154 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2019/11/25,16.86461346158593 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/02/05,11.090416665591668 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/03/08,22.304499999355013 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/02/21,22.476608333333346 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/03/07,21.83503333333335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/02/20,10.905883333118336 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/04/01,2.1177747250000034 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/04/01,3.197987924038461 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/02,7.380103033478334 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/04/25,10.1415999984825 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/04/25,9.8205249980675 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/03,3.191453445 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/03,3.9098287199999935 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/27,3.774150001884158 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/27,3.774652276884158 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/06/04,12.33135833587083 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/06/04,10.784175000407492 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/05/26,4.0833250000724925 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/05,7.355825002222505 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/06,2.524224950000002 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/06,3.052244470769228 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/06,3.688877280072496 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/30,3.2180848549999963 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/07/30,3.1615748549999965 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/31,3.467754864102561 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/31,2.7317696899999984 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/22,3.752411369999991 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/08,18.76509999998499 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/08,15.115083333398331 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/30,3.190277250000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/23,4.165915499999992 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/08/23,3.6048205049999935 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/09,4.645847759999988 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/23,16.948745833320835 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/10,6.8714000000474975 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/10,10.239150000047491 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/01,3.200579500000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/24,9.3284250026625 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/09/24,5.406850000627503 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/11/10,3.572216098666664 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2020/10/25,6.056920825715846 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/01/29,9.716483333333343 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/02/06,21.66638333333335 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/01/30,21.75304166666668 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/03/11,10.34457500000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/03/02,22.404625000000006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/04/03,11.991979166101665 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/04/04,3.0422504999999984 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/04/04,6.460354999999997 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/03/26,7.135275000552499 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/05/06,2.5614159000000027 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/05/06,2.733404125000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/04/27,13.324083333118322 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/06/07,3.693390444102556 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/06/07,3.604171213333326 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/05/29,5.317883336653329 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/06/23,3.3362250000000047 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/06/23,3.173925000000004 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/02,3.5430729169766746 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/02,1.8359940468540503 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/10,3.2537251000724967 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/10,4.133236387179481 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/07/25,6.626950000144996 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/07/25,4.509824999999994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/25,9.342433333908332 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/26,4.43134196076922 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/08/26,3.9436272999999913 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/09/26,5.056159092395 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/06,6.036873498620829 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/06,6.424161375552497 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/09,3.0232488 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/09,2.728788500000002 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/10/29,2.144481699999998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/10/29,2.2937051124999988 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/12/07,16.56413333359084 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/24,2.2995680999999992 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/11/21,4.636744999999997 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2021/12/24,24.44116666666665 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/01/25,11.464708333333345 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/02/01,22.274983333333346 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/02/26,22.52759166666668 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/02/26,22.424041666666675 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/03/30,22.26459166666668 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/04/06,4.160936004999994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/03/29,21.750616666666684 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/03/22,15.875256250152493 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/03/22,15.931989583485828 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/09,2.896545400000002 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/09,2.702339000000004 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/08,3.2471889999999983 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/01,3.0382267499999998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/01,2.861179950000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/04/30,3.4989773099999955 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/31,17.738625001630005 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/26,9.75955832807833 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/25,3.9015000001449978 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/25,4.389150000072494 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/05/24,21.00513749991501 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/04,11.51310000273248 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/11,17.98445000060001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/03,4.076493938333326 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/06/26,11.449875002609993 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/06/26,10.818591666976651 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/06/25,2.278203015000003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/28,4.168350000000007 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/07/28,3.668334000000004 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/10,7.663934090965003 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/08/24,4.2029613706675 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/08/29,3.974959095385001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/08/29,4.087500000362496 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/08/28,2.469024890000002 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/09,7.7313288233658355 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/09,9.622525013410009 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/22,7.289800000200009 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/30,11.80601666666665 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/30,12.50632499999998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/22,2.6352968125000005 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/22,3.2083826153846142 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/09/21,12.677013625072496 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/31,8.058549996919998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/26,4.817749998895005 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/10/26,6.78332499389001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/11/09,2.3729156999999974 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/11/09,2.280668599999998 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/11/08,2.3616497999999995 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/12/10,2.392336300000001 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/12/02,3.1878067500000014 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2022/11/24,4.1995045000000015 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/02/21,15.738200198456672 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/04/10,22.89725000000002 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/04/10,10.675083333238328 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/04/09,11.557099999904995 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/04/01,9.987741666476689 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/03/24,9.370974999332512 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/09,10.06991458579586 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/31,2.7835772705075006 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/26,2.996879550072498 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/26,4.061871996811662 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/05,15.989058333405843 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/05,6.191825000792502 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/04,4.161875000217495 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/28,5.838600000504999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/28,6.673325000505 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/05/27,24.7458000000475 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/22,3.770246818289994 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/07/06,3.397415909999999 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/21,3.567184124999995 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/06/21,3.3518282307692284 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/08/05,20.371595836473357 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/08/05,9.49348958807834 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/07/30,11.865375000577483 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/07/23,4.135999999999988 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/07/23,4.145953985641022 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/06,7.438465153478331 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/01,2.792369706884166 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/01,2.661453801811667 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/01,3.512875000289996 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/01,3.496925000072494 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/08/31,3.1794179633333317 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/08/23,2.3967703500000037 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/28,6.760570825470845 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/28,5.642439577355841 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/10/03,3.6550090799999926 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/10/03,3.309340019999996 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/10/02,3.906788649999996 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/25,4.349786389999991 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/09/25,4.421275989999989 -Park Lake,15468219,-74.44509079318453,43.95684009262301,2023/11/03,4.820024979999994 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/01/22,23.333575 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/02/06,21.77565833333335 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/03/10,21.66638333333335 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/04/03,9.726166666286687 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/06,8.682733335778318 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/06,6.682325002612498 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/06/06,4.466316048032615 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/06/07,11.006200000237492 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/06/07,11.425500000237497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/29,4.07909999999999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/22,4.429884099999994 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/05/22,3.5520749999999977 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/07/08,16.31164166628417 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/06/22,5.08491703247595 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/08/09,4.22199243666666 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/07/24,5.145591671274169 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/08/10,4.976319231034224 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/08/10,7.481944231251726 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/03,7.148458333533342 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/08/25,3.177966686126373 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/11,3.9203672015384567 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/11,2.648460750000002 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/02,4.601363461683456 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/10/05,4.104436370507497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/10/05,3.4664265372466656 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/26,3.313140176666661 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/10/04,12.867833333333325 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/27,2.6924252807692306 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/09/27,3.3241787596153847 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/05,2.080597574999996 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/29,8.8190495047144 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/22,3.702232116959704 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/22,3.652030061346149 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/30,2.8939199615384634 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2015/11/30,4.117920384615379 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/02/10,22.663366666666672 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/02/26,22.404625000000006 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/05,10.332429164614176 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/03/29,7.860324999985002 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/30,4.298325768333327 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/30,3.725353028333328 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/21,13.88018335875334 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/04/29,6.289133719034168 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/05/23,12.441162524752508 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/05/31,6.245833723889166 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/05/24,4.646150009999994 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/05/24,5.4293454499999925 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/03,14.027433333333317 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/03,16.72192500196999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/06/24,14.13218333427584 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/11,10.447649999952482 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/11,11.394450002252484 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/02,6.692475000434999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/06/25,2.802699813333335 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/06/25,3.722535454999997 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/11,8.12037660743535 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/04,3.7368912641025593 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/04,3.714073830769225 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/26,8.488906444231663 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/03,3.2316545000000003 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/27,3.0598335266025622 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/07/27,2.970642728846153 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/05,4.085245814102557 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/05,4.073970814102558 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/08/27,3.261293199999997 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/04,3.646227299999996 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/07,3.742887128333328 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/07,2.6425295450000004 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/28,2.680735467999999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/21,3.5881386999999942 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/21,3.3678636999999947 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/06,2.3306962923076897 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/29,12.382624999999978 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/09/29,13.654699999999975 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/11/08,4.680782470714278 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/11/08,3.456343978333331 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/23,5.008097766047614 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/10/23,3.924308455405833 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/11/07,3.30162129326923 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/12/10,7.90842727 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/12/10,7.192788769882495 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2016/11/23,12.690058333318325 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/01/02,13.181875000384998 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/02/28,10.110831249905004 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/03/08,11.9401250004275 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/03/08,11.827225000627502 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/02/27,11.627808332855832 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/02/20,14.499358336735828 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/02/20,14.404633333285837 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/03/23,22.34590833333334 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/04/09,11.673399999857509 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/04/24,6.745100000192508 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/05/11,4.844208335755832 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/05/11,4.777854169351666 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/06/11,6.777848327413329 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/07/05,3.6029461999999937 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/07,8.190279167581663 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/07,4.852831444244171 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/07/29,6.169975004030002 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/06,9.383700001677497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/07/30,2.6691656557692305 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/07/30,2.742856211538462 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/30,20.045452501300016 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/23,13.16763052455084 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/08/23,12.483132598834173 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/10/01,3.4280364799999927 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/09/24,3.212063635072495 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/09/24,3.2101295451449947 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/10/02,2.5395429682692305 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/10/02,2.768310711538463 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/09/23,4.882350000047502 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/11/11,5.041851567714278 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/11/11,4.720284901047612 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/11/10,4.289859099999995 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/10/25,2.672460450000002 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2017/12/04,14.484033367833336 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/03/26,22.29679999935501 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/05/05,4.243400000000001 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/04/28,13.311809092632489 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/04/28,18.705475770894143 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/05/29,13.284058344880831 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/05/30,3.9835575833333303 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/05/30,3.9146249999999942 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/09,4.483306899999987 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/09,4.576782299999987 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/06/30,16.174774999999983 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/08,17.164095834930837 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/01,6.032675000507498 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/07/01,5.044850000579995 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/06/22,4.586465175795831 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/08/10,3.0149279649999983 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/08/10,3.7352431499999934 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/08/09,3.6710659149999993 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/09/03,2.589075000000003 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/09/03,3.0300500000000072 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/08/25,17.841299999492513 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/10/05,2.236588474999998 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/10/05,2.32863698076923 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/11/22,2.906454500000005 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2018/11/22,2.7728750000000053 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/02/09,22.539900000000006 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/02/26,21.856800000000018 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/04/23,5.123842043838453 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/04/23,5.1402420438384535 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/05/08,7.305691679021652 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/04/22,2.0972998249999963 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/06/01,10.00030000024503 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/06/09,3.859914599999992 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/06/26,20.59036666666665 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/06/26,20.849370833263325 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/07/04,12.052074999999986 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/08/04,7.557675001157497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/08/05,3.179845409999999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/08/05,3.1747544999999997 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/07/27,3.0104522500475013 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/05,3.844958396666658 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/06,2.862008974999999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/06,2.4156414807692297 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/21,3.356765146666664 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/10/08,3.0559413515384573 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/10/08,2.8809072615384577 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/09/29,15.058691666666649 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/10/23,12.264266667021667 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/11/09,12.89690000067249 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/11/09,2.634604500000005 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/12/11,5.814776499999999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/12/11,7.090029167366664 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/11/25,2.5762404038461546 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2019/11/25,4.076650048076917 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/02/05,22.26459166666668 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/02/29,21.750616666666684 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/02/29,21.791766666666685 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/02/20,11.791533333518334 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/04/01,16.300650000000008 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/04/01,17.02521666685667 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/02,7.326361374999997 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/04/25,4.323789778087499 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/04/25,4.159739778515 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/10,5.98342500004749 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/03,4.904425000214995 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/03,4.457572725407491 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/27,4.227015151739156 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/27,4.206340151739157 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/06/11,2.446225000000004 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/06/04,14.84029999999998 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/05/26,3.722554500000001 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/05,10.054200006684992 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/06,2.397815725000002 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/06,2.5450641057692307 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/06,3.560459090072493 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/30,8.902150007959987 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/07/30,11.576408359160837 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/31,5.087550004462497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/31,4.975950004507497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/23,4.638409089999993 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/08/23,2.6160473500000028 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/10/09,4.783531859999988 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/10/10,7.662550000552501 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/10/10,7.246325000867498 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/09/24,4.095300000507495 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/09/24,3.6206250009425 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/11/10,4.864828837714279 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/10/25,7.388473483405835 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/12/29,21.791766666666685 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2020/12/29,21.78088333333335 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/01/29,22.76205 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/01/30,21.838800000000013 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/03/02,22.34590833333334 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/04/03,11.585291666571663 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/04/04,3.076517250000001 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/04/04,12.358791666571667 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/05/06,12.55730000028999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/05/06,2.7847250000000043 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/06,16.08630833496582 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/07,4.25260675 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/07,2.6301749550000006 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/05/29,5.831212508671662 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/23,3.135772525641025 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/06/23,3.0658483000000003 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/02,8.636924989027497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/02,6.700999992800012 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/10,6.444693180787503 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/10,4.163168180214992 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/09/10,3.7038250003374986 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/25,6.478925001352497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/09/11,13.727460714840698 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/09/11,5.370825000652494 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/26,3.392750000047502 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/08/26,3.271475000047502 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/09/26,18.11175000017752 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/06,3.8292638137391646 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/06,3.888198667072497 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/10/28,7.9221400346666595 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/05,3.688253230769231 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/10/29,2.49426331826923 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/10/29,2.873769711538462 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/12/07,4.536284779131155 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/24,2.553254286538459 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/24,2.4776940807692287 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/11/21,2.189924949999998 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2021/12/24,24.44116666666665 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/01/25,10.755349998905013 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/02/26,22.674233333333337 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/04/06,9.440035415234169 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/03/29,21.791766666666685 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/03/22,13.897400000142513 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/03/22,13.001525000332505 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/09,2.168449700000001 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/09,2.537426500000002 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/08,3.5865414896666614 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/01,3.736752249999996 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/01,4.261494100072495 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/04/30,4.496100000072499 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/31,10.846874999635004 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/25,4.928244231204223 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/25,4.587400006079996 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/05/24,4.119719697029165 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/07/04,3.749068968333329 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/06/29,10.359125002322498 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/07/03,5.916605323719997 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/06/26,3.808100000144997 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/06/26,3.2156635 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/06/25,3.7907356164358337 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/07,16.20816083525084 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/05,5.2287750002649895 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/05,4.956000000407489 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/10,2.706666673525836 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/29,4.061075000289994 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/29,4.194024999999996 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/08/28,3.1527829749999974 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/10/09,5.348475000185 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/10/09,6.42547499668501 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/22,4.3532144141058255 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/22,8.43173334071583 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/30,3.4952541712816623 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/30,3.7015791705591625 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/09/21,4.236800000144993 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/11/09,2.7142494682692297 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/11/09,3.099785247664835 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/11/08,2.5713378932692303 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/10/24,21.396124999280016 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/12/10,2.46768855 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/12/02,22.542550000907514 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2022/11/24,3.4239545 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/02/21,9.85639999969001 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/10,18.696806250200005 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/10,12.472108333190828 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/09,12.56317499995249 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/02,13.367258333190836 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/04/01,14.467537500305008 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/09,9.162945836160842 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/31,3.166770450217499 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/26,2.971184694884166 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/26,3.0295809181449984 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/28,6.464025000385 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/28,15.23321666942168 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/05/27,16.738558338100816 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/06/22,3.085109090217496 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/06/22,3.414077270217493 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/06,3.882075000072494 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/08/05,3.3145479562042306 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/08/05,4.755442673489941 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/30,6.2462102327099975 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/23,4.17761369999999 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/23,4.032213124615383 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/07/22,14.174883359830831 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/06,8.519758336666664 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/01,3.1709704699999977 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/01,3.272995469999997 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/01,5.306362881786656 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/01,6.119668180239995 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/08/31,3.034582408333332 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/08/23,2.1795977 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/10/03,7.839527275432501 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/28,6.60597082734835 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/28,8.816095822928334 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/23,20.15609583295081 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/10/03,4.284413709999991 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/10/03,3.081172600000001 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/10/02,2.8019988500000017 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/25,4.397984089999993 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/09/25,3.697284099999992 -Salmon Lake,15509514,-74.672373893536,43.95829012526711,2023/11/03,2.7326624774999986 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/01/29,22.34590833333334 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/06,21.88613333333335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/01/29,22.34590833333334 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/06,21.88613333333335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/23,22.47810000000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/22,21.88613333333335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/22,21.88613333333335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/23,22.47810000000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/22,21.88613333333335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/02/22,21.88613333333335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/04/28,22.898458335903356 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/06,2.793089550000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/04/28,22.898458335903356 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/06,2.793089550000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/06,13.535150022999996 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/06,13.68124168966666 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/07,12.44447500004749 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/29,2.3115863500000025 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/29,2.219809100000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/22,10.075300000384992 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/06,13.535150022999996 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/06,13.68124168966666 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/07,12.44447500004749 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/29,2.3115863500000025 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/29,2.219809100000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/05/22,10.075300000384992 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/08,5.002119700168333 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/08,7.312750759903333 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/22,4.387075002852498 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/22,8.285000016507496 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/08,5.002119700168333 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/08,7.312750759903333 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/22,4.387075002852498 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/06/22,8.285000016507496 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/09,3.8352997546666585 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/09,3.840892934666658 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/24,14.199533334118312 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/24,19.237091667451654 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/10,5.322925000072493 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/01,3.3326000002399967 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/01,3.722325000167495 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/09,3.8352997546666585 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/09,3.840892934666658 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/24,14.199533334118312 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/07/24,19.237091667451654 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/10,5.322925000072493 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/01,3.3326000002399967 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/01,3.722325000167495 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/03,6.60352499665501 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/25,3.799879666405241 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/25,3.6788743618560735 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/11,4.270850000000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/02,17.175466666666672 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/02,17.345425000000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/03,6.60352499665501 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/25,3.799879666405241 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/08/25,3.6788743618560735 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/11,4.270850000000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/02,17.175466666666672 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/02,17.345425000000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/26,3.1087840999999963 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/26,3.4548295499999937 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/27,3.332876509615386 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/26,3.1087840999999963 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/26,3.4548295499999937 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/09/27,3.332876509615386 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/05,2.325429324999998 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/05,2.1823588499999977 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/05,2.325429324999998 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/05,2.1823588499999977 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/29,5.542693600627732 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/29,4.635098294481067 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/22,3.3495885773076908 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/30,3.788481244230767 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/29,5.542693600627732 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/29,4.635098294481067 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/22,3.3495885773076908 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2015/11/30,3.788481244230767 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/01/08,12.862350000184993 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/01/08,12.862350000184993 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/02/02,3.1959750000000047 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/01/24,21.75304166666668 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/02/02,3.1959750000000047 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/01/24,21.75304166666668 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/02/26,10.798274999785002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/02/26,10.798274999785002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/05,10.3462123655436 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/05,13.384782791530268 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/05,10.3462123655436 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/05,13.384782791530268 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/07,3.731375005012508 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/07,6.705310631560838 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/30,4.750243953478328 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/21,7.302353632254994 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/21,7.258378627964995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/29,2.8226540000000013 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/29,2.9297667500000024 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/07,3.731375005012508 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/07,6.705310631560838 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/30,4.750243953478328 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/21,7.302353632254994 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/21,7.258378627964995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/29,2.8226540000000013 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/04/29,2.9297667500000024 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/23,15.188391813601674 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/23,16.201525153175012 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/31,6.681511478705239 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/31,5.884213368834407 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/23,15.188391813601674 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/23,16.201525153175012 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/31,6.681511478705239 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/05/31,5.884213368834407 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/03,4.3088829309617225 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/24,6.453957431683334 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/24,7.067742430080836 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/11,5.12331500033749 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/25,3.878586769102559 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/03,4.3088829309617225 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/24,6.453957431683334 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/24,7.067742430080836 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/11,5.12331500033749 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/06/25,3.878586769102559 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/11,12.855537500522503 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/11,12.599907501217512 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/04,6.700634094545006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/26,4.161888751565235 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/26,4.550550517728572 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/03,2.589560000000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/03,2.5128102500000025 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/11,12.855537500522503 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/11,12.599907501217512 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/04,6.700634094545006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/26,4.161888751565235 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/07/26,4.550550517728572 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/03,2.589560000000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/03,2.5128102500000025 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/05,4.862655047252742 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/27,2.3262038 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/27,2.402534099999999 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/04,4.890152249999995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/04,4.4666204499999935 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/28,6.3360750000725 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/05,4.862655047252742 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/27,2.3262038 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/27,2.402534099999999 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/04,4.890152249999995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/04,4.4666204499999935 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/08/28,6.3360750000725 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/07,9.66682640571429 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/28,6.113280319999997 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/28,6.548042433333332 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/21,2.4718660000000003 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/06,2.29164085 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/06,2.0737908499999973 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/29,2.8802826499999994 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/07,9.66682640571429 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/28,6.113280319999997 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/28,6.548042433333332 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/21,2.4718660000000003 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/06,2.29164085 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/06,2.0737908499999973 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/09/29,2.8802826499999994 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/08,5.855787025714281 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/23,7.869415885072491 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/07,7.480937961538469 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/07,2.613622968269232 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/08,5.855787025714281 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/10/23,7.869415885072491 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/07,7.480937961538469 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/07,2.613622968269232 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/10,5.559956529702783 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/09,3.110225000000004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/09,2.820475000000004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/23,18.25622499992251 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/23,17.556050000352514 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/10,5.559956529702783 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/09,3.110225000000004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/12/09,2.820475000000004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/23,18.25622499992251 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2016/11/23,17.556050000352514 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/01/02,22.348225000000006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/01/02,22.404625000000006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/01/02,22.348225000000006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/01/02,22.404625000000006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/04,22.689058333333342 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/04,22.689058333333342 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/08,13.557897162357506 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/27,12.991491666571669 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/20,15.166899999905004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/08,13.557897162357506 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/27,12.991491666571669 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/02/20,15.166899999905004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/23,22.480808333333343 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/23,22.451808333333343 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/23,22.480808333333343 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/03/23,22.451808333333343 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/05/03,8.616725017465008 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/04/24,13.659783374805846 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/04/24,13.738558379405848 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/05/03,8.616725017465008 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/04/24,13.659783374805846 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/04/24,13.738558379405848 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/11,6.3968399949449966 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/11,6.097264993409993 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/11,6.3968399949449966 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/11,6.097264993409993 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/05,4.775778801646663 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/05,4.7647038016466645 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/28,4.582976530769226 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/05,4.775778801646663 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/05,4.7647038016466645 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/06/28,4.582976530769226 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/29,23.218491666714176 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/29,22.63876666695168 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/08/06,4.961244042307692 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/08/06,8.183883650000004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/30,2.710719673076923 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/29,23.218491666714176 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/29,22.63876666695168 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/08/06,4.961244042307692 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/08/06,8.183883650000004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/07/30,2.710719673076923 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/10,7.221849997545013 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/01,5.0090207557692255 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/01,4.913814277380947 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/24,8.600023483333336 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/02,2.897574461538463 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/23,4.252274999999991 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/23,3.065678 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/10,7.221849997545013 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/01,5.0090207557692255 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/01,4.913814277380947 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/24,8.600023483333336 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/02,2.897574461538463 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/23,4.252274999999991 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/09/23,3.065678 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/11/11,4.091959228739162 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/25,2.367352200000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/25,5.492398759999994 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/11/11,4.091959228739162 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/25,2.367352200000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/10/25,5.492398759999994 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/12/04,4.074848986292736 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2017/12/04,3.7391578391977354 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/01/06,21.66638333333335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/05,4.260747739999999 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/05,3.007763639999999 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/29,12.589529173661669 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/29,11.902095835775832 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/05/30,5.414825000792499 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/07/09,3.2653537969566635 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/06/30,16.63516666695665 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/06/30,16.65274166580665 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/07/08,6.239789511529882 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/07/08,4.5471352412908335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/07/01,7.813139410406669 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/06/22,4.9757750008675 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/06/22,5.017975000747499 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/10,4.72924769968864 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/09,3.105000005000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/09,3.551874999999999 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/09/03,7.389375000000013 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/25,14.647400000602502 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/08/25,12.735981250170004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/10/05,2.493417500000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/12/07,14.614191666666663 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/12/08,13.23659166660416 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2018/11/22,3.6260750000000064 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/02/01,21.867666666666683 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/02/01,21.75304166666668 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/01/25,12.077324999984995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/03/06,22.37892500000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/03/05,22.115583333333348 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/02/26,21.794191666666684 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/05/09,4.851145445885124 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/04/23,5.831036365142503 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/05/08,2.76896268 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/05/08,2.8057995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/04/22,2.3262949499999985 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/04/22,2.323522199999998 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/10,12.248425000844996 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/01,9.517629163516691 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/01,9.250705414289197 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/09,2.8452588500000013 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/09,3.1584088500000003 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/06/26,16.61603333328582 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/08/04,12.67287500038001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/08/04,13.995600000237514 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/08/05,3.634485482371789 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/07/27,4.437150000167492 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/07/27,4.2547000004099935 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/05,3.989492496666656 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/05,3.952304796666657 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/08/29,8.539230302591662 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/06,2.655405330769233 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/21,3.2379871133333307 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/21,3.117243179999997 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/10/08,2.73420944903846 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/09/29,19.39840000014 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/11/08,6.55827499625501 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/11/08,4.731699999985003 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/11/09,2.6689794999999985 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/12/03,9.93683230487979 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/12/11,2.7924750000000045 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2019/11/25,3.697819113461537 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/02/05,22.30117500000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/03/31,16.15251884043001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/04/01,4.014927278534995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/02,4.556112891813334 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/02,4.323196224426667 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/04/25,9.078495846678344 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/10,3.104806750000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/10,3.4433499999999992 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/27,2.810715144058331 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/06/04,4.324000000362496 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/26,4.721960606666667 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/05/26,3.461949246666669 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/07/05,16.598708334868334 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/07/05,17.00638333486833 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/06/28,4.00770012564102 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/07/06,3.34719440160256 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/06,3.250186375144997 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/06,3.3494545551449963 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/07,3.372189524679486 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/31,3.1139822198717946 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/22,3.0701159257974977 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/22,2.428548494443332 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/09/08,14.09490000014251 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/08/23,4.541950000482493 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/09,4.803750649047612 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/09,4.596034749047614 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/10,12.104163461683465 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/01,14.746900000119972 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/09/24,5.144264400051665 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/11/10,4.140006983666662 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/11/10,3.436515340333329 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/11/03,15.172416667444184 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/25,3.816959092467504 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/10/25,3.667309092467504 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2020/12/29,4.010208855769228 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/01/29,22.26459166666668 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/01/29,22.26459166666668 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/01/22,24.44116666666665 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/02/06,21.867666666666683 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/03/02,22.663366666666672 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/03/02,22.663366666666672 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/04/03,13.541700015859996 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/04/03,16.19705836332834 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/04/04,2.97908827 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/05/06,3.0814752432692307 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/06/06,6.506760420869166 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/06/06,6.810131255592503 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/06/07,4.261724999999995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/05/29,15.548000000427486 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/05/29,4.202779170976664 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/06/23,3.3551371307692297 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/02,3.609844166714168 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/10,4.570638086538456 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/07/25,4.891412556410246 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/25,5.350858335358332 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/25,5.240283335430832 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/09/11,2.6692522500000058 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/08/26,3.916393180337495 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/06,4.114504728739166 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/10/28,7.502367156621067 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/10/28,6.261766998506906 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/05,6.921006750000006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/05,3.027138461538464 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/10/29,2.5871688111263738 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/24,2.357977199999997 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/24,2.1804225999999973 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/21,3.689317949999999 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/11/21,2.1427158000000004 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/12/23,3.5415000000000068 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2021/12/23,3.962950000000006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/02/26,22.658500000000007 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/02/26,22.274983333333346 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/03/30,22.451158333333343 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/03/29,21.66638333333335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/03/22,17.36113750053249 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/09,2.8697694250000008 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/08,6.167466674599157 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/08,6.122658338965821 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/01,8.733308333155813 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/04/30,3.216820424999999 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/04/30,3.2354567999999984 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/31,15.04568333311832 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/06/10,6.586948136482747 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/25,6.160232956967486 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/24,7.363333333843314 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/05/24,8.309600000179982 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/04,20.046724999984978 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/11,19.971666666811664 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/11,17.04135000017 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/03,5.351817811960001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/07/03,5.357680312350003 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/06/26,3.3676022500475025 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/06/25,3.1465983374999995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/06/25,2.627113350000002 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/08/05,4.209263461610963 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/10,2.598278028333333 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/10,2.687096961739168 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/08/29,3.461356205769229 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/08/28,3.1550195000000003 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/08/28,3.1053717500000007 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/30,18.488099999325 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/29,2.6350317499999982 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/29,4.767325713380837 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/22,3.4808248942307665 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/21,2.978544464999999 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/09/21,3.396060279999995 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/10/31,6.232021218099164 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/10/26,6.328708324458344 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/09,2.7673093980769234 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/08,5.163181211538461 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/08,2.5098867182692306 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/12/10,4.9656270499999975 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/12/10,2.5507633000000007 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/12/02,2.59845 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/12/02,2.8876772500000047 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/24,3.0681172500000016 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2022/11/24,3.2953295000000025 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/10,15.703881251009989 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/09,10.843454167891656 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/09,8.989612501454985 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/02,13.524699999952498 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/01,11.918550000332502 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/04/01,11.474391666666676 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/09,10.732133336165838 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/11,7.021582958752483 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/11,7.692810615219986 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/31,6.460670451497503 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/26,3.5247250001924955 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/05,21.679766666666676 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/04,5.873288263195827 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/04,5.896529171076659 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/28,23.28185834023335 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/27,25.257683333333347 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/05/27,24.366625000000003 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/22,17.04034166762665 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/06,3.5538091000724936 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/06,5.462045374999997 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/06/21,3.5110031207692294 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/30,4.728600713333333 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/30,4.752904499999997 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/23,6.7230432000725 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/22,5.803080318897498 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/07/22,4.415407599054166 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/06,3.5052386299999925 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/06,3.072249256739163 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/01,4.052834090217492 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/01,4.198711365239992 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/08/31,2.559986340000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/08/31,2.577486340000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/08/23,2.86154305 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/08/23,2.908068 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/03,6.136393187196668 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/03,3.7050000012825 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/23,14.590124999952485 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/03,3.0274953500000006 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/02,2.798022600000001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/10/02,3.713540089999994 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/09/25,2.512140312500001 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/11/03,3.1849268875 -Seventh Lake,15509842,-74.74350527000638,43.74659202268174,2023/11/03,2.848247387500001 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/06,9.705733333143344 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/06,9.705733333143344 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/23,22.404625000000006 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/22,10.754591666451672 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/23,22.404625000000006 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/02/22,10.754591666451672 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/04/28,3.1650250004525 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/06,4.106762133333328 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/04/28,3.1650250004525 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/06,4.106762133333328 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/06,4.7127476807025 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/07,13.538633333453324 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/29,3.120649251666665 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/22,4.171275000047497 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/06,4.7127476807025 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/07,13.538633333453324 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/29,3.120649251666665 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/05/22,4.171275000047497 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/07/08,6.322868753365001 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/22,9.801825016387491 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/07/08,6.322868753365001 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/06/22,9.801825016387491 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/09,3.7468022899999904 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/07/24,13.90765834833083 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/10,3.651500000000006 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/01,5.2557045 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/09,3.7468022899999904 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/07/24,13.90765834833083 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/10,3.651500000000006 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/01,5.2557045 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/25,3.9365583467391616 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/11,4.6324795000474985 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/02,2.727275000047501 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/08/25,3.9365583467391616 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/11,4.6324795000474985 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/02,2.727275000047501 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/10/05,4.891150000047502 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/26,4.377377658453332 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/10/04,14.57151666686665 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/27,2.7054456923076917 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/10/05,4.891150000047502 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/26,4.377377658453332 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/10/04,14.57151666686665 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/09/27,2.7054456923076917 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/05,4.991604169739164 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/05,4.991604169739164 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/29,6.849052990609403 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/30,12.715258333333328 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/29,6.849052990609403 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2015/11/30,12.715258333333328 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/02/02,3.61539263461539 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/02/02,3.61539263461539 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/02/26,22.404625000000006 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/03/05,9.888491666451673 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/02/26,22.404625000000006 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/03/05,9.888491666451673 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/05,8.01392777988776 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/03/29,7.1250562402375 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/05,8.01392777988776 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/03/29,7.1250562402375 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/07,5.881811367352506 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/30,6.533834090072502 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/21,4.425654278858568 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/29,6.764825000072508 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/07,5.881811367352506 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/30,6.533834090072502 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/21,4.425654278858568 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/04/29,6.764825000072508 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/23,11.11676466712334 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/31,4.192904169461662 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/23,11.11676466712334 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/05/31,4.192904169461662 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/03,4.196205313333322 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/06/24,11.009354166976664 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/11,7.266424623706656 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/02,4.279625000214999 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/06/25,3.9988674711538432 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/03,4.196205313333322 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/06/24,11.009354166976664 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/11,7.266424623706656 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/02,4.279625000214999 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/06/25,3.9988674711538432 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/11,7.586012502084995 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/04,3.435484099999996 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/03,3.7869449999999967 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/27,4.255916779487175 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/11,7.586012502084995 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/04,3.435484099999996 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/03,3.7869449999999967 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/07/27,4.255916779487175 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/05,3.8591868499999937 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/27,2.733691661666665 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/04,4.911859069999995 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/28,11.326600000072483 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/05,3.8591868499999937 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/27,2.733691661666665 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/04,4.911859069999995 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/08/28,11.326600000072483 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/07,3.817101511884165 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/28,6.372443205167497 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/21,3.2517574246666605 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/06,2.3880159557692284 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/29,14.577583332903314 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/07,3.817101511884165 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/28,6.372443205167497 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/21,3.2517574246666605 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/06,2.3880159557692284 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/09/29,14.577583332903314 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/08,9.30596667955666 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/23,7.944056795072491 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/07,2.5890135182692284 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/08,9.30596667955666 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/10/23,7.944056795072491 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/07,2.5890135182692284 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/12/10,7.525125000755005 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/23,2.5014045000000014 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/12/10,7.525125000755005 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/11/23,2.5014045000000014 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/12/25,11.10594166705167 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2016/12/25,11.10594166705167 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/03/08,16.020964583665833 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/02/27,21.67155833333335 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/02/20,20.365858333238364 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/03/08,16.020964583665833 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/02/27,21.67155833333335 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/02/20,20.365858333238364 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/03/23,22.304499999355013 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/03/23,22.304499999355013 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/04/24,9.335166666666655 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/04/24,9.335166666666655 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/06/11,4.622250602870833 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/06/03,4.93709206685833 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/06/11,4.622250602870833 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/06/03,4.93709206685833 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/05,3.7178545000000023 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/05,3.7178545000000023 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/07,9.229806320287503 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/29,14.213933335633344 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/06,3.265981699999998 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/30,2.9608706125000013 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/07,9.229806320287503 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/29,14.213933335633344 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/06,3.265981699999998 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/07/30,2.9608706125000013 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/30,3.623250000072496 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/23,3.9147583375583337 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/30,3.623250000072496 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/08/23,3.9147583375583337 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/10,5.982345825915846 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/01,3.2085219666666625 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/09/24,2.916819697029166 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/02,2.3259661682692294 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/09/23,3.6915909100725015 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/10,5.982345825915846 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/01,3.2085219666666625 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/09/24,2.916819697029166 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/02,2.3259661682692294 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/09/23,3.6915909100725015 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/11/11,8.39132109904761 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/11/10,4.956867999999999 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/25,5.382179679999994 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/11/11,8.39132109904761 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/11/10,4.956867999999999 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/10/25,5.382179679999994 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/12/04,3.5793816665841747 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2017/12/29,22.348225000000006 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/01/06,21.794191666666684 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/03/26,21.49743583333335 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/05/05,8.505033337028317 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/05/29,4.879155946946545 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/05/30,5.385075000647495 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/07/09,3.657006133333328 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/06/30,13.329349999999993 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/07/08,9.36489659247165 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/07/01,4.664200000434991 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/06/22,6.21100000047749 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/08/10,3.015772254102562 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/08/09,5.315495499999996 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/09/03,3.752950842307688 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/08/25,14.260250000357493 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/10/05,4.772941671206664 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/12/07,10.84014166645167 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2018/11/22,9.770918750027509 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/02/09,22.451158333333343 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/02/02,22.351800000000008 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/01/25,10.830375000000004 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/03/06,22.337341666666678 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/03/05,11.447216666651672 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/02/26,21.794191666666684 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/05/09,10.792890944177495 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/04/23,10.155566673851654 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/05/08,6.958433340353325 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/04/22,2.2382565750000007 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/06/01,8.382161664676682 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/06/09,2.857918290000001 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/07/03,8.998054172201666 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/08/04,10.567962501472508 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/08/05,3.5940059448717894 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/07/27,17.729333351878353 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/09/05,3.199232424666661 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/08/29,2.9698204766666656 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/09/06,2.6561004182692307 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/09/21,6.461670449999997 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/10/08,3.7612221607692256 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/09/29,4.019390909999993 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/11/09,4.241225000264995 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2019/11/25,4.143239028846151 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/03/08,22.471433333333344 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/02/21,22.451158333333343 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/03/07,21.67155833333335 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/02,13.69012500460001 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/04/25,10.673425018497506 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/10,3.1610022500000072 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/03,3.07842067 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/27,5.738284090527502 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/06/04,3.93490000041 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/05/26,4.964749999999998 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/07/05,5.601584091107502 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/06/28,2.9473318200725 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/07/06,14.428508332903313 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/06,3.886712133405828 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/07/30,2.627112882584164 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/07,4.631271434487172 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/31,5.977625004542494 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/22,4.002496973885832 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/30,3.2048321230769226 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/08/23,3.935779034615381 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/10/09,4.299035514047613 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/10/10,8.869625000432496 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/10/01,3.766636906943463 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/09/24,13.93373333340582 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/11/10,3.676020610695831 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/11/03,8.407183372680835 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/10/25,13.967055969624989 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2020/12/29,21.794191666666684 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/02/06,12.591508333470829 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/01/30,21.919450000000012 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/03/02,22.447608333333346 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/04/03,12.458666666856669 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/04/04,10.900641666571662 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/05/06,7.40519583706332 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/06/06,15.481774999784996 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/06/07,3.6811068209175 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/05/29,5.0471633049325 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/06/23,4.235418438461534 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/09,15.04750833311831 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/02,11.176929168784175 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/07/24,13.43271667831167 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/10,6.090752564102561 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/09/10,3.631902284999993 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/09/03,8.28823333190084 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/25,6.2483590913525004 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/09/11,4.274961250072498 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/09/02,2.8189500000000014 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/08/26,9.984854167414156 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/11/06,4.600518845714282 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/10/28,7.734826511666659 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/10/29,2.5241203365384624 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/11/24,2.6419930432692302 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2021/11/21,3.163431819999998 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/01/08,21.75304166666668 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/02/09,21.838800000000013 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/02/02,21.77565833333335 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/01/24,21.867666666666683 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/02/26,22.23439166666668 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/03/29,21.88613333333335 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/03/22,15.897995834093331 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/09,2.704916502500001 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/08,3.5651780733333305 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/01,5.541514398895823 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/04/30,4.441479534999998 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/31,17.94692499999999 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/25,4.773175000047491 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/05/24,5.035848215528212 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/04,10.917275002587512 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/06/29,19.26590000004748 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/11,7.674508338633318 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/04,4.215238699999992 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/03,7.53999167456415 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/06/25,3.1789341 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/08/05,3.631494042307693 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/07/28,2.701927250000001 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/09/10,2.741643189999999 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/08/24,9.743599992160002 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/08/29,10.647346213478343 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/08/28,3.1062786999999976 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/09/22,5.131819811903572 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/09/29,3.553525000000004 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/09/21,4.168100000072497 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/10/31,8.054574999479998 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/11/09,2.7677940842032966 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/11/08,2.0907793499999965 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/12/10,2.23683835 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/12/02,3.361950000000005 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2022/11/24,2.89759 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/02/04,22.13946666666668 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/04/10,10.955658333238327 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/04/09,11.239258333238327 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/04/02,12.731924999737496 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/04/01,10.236416666524176 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/09,9.858454170546674 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/11,5.004175000000001 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/31,7.788295450772503 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/26,2.9168272703625 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/06/04,5.0543308070382125 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/28,22.63400833350084 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/05/27,26.61800833333332 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/06/22,13.065874996585007 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/06,6.679358336786667 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/08/05,6.200399996455008 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/31,8.742050000119999 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/30,3.205219230769229 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/23,4.627966792307683 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/07/22,5.7643814542849965 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/06,7.2778689435008355 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/01,3.468085601739162 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/01,5.751652270217494 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/08/31,3.933883073333328 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/08/23,4.482052299999989 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/10/03,12.021691669251664 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/28,5.977299246786665 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/10/03,3.675904599999997 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/10/02,3.4924146799999964 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/09/25,2.906003699999998 -Canachagala Lake,15510054,-74.90324778665,43.60411785262754,2023/11/03,2.622313350000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/02/06,21.909850000000016 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/02/06,21.84966666666668 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/04/03,12.506700000000002 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/04/03,12.668916666666666 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/06/06,11.403575002709982 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/06/06,11.36050000256498 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/05/29,13.05640833333332 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/05/29,13.01218333333332 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/07/08,7.076670456544999 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/07/08,7.082020456544999 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/06/22,19.10055833295081 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/06/22,18.94448333333332 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/09,3.538709099999995 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/09,3.5021681999999954 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/07/24,9.235966689834171 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/07/24,8.835625016267505 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/01,3.661152381538459 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/01,3.097978936538462 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/25,3.8084339413333232 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/08/25,3.937257613333324 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/09/02,6.856825000362505 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/09/02,6.620175000652505 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/09/26,7.392921218550835 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/09/26,4.475311375289996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/10/04,12.81583333333332 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/10/04,12.78398333333332 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/11/05,3.054219230769229 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2015/11/05,4.352517999999999 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/05,12.965085289615276 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/05,12.548866541725271 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/07,7.535856249529998 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/07,7.874475010385003 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/21,4.0935564416066645 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/21,4.067981441606665 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/29,2.8143590000000014 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/04/29,2.614804000000002 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/23,8.040179167369166 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/23,8.055841670911665 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/31,12.775825000457491 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/05/31,2.608602250000005 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/06/24,8.679558334515834 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/06/24,9.807033334515834 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/11,3.5416500015274988 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/11,3.294100006159996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/03,3.9893152857692256 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/03,3.209292630769227 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/27,3.4265878999999955 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/08/27,3.570664399999996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/09/04,3.863624999999996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/09/04,3.943049999999996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/09/28,6.86141212333333 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/09/28,8.10057121333333 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/10/06,2.444134 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/10/06,2.298022625 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/11/07,2.2587179499999976 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/11/07,2.129279349999998 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2016/12/25,21.675758333333352 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/04/24,10.866966666739156 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/04/24,10.682333333405824 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/06/11,4.22147019345488 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/06/11,4.1914201934548805 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/06/03,5.251474999999998 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/06/03,5.0205249999999975 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/07/05,2.4593908682692325 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/07/05,2.5711522432692315 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/07/29,4.483343254999988 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/07/29,4.416543254999988 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/08/06,3.6714000049999935 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/08/06,3.618246213333325 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/08/30,3.630300000144995 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/08/30,4.574817283072489 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/10/01,3.207168210144997 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/10/01,3.2149606468116656 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/09/23,5.08717819999999 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/09/23,4.789897809999991 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/10/25,4.768938689999995 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/10/25,4.939291029999995 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/12/04,4.275739529478572 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2017/12/04,7.401839021633338 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/01/05,22.64890000000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/01/29,13.431491666571668 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/01/29,13.431491666571668 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/04/11,22.30574166666668 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/04/11,22.26459166666668 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/03/26,21.34328583328585 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/05/05,3.594271203333327 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/05/05,2.84701675 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/05/29,15.796533351733329 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/05/29,14.885200027600002 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/06/30,21.8170250002375 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/06/30,22.146483333570835 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/07/08,4.420434099999991 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/07/08,4.39316819999999 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/06/22,10.820808335870824 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/06/22,10.720975000237488 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/08/09,3.92641667333333 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/08/09,3.4500636400474973 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/08/25,4.516451019999991 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/08/25,4.598156919999992 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/12/07,22.407050000000005 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2018/12/07,22.373925000000007 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/02/09,22.37892500000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/05/08,2.794799000000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/05/08,2.7760240000000014 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/04/22,2.4167090000000018 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/04/22,2.184965750000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/06/01,11.06434791637667 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/06/01,10.009108335160835 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/06/09,3.260383440769226 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/06/09,3.238076640769226 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/03,9.382265669592142 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/03,9.03384067200464 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/11,17.70963333351834 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/08/04,3.246136372971663 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/08/04,2.9998909262324984 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/27,6.730750000382499 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/07/27,5.280751516929161 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/05,3.867413679999992 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/05,3.846813679999993 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/21,8.29407273 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/21,8.29407273 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/29,10.880062500309991 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2019/09/29,10.831312500309991 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/02/20,21.75304166666668 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/02/20,21.75304166666668 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/02,10.658416682766658 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/02,17.390991735666685 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/10,4.254300929999996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/10,4.160356830000003 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/26,6.565850000525002 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/05/26,5.63685000048 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/07/05,6.974665157051666 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/07/05,6.413104550384998 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/08/06,3.915845454999994 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/08/06,4.162445454999993 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/09,3.403850024999997 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/09,3.3482212383333296 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/01,11.902377250167484 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/01,10.59658333333334 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/11/10,6.39883106833333 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/11/10,5.427609099999995 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/25,8.309831241449999 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2020/10/25,9.4260499976925 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/01/29,22.76551666666667 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/01/29,22.76551666666667 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/03/02,22.47810000000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/03/02,22.47810000000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/04/03,16.689416707804174 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/04/03,16.67382504573751 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/05/29,3.804625009999998 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/05/29,3.839550009999999 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/07/24,16.58793333309581 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/07/24,16.29817499976248 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/09/10,15.280349999984995 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/09/10,18.150912499327504 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/08/25,8.118983334468332 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/08/25,8.401008334468335 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/09/26,7.650541671741663 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/09/26,5.192245839633333 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/10/28,6.934317439109169 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/10/28,6.762152275119997 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/05,3.6746128461538494 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/05,3.101371115384614 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/12/07,3.009800000000007 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/12/07,2.7626295000000045 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/24,2.5468108500000013 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/24,2.5477063750000006 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/21,5.212043570062494 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/11/21,5.903868570062488 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/01/08,21.848400000000016 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/12/23,15.682391666571656 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2021/12/23,15.919358333310822 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/04/06,2.656227250000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/04/06,2.9575734633333357 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/08,3.4655322349999977 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/08,3.4464202249999967 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/04/30,3.466901377999994 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/04/30,3.4238763779999943 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/31,16.475641668489153 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/31,16.70429166848915 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/24,3.066425000000004 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/05/24,3.559675000000002 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/07/03,4.460925000000003 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/07/03,4.711400000047502 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/06/25,4.500750000217492 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/06/25,4.308425000362494 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/07,15.345570834220837 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/07,13.249437501660008 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/10,2.264160606739168 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/10,2.434062881739168 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/24,3.557206086666664 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/24,3.231771154999998 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/28,3.286179375000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/08/28,3.1383982875 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/29,2.7470817500000044 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/29,3.199029500120004 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/21,5.739300000145002 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/09/21,4.972225000240004 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/10/31,6.493549994090012 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/10/31,6.009699994735009 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/11/08,2.135583949999996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/11/08,2.149083949999996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/12/10,2.8633134000000013 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/12/10,2.4154134000000016 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/12/02,3.521102250000006 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/12/02,3.477425000000007 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/11/24,5.732375000072498 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2022/11/24,2.5028022500475005 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/02/04,22.23439166666668 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/04/09,14.895389587858332 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/04/09,14.781370837858336 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/04/01,14.498612499905008 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/04/01,10.76186666657166 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/09,9.31216458683085 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/31,3.066340146811665 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/31,3.0641992367391646 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/26,3.5618091000724923 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/06/04,10.186621599229165 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/06/04,10.824216669879156 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/27,19.016300000047494 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/05/27,17.606125000072502 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/06/22,3.144902270144996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/06/22,3.178852270144996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/06,4.337650000409995 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/06,4.611796530914218 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/10,21.30641666666664 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/10,18.06376666666665 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/05,3.2793059239424944 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/30,3.626106899999994 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/30,2.7628173125000006 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/22,6.400175000142499 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/07/22,5.095375000047504 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/06,6.671747729999998 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/06,6.778847729999998 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/01,3.1108090903625 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/08,4.354444230769223 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/31,3.0712635 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/31,3.0424635 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/23,4.528711349999996 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/08/23,5.640252249999995 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/10/03,13.242516666859178 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/10/03,18.10222501619501 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/28,7.923047915301685 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/09/28,6.146570826638348 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/10/02,2.728881780000001 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/10/02,2.9980422399999984 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/11/03,3.4651816199999974 -Soft Maple Reservoir,15511872,-75.21423887426383,43.91572434457712,2023/11/03,3.4659376449999955 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/02/06,21.750616666666684 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/02/06,21.750616666666684 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/02/23,22.404625000000006 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/02/23,22.404625000000006 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/04/28,9.839452286547488 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/06,3.2564363699999985 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/04/28,9.839452286547488 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/06,3.2564363699999985 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/06/06,7.452778333045837 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/29,4.526425000120008 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/22,3.960604500000005 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/06/06,7.452778333045837 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/29,4.526425000120008 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/05/22,3.960604500000005 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/07/08,20.82704583237585 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/06/22,7.706395296731659 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/07/08,20.82704583237585 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/06/22,7.706395296731659 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/09,2.881138970100733 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/02,22.38777500014 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/09,2.881138970100733 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/02,22.38777500014 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/03,6.285664582593337 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/25,3.0464234883333305 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/11,2.272890250000001 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/02,3.1238250000000063 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/26,3.8613514319597058 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/03,6.285664582593337 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/25,3.0464234883333305 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/11,2.272890250000001 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/02,3.1238250000000063 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/08/26,3.8613514319597058 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/26,4.482342049932501 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/27,3.19637804326923 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/26,4.482342049932501 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/09/27,3.19637804326923 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/05,2.40806115 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/05,2.40806115 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/29,10.005291559047608 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/22,3.5384799384699988 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/12/07,3.5894976586538467 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/30,2.661281750000003 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/29,10.005291559047608 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/22,3.5384799384699988 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/12/07,3.5894976586538467 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2015/11/30,2.661281750000003 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/10,22.37892500000001 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/02,9.453106773846152 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/10,22.37892500000001 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/02,9.453106773846152 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/26,13.286466666476674 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/02/26,13.286466666476674 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/05,7.710647912881663 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/05,7.710647912881663 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/30,13.219556307995004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/21,13.776308338958344 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/08,4.030550000000004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/29,3.869480303333329 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/30,13.219556307995004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/21,13.776308338958344 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/08,4.030550000000004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/04/29,3.869480303333329 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/23,4.152925767940008 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/31,3.725029173424165 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/23,4.152925767940008 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/05/31,3.725029173424165 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/03,16.67015833311832 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/06/24,12.823883333645838 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/02,5.533437888711663 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/06/25,4.330141119230765 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/03,16.67015833311832 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/06/24,12.823883333645838 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/02,5.533437888711663 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/06/25,4.330141119230765 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/11,8.57082502686 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/04,4.832297730772499 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/26,4.284900514674408 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/03,3.3714545000000014 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/11,8.57082502686 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/04,4.832297730772499 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/07/26,4.284900514674408 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/03,3.3714545000000014 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/05,3.611940156666659 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/27,7.575758333448335 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/04,3.7421954899999976 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/28,3.4600500003849937 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/05,3.611940156666659 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/27,7.575758333448335 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/04,3.7421954899999976 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/08/28,3.4600500003849937 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/07,4.047570464999996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/21,2.7759060616666646 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/06,2.328574786538459 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/29,3.397361505769224 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/07,4.047570464999996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/21,2.7759060616666646 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/06,2.328574786538459 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/09/29,3.397361505769224 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/08,3.9168295602899943 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/23,8.461705298405827 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/07,2.929385543269229 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/08,3.9168295602899943 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/10/23,8.461705298405827 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/07,2.929385543269229 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/10,9.39827437022026 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/09,9.06248334198082 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/23,4.62854982 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/10,9.39827437022026 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/09,9.06248334198082 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/11/23,4.62854982 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/26,24.44116666666665 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2016/12/26,24.44116666666665 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/02/04,13.351058332855832 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/02/04,13.351058332855832 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/02/19,20.596072919156697 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/03/08,14.980410801729994 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/02/19,20.596072919156697 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/03/08,14.980410801729994 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/08,10.830516666666677 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/03/23,20.95038333314336 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/09,13.872174999952495 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/08,10.830516666666677 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/03/23,20.95038333314336 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/09,13.872174999952495 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/24,4.427598496136667 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/04/24,4.427598496136667 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/11,20.137625000380023 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/03,6.3712833334783285 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/11,20.137625000380023 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/03,6.3712833334783285 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/07/05,6.089527250145002 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/28,3.4302317500000044 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/07/05,6.089527250145002 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/06/28,3.4302317500000044 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/07,12.890200000617504 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/07/30,2.7920102807692317 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/07,12.890200000617504 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/07/30,2.7920102807692317 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/30,3.609462881666663 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/23,12.025191365425831 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/07,3.391950000000006 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/30,3.609462881666663 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/08/23,12.025191365425831 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/07,3.391950000000006 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/10,9.049901496666664 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/01,5.330605952380945 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/24,2.982883182999998 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/02,2.4398289057692293 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/23,3.2789421999999977 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/10,9.049901496666664 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/01,5.330605952380945 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/24,2.982883182999998 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/02,2.4398289057692293 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/09/23,3.2789421999999977 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/11/11,5.50533702571428 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/11/10,2.3493198249999985 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/25,2.2405361000000013 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/11/11,5.50533702571428 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/11/10,2.3493198249999985 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/10/25,2.2405361000000013 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2017/12/04,7.894006909300242 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/01/06,21.675758333333352 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/03/26,20.789133333238357 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/05/05,6.969200002300003 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/04/28,18.114491674089148 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/05/29,8.98434697333333 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/05/30,2.731227250000002 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/07/09,8.201500000072507 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/06/30,9.913981659476653 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/07/08,3.663852299999992 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/06/22,12.598333333333322 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/08/10,3.7627499999999903 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/08/09,5.877250000120008 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/09/03,2.7187772500000063 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/08/25,4.326007578960834 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/10/05,2.7611409000000013 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/11/22,8.795083344833332 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2018/12/24,9.950691667651665 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/02/02,22.26459166666668 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/02/10,21.525883333333358 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/01/25,11.820625000737504 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/03/06,11.061999998925009 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/03/05,11.01204999969001 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/02/26,21.75304166666668 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/05/09,6.64374999409001 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/04/23,10.68817628292999 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/05/08,3.3128795 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/04/22,3.568444682307688 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/06/01,9.532683336020826 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/06/09,5.540376524590827 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/07/03,6.666470833718336 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/06/26,3.3434431999999945 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/07/28,3.4404083375366623 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/08/05,3.4517606730769232 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/07/27,3.0905387000724964 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/05,3.5945606066666573 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/08/29,3.260187881739163 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/06,2.8041106625 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/30,3.6706940531265486 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/21,8.343897729999998 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/10/08,3.721484099999996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/29,3.464240909999996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/09/22,14.380683333643328 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/11/08,9.460152500552518 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/11/01,7.9896250146425025 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/11/09,2.339540475 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/10/24,4.407225000217494 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/12/11,15.390583335633336 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2019/11/25,3.1897750000000062 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/03/08,20.96963333319086 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/02/21,22.120274999785007 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/02/29,21.981250000000014 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/02/20,21.848774999737515 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/02,10.647816684946669 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/04/25,7.328758347253334 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/10,4.276054172856664 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/03,4.1091182199999965 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/27,5.864809090382505 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/06/04,3.4283393984783377 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/05/26,3.597823204999996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/07/05,13.682474999759991 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/06/28,19.38348560883334 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/07/06,4.819831361538456 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/06,10.852606253439992 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/07/30,3.73863106666666 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/07,14.600275000072484 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/31,3.1261786499999946 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/22,12.155550000427509 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/08/23,4.001759099999992 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/10/09,4.179831220333326 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/09/23,17.792189597133348 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/10/10,11.556900000072504 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/10/01,2.516041625 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/11/10,8.628556831666662 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/11/03,4.560997725119998 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/10/25,7.999957583566672 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2020/12/29,21.75304166666668 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/03/02,22.34590833333334 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/04/04,9.746833332760843 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/05/06,3.568365910000004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/06/06,12.637883333238324 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/06/07,5.660484090120004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/06/23,2.751174999999999 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/08/02,7.581697733000009 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/07/24,21.51775 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/08/10,8.023019233714228 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/07/25,4.528345407179479 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/09/03,8.843899996622499 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/08/25,17.427250036992497 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/09/11,3.542631899999995 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/08/26,4.455240910119994 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/09/26,7.9709499887450015 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/11/06,8.486045435072487 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/10/28,7.728815901666658 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/11/09,2.986673463333335 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/10/29,2.434847218269232 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/11/24,2.493673480769229 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/11/21,5.1223727 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2021/12/23,17.77100000407753 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/01/25,22.68484166666667 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/03/30,11.555599999985 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/09,2.8874750149999984 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/09,2.0909404150000004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/08,5.873850003332491 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/01,2.935151588333335 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/04/30,6.305108338930824 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/04/23,10.137125000529991 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/06/10,5.069934496923066 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/05/24,13.43499166662166 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/07/04,11.244199997344994 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/06/29,15.490449999784996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/07/11,9.79529167593915 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/07/04,14.858083333383323 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/07/03,8.681627275880004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/06/26,2.6817613499999995 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/06/25,2.5104362000000027 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/08/05,4.829989350512811 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/09/10,7.7143750004825025 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/08/29,3.496154499999999 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/08/28,2.7976000000475016 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/09,3.727182583500832 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/08,2.830925874999999 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/09/29,2.461545330769229 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/09/22,3.0113522500000034 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/09/21,3.150593674999996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/31,19.80052083399835 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/11/09,3.282921288461539 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/11/08,2.2235121423076887 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/31,21.177658333113342 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/10/24,23.55130833333333 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/12/10,2.3010428500000004 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/12/02,13.605441666636658 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/11/24,3.4442792115384617 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2022/12/26,12.136699999984998 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/02/04,21.961558333333347 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/02/20,19.843006250437508 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/10,11.488408333238326 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/09,14.08581666661916 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/02,13.768499999905002 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/01,11.435591666571662 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/03/24,21.592858333238347 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/09,8.53653749954752 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/11,4.779325002419997 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/04/26,3.0760750000000026 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/31,7.209420451037505 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/26,3.622703033405829 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/06/05,6.160075000647493 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/06/04,4.573643565252497 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/28,15.37698333352584 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/05/27,3.2821500010874973 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/06/22,4.692049097999996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/07,4.170259099999995 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/06,4.257835180769223 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/06/21,6.078588288076926 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/08/05,2.884720455289997 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/31,2.738811366015 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/30,4.792292806921664 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/23,4.503968199999991 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/07/22,8.745588258954168 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/06,7.817382580072497 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/01,3.3664348433333275 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/01,5.058109089999995 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/08/31,3.713050773333326 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/08/23,4.801018199999994 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/28,9.628536111396098 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/10/03,3.4012413999999977 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/10/02,2.759747600000003 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/09/25,4.037274094999995 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/11/11,20.270187500384992 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/11/03,3.354208354999996 -Spy Lake,22295040,-74.51826447543134,43.39632394758173,2023/11/27,3.447859000047499 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/02/07,22.539900000000006 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/02/07,22.539900000000006 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/02/07,22.539900000000006 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/02/07,22.539900000000006 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/06,11.774075000457508 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/06,7.305075000337503 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/06,11.774075000457508 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/06,7.305075000337503 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/22,3.943750000000007 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/22,2.5712272500474995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/22,3.943750000000007 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/05/22,2.5712272500474995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/06/23,3.2704272500475 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/06/23,7.621050000094995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/06/23,3.2704272500475 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/06/23,7.621050000094995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/02,4.912087504592499 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/02,5.423595837315833 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/02,4.912087504592499 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/02,5.423595837315833 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/03,8.549599992267503 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/03,6.604712485337509 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/11,3.5092500000000086 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/11,4.097650000312491 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/26,3.885723216346154 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/26,2.502890500000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/03,8.549599992267503 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/03,6.604712485337509 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/11,3.5092500000000086 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/11,4.097650000312491 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/26,3.885723216346154 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/08/26,2.502890500000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/10/05,9.6489875097025 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/10/05,10.05547083965834 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/27,2.49713101826923 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/27,2.5456123432692306 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/10/05,9.6489875097025 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/10/05,10.05547083965834 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/27,2.49713101826923 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/09/27,2.5456123432692306 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/11/22,10.14374912238094 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/11/22,5.257678827714278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/11/22,10.14374912238094 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2015/11/22,5.257678827714278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/10,22.09322500000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/10,22.09322500000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/26,11.704174194979164 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/26,11.52147419732666 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/05,3.1495250000000032 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/26,11.704174194979164 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/02/26,11.52147419732666 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/05,3.1495250000000032 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/29,5.916235631666665 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/29,5.152298508405827 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/29,5.916235631666665 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/03/29,5.152298508405827 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/04/30,7.020640159039164 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/04/30,6.986033339039166 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/08,4.599757830841724 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/04/30,7.020640159039164 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/04/30,6.986033339039166 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/08,4.599757830841724 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/09,5.1059750001924895 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/24,11.141975000189989 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/24,7.733000000144995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/09,5.1059750001924895 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/24,11.141975000189989 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/05/24,7.733000000144995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/03,6.042006251729998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/03,5.327689585398336 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/11,16.010774999999978 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/25,2.4448727400000023 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/25,2.466410325000004 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/03,6.042006251729998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/03,5.327689585398336 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/11,16.010774999999978 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/25,2.4448727400000023 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/06/25,2.466410325000004 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/04,4.24397045499999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/04,4.18767045499999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/27,2.7105511800000017 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/27,3.0564769288461537 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/04,4.24397045499999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/04,4.18767045499999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/27,2.7105511800000017 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/07/27,3.0564769288461537 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/05,3.4385499999999927 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/05,3.5038249999999924 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/28,3.0565220307692265 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/28,4.376190334615382 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/05,3.4385499999999927 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/05,3.5038249999999924 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/28,3.0565220307692265 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/08/28,4.376190334615382 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/07,3.958447883666663 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/07,3.123359095 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/21,2.948388644999997 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/21,3.228949251666661 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/29,4.280938625144993 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/29,4.003584100072495 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/07,3.958447883666663 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/07,3.123359095 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/21,2.948388644999997 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/21,3.228949251666661 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/29,4.280938625144993 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/09/29,4.003584100072495 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/11/08,4.732758362714278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/11/08,4.544817452714279 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/23,4.876446100714277 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/23,4.801163510714278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/11/08,4.732758362714278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/11/08,4.544817452714279 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/23,4.876446100714277 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/10/23,4.801163510714278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/10,6.182825000370005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/10,6.393624998865007 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/10,6.182825000370005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/10,6.393624998865007 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/26,22.76205 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/26,22.76205 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/26,22.76205 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2016/12/26,22.76205 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/01/27,10.705508333118338 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/04,12.425250000384995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/04,13.218100000384998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/01/27,10.705508333118338 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/04,12.425250000384995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/04,13.218100000384998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/28,13.847625000952512 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/28,14.044925000752514 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/03/08,4.412624999999999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/03/08,13.905146978021971 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/20,20.365858333238364 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/28,13.847625000952512 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/28,14.044925000752514 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/03/08,4.412624999999999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/03/08,13.905146978021971 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/02/20,20.365858333238364 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/04/09,14.479383333333349 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/04/09,14.198062501150009 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/04/09,14.479383333333349 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/04/09,14.198062501150009 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/03,4.464583053365241 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/03,5.29663897071774 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/11,4.135266819999997 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/11,3.315911829999996 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/03,4.464583053365241 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/03,5.29663897071774 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/11,4.135266819999997 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/05/11,3.315911829999996 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/07,2.549738257074166 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/07,2.3461882571216663 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/07/30,2.321240740000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/07/30,2.1886201 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/07,2.549738257074166 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/07,2.3461882571216663 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/07/30,2.321240740000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/07/30,2.1886201 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/23,5.191737876859164 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/23,3.944508335753336 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/31,4.413897754807691 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/31,2.877145319999998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/23,5.191737876859164 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/23,3.944508335753336 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/31,4.413897754807691 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/08/31,2.877145319999998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/10,4.302293835714278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/10,2.8378453313333325 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/09/24,2.806844542999999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/09/24,2.713523329666666 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/02,2.7667463307692306 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/02,3.030789511126374 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/10,4.302293835714278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/10,2.8378453313333325 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/09/24,2.806844542999999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/09/24,2.713523329666666 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/02,2.7667463307692306 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/10/02,3.030789511126374 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/11,5.61683794771428 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/11,4.943500059999993 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/11,5.61683794771428 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/11,4.943500059999993 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2017/11/27,5.513074998020005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/04/28,4.045956820699994 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/04/28,4.993425000192491 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/05/30,4.698486753110832 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/05/30,4.824875000789996 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/07/09,14.396233349528345 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/07/09,14.183058351828343 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/07/01,3.8733613999999927 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/07/01,4.130036211538455 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/08/10,3.311790099999994 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/08/10,3.071451399999997 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/09/03,12.136525002699988 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/09/27,16.192483334318315 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/09/27,14.159558335518318 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/10/05,2.931739518269231 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/10/05,2.9976437548076893 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/12/08,2.284767995000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/12/08,2.54939029 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/11/22,5.044436250000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2018/11/22,2.310422500000002 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/01/01,12.397224173891662 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/01/01,10.834288205341936 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/01/25,21.95325833333335 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/01/25,21.77565833333335 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/02/26,20.521608333238365 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/04/23,3.736093963333332 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/04/23,3.498206849999998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/06/10,22.043987499617472 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/06/10,13.572623332665826 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/06/26,3.3451204399999943 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/06/26,3.4689045399999943 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/07/28,5.039850001882498 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/07/28,11.362408341173332 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/08/05,2.344343917307693 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/08/05,2.594719429395605 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/08/29,3.807524246666656 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/08/29,3.757043189999991 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/09/06,3.072495269999999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/09/06,2.6259680000000016 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/10/08,2.7529113899999995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/10/08,2.282152200000002 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/01,10.325527319300008 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/01,9.104700041639996 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/09,19.06855000004749 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/09,6.950600000000005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/10/24,2.782498000000002 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/10/24,3.301430475 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/12/03,9.650683196106934 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/12/03,12.565659333941936 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/12/11,2.580828268269229 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/12/11,3.127673091346154 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/25,2.4530982923076907 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2019/11/25,3.4092741298076947 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/02/29,22.69252500000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/02/29,22.479058333333345 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/04/01,22.87150833319085 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/04/01,15.612000000025004 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/04/25,3.036421218333329 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/04/25,2.9264393983333306 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/05/03,5.872325000000002 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/05/03,2.6758068200000014 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/05/27,2.9278621207249955 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/05/27,3.606793940579995 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/07/06,3.035132269999999 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/07/06,2.508233945000004 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/07/30,3.6834310668116577 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/07/30,3.490791678405825 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/09/08,3.9349250004099936 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/09/08,3.816250000312491 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/08/23,2.912370549999998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/08/23,3.2198649307692278 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/10/10,17.138566666404184 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/10/10,3.1257530335258306 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/09/24,11.23151060731917 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/09/24,4.049800000434996 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/11/03,4.794362499855008 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/11/03,3.254033332938336 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/12/29,13.24158333333332 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2020/12/29,13.715758335618313 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/01/22,24.02516666666665 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/03/11,13.141616666571672 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/03/11,21.34328583328585 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/02/23,10.082524999785011 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/02/23,10.082524999785011 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/03/27,9.80061588640582 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/03/27,9.424863800684994 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/04/04,11.342225000095 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/04/04,8.57520833453082 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/05/06,4.444250000000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/05/06,6.272600000000004 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/06/07,3.261593966666664 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/06/07,3.275320499999996 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/06/23,3.3933022500000054 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/06/23,18.13759166666665 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/02,9.65260416628417 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/02,9.59872916677917 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/10,2.628052250000005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/10,3.5238772500000044 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/07/25,4.0128328657692265 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/07/25,5.84322014974358 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/09/11,13.292124999784985 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/09/11,13.820649999999976 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/26,3.8031339999999982 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/08/26,4.670755580769223 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/06,4.86636732071428 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/06,9.418307468014277 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/09,2.722995150000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/09,3.0164712 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/11/04,16.608800000169996 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/10/29,2.8151190182692303 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/10/29,3.233039774038461 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2021/12/24,12.158108333333336 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/02/02,21.88613333333335 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/02/02,21.88613333333335 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/01/25,22.438508333333345 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/03/30,8.123675416224188 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/03/30,8.041792082890852 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/03/22,21.108409090617464 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/03/22,8.970995113076919 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/09,4.159332434666663 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/09,5.045325000000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/09,4.699334100000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/01,3.344135293333331 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/01,2.513378135000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/26,8.226050000785017 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/25,12.322583333380829 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/05/25,11.29815000004749 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/07/11,3.1983904641025624 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/06/29,2.8714399979999974 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/06/26,3.814007578598336 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/06/26,4.277605000072493 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/07/28,3.614898898717947 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/05,2.854575000000005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/05,2.758775000000004 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/07/28,2.953454500000002 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/07/28,2.818152250047502 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/31,12.044875000645002 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/29,2.833125000000005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/08/29,3.214575000000005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/10/08,2.263804349999998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/10/08,2.796079754807691 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/09/30,13.337049999999982 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/09/30,13.446374999999982 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/09/22,4.441127300289993 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/09/22,3.921334875144997 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/11/09,2.35832237403846 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/11/09,3.084117709203296 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/12/27,3.1208750000000065 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2022/12/27,2.792002250000006 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/04/10,10.529833333238328 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/04/26,4.2163786549999935 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/04/26,3.242392279999996 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/05/26,2.603577874956668 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/05/26,2.394731676550835 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/05,17.117679167164166 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/05,21.799254167071663 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/05/28,3.9867750008699945 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/05/28,3.6729090908449966 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/04,7.117533956659164 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/07,4.468783336859157 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/07,4.146142426859158 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/29,2.911275000000006 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/21,3.4332500000000024 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/06/21,3.466800000000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/08/05,6.425699994305011 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/08/05,6.23012499430501 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/31,2.1331250008625005 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/23,4.535031719999997 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/07/23,5.344754439999998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/01,7.690610606666675 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/01,7.14726060666667 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/09,16.55170000017 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/09,15.602500000199989 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/01,3.5088628999999965 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/01,3.795332880769224 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/28,13.074166756214163 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/28,9.19335230276749 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/10/03,4.165890964999994 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/10/03,4.144066591666661 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/25,3.093649824999998 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/09/25,3.482911250000001 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/11/28,3.027450000000006 -Pharoah Lake,22303835,-73.63371104709627,43.80623577783925,2023/11/28,5.385675000434995 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/02/07,23.465666666666657 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/01/22,20.191522919156693 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/02/07,23.465666666666657 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/01/22,20.191522919156693 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/02/23,22.34590833333334 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/02/23,22.34590833333334 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/04/04,11.25330833311834 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/04/04,11.25330833311834 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/05/06,14.14450002300001 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/05/06,14.14450002300001 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/06/23,15.356541694339182 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/06/23,15.356541694339182 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/03,7.359749990650009 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/11,3.83427305032051 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/08/26,4.470957429487176 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/03,7.359749990650009 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/11,3.83427305032051 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/08/26,4.470957429487176 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/10/05,7.565400004337497 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/27,3.431352235576924 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/10/05,7.565400004337497 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/09/27,3.431352235576924 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/11/22,3.4136690770725 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2015/11/22,3.4136690770725 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/02/02,2.726552250000001 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/02/02,2.726552250000001 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/02/26,10.127574999762496 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/02/26,10.127574999762496 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/03/29,5.182140915144996 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/03/29,5.182140915144996 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/04/30,7.428367438333327 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/04/30,7.428367438333327 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/05/24,10.552962500237497 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/05/24,10.552962500237497 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/03,4.156800390120004 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/11,14.07542499999998 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/06/25,4.492344242307686 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/03,4.156800390120004 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/11,14.07542499999998 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/06/25,4.492344242307686 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/08/04,2.840609089999997 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/27,3.1955567500000024 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/08/04,2.840609089999997 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/07/27,3.1955567500000024 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/05,3.392590909999994 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/08/28,3.897444230961722 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/05,3.392590909999994 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/08/28,3.897444230961722 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/10/07,3.649933485333329 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/21,3.106240156666664 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/29,2.800187750000002 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/10/07,3.649933485333329 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/21,3.106240156666664 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/09/29,2.800187750000002 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/11/08,5.787181094380945 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/10/23,5.284371218333331 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/11/08,5.787181094380945 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/10/23,5.284371218333331 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/12/10,6.827374992800014 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/12/10,6.827374992800014 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/01/11,11.55706666657166 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/12/26,23.716533333333324 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/01/11,11.55706666657166 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2016/12/26,23.716533333333324 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/03/08,11.723761837252733 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/03/08,11.723761837252733 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/04/09,16.01203958366583 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/04/09,16.01203958366583 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/05/03,4.642528039544176 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/05/11,4.400425000000002 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/05/03,4.642528039544176 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/05/11,4.400425000000002 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/06/28,2.647702250000003 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/06/28,2.647702250000003 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/07,19.32078333345332 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/07/30,2.1606018750000016 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/07,19.32078333345332 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/07/30,2.1606018750000016 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/09/08,8.32282499465 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/23,6.434277774420245 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/31,11.841499999569988 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/09/08,8.32282499465 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/23,6.434277774420245 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/08/31,11.841499999569988 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/10/10,11.590891668221678 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/09/24,6.409027270000006 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/10/02,3.0257075048076905 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/10/10,11.590891668221678 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/09/24,6.409027270000006 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/10/02,3.0257075048076905 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/11/11,4.395003816666661 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2017/11/11,4.395003816666661 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/01/06,21.88613333333335 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/04/28,3.015275000000005 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/05/30,6.203254185646668 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/07/09,15.306708356380843 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/07/01,2.9539250000475006 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/08/10,2.512343189999999 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/08/02,14.340600000279997 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/09/03,3.109477250000006 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/09/27,4.3180500030875 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/10/05,3.475741834615381 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/12/08,5.808449997835009 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2018/11/22,2.818968 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/01/25,21.38388333328585 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/02/26,20.38688333323837 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/04/23,7.505072751666663 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/06/10,11.974699996385002 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/06/26,3.344374999999995 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/07/28,7.239441676464165 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/08/05,3.029754979807692 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/08/29,14.92665009407 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/09/06,3.906218330769225 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/10/08,14.60079166666665 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/11/09,6.8477621291141615 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/10/24,8.176735457999994 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/12/03,9.966924866808604 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/12/11,2.7829445240384603 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2019/11/25,3.1195442307692294 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/02/05,12.059531249904996 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/03/08,14.210891666619164 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/02/29,10.666966666666676 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/04/01,10.274783335890838 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/04/25,6.306021976811667 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/05/03,4.518004169809164 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/05/27,3.234887120652496 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/07/06,3.519387128333327 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/07/30,10.912412563802503 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/08/07,4.310300001134999 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/08/31,3.1706181999999945 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/09/08,4.4343500015224935 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/08/23,2.9882466307692277 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/10/10,13.122925002447497 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/09/24,4.133637504114996 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2020/12/29,4.340120316346155 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/03/11,9.537100000257505 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/02/23,22.957816666666663 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/03/27,8.680570886383338 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/05/06,2.529950250000004 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/06/07,7.022083340400847 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/06/23,2.8381272500000057 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/08/02,2.745847721522498 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/08/10,2.735477250047498 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/09/11,7.494304500000003 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/08/26,4.427334100072492 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/11/06,14.40102736830112 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/11/09,14.010858333595811 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/11/04,4.85027173205128 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2021/10/29,3.753851897435892 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/02/02,21.268550000000022 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/02/26,22.26459166666668 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/03/22,7.959227094668332 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/05/09,3.0829271413333306 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/05/09,2.672788015000001 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/05/01,2.6193043400000016 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/04/23,5.0256075784533305 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/06/02,2.7622022500000067 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/05/25,5.2067250010349975 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/06/29,2.453287876666665 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/06/26,4.823800002395002 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/07/28,3.5739923705128183 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/08/05,4.420024999999993 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/08/31,2.8228794456410258 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/10/08,2.8380492749999977 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/09/22,9.120741667051664 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/10/26,5.651324998650006 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/11/09,3.3039025480769237 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2022/12/27,5.094609100964991 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/02/21,9.21874166567918 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/04/10,15.531995834208356 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/04/26,3.434752250047499 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/05/26,8.573537123525831 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/06/05,7.121733340420827 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/05/28,8.965100001169994 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/07/04,3.487345219871792 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/07/07,21.453937500035007 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/08/05,12.009166724469166 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/07/31,2.8379189469574966 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/07/23,4.397436359999994 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/09/01,4.170388630362496 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/08/22,10.546068752540007 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/09/09,3.1195295000000014 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/09/01,5.821939373333329 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/10/03,2.795206700000004 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/09/25,3.1640213669999957 -Brant Lake,22303899,-73.7026798028283,43.716200207693376,2023/10/27,3.5328651923076886 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/06,21.794191666666684 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/06,21.88855833333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/06,21.794191666666684 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/06,21.88855833333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/03/11,13.683583333190832 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/23,22.47810000000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/22,12.847366666404165 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/22,12.913666666404165 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/03/11,13.683583333190832 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/23,22.47810000000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/22,12.847366666404165 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/02/22,12.913666666404165 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/04/28,4.204774999700004 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/06,10.825450002299991 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/04/28,4.204774999700004 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/06,10.825450002299991 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/06/06,5.66971666248417 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/06/06,5.882049993427503 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/30,7.914662491815014 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/29,9.415291667721654 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/29,10.59434166776916 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/22,14.881500000094992 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/06/06,5.66971666248417 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/06/06,5.882049993427503 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/30,7.914662491815014 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/29,9.415291667721654 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/29,10.59434166776916 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/05/22,14.881500000094992 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/08,5.34577918007917 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/08,5.62961326719917 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/08,5.34577918007917 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/08,5.62961326719917 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/09,12.599624999999996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/09,18.54089863430113 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/02,22.0255999982 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/24,22.14766666580666 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/24,13.677499997074996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/10,2.3162249999999984 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/09,12.599624999999996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/09,18.54089863430113 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/02,22.0255999982 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/24,22.14766666580666 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/07/24,13.677499997074996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/10,2.3162249999999984 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/03,10.469500000277533 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/25,18.678158333333325 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/25,18.62711666666665 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/11,8.25313035333333 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/02,11.329616666666666 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/02,8.295150000120001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/26,3.047575000000009 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/03,10.469500000277533 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/25,18.678158333333325 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/25,18.62711666666665 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/11,8.25313035333333 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/02,11.329616666666666 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/02,8.295150000120001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/08/26,3.047575000000009 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/05,11.956565910000004 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/26,22.418052273333355 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/26,24.416150000000027 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/04,8.903908337933329 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/04,8.634258337933328 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/27,6.565811306666671 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/05,11.956565910000004 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/26,22.418052273333355 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/26,24.416150000000027 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/04,8.903908337933329 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/10/04,8.634258337933328 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/09/27,6.565811306666671 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/05,2.249218942307689 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/05,2.2746741428571404 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/05,2.249218942307689 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/05,2.2746741428571404 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/08,7.578558332443347 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/29,16.151927363696107 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/29,10.825119447029431 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/07,8.804000001467486 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/07,12.99180000033749 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/30,2.4866272500000024 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/08,7.578558332443347 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/29,16.151927363696107 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/29,10.825119447029431 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/07,8.804000001467486 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/12/07,12.99180000033749 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2015/11/30,2.4866272500000024 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/01/08,22.013858333333346 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/01/08,22.013858333333346 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/10,11.061749999785 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/02,11.826900000152504 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/10,11.061749999785 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/02,11.826900000152504 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/26,22.30574166666668 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/02/26,22.30574166666668 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/05,13.163332085675826 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/05,12.424006548389038 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/05,13.163332085675826 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/05,12.424006548389038 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/07,15.197693751900024 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/07,9.72941250409502 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/30,20.89275078549001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/21,16.818625052900014 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/21,17.280725048300006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/08,2.8891000000000053 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/29,10.769550048299996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/29,10.943150032199997 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/22,3.6310795000000025 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/07,15.197693751900024 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/07,9.72941250409502 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/30,20.89275078549001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/21,16.818625052900014 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/21,17.280725048300006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/08,2.8891000000000053 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/29,10.769550048299996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/29,10.943150032199997 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/04/22,3.6310795000000025 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/23,9.782098097613346 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/23,9.761764764232517 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/31,3.135362123333329 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/31,3.1816121233333297 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/23,9.782098097613346 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/23,9.761764764232517 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/31,3.135362123333329 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/05/31,3.1816121233333297 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/03,8.383137506525008 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/24,20.562141666809183 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/24,20.88461666680918 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/11,13.034791667076664 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/02,4.61831062083833 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/02,6.886536759430831 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/25,13.236599999999983 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/03,8.383137506525008 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/24,20.562141666809183 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/24,20.88461666680918 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/11,13.034791667076664 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/02,4.61831062083833 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/02,6.886536759430831 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/06/25,13.236599999999983 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/04,3.160841673333331 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/26,3.9717379016666583 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/26,3.2739227449999952 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/03,3.170674000000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/03,3.0955749999999984 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/27,5.360354480769233 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/04,3.160841673333331 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/26,3.9717379016666583 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/26,3.2739227449999952 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/03,3.170674000000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/03,3.0955749999999984 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/07/27,5.360354480769233 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/05,3.3341545599999964 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/27,6.297483335895839 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/27,6.242945460945002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/04,4.335777269999996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/04,4.318220449999997 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/28,5.320209092726661 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/05,3.3341545599999964 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/27,6.297483335895839 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/27,6.242945460945002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/04,4.335777269999996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/04,4.318220449999997 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/08/28,5.320209092726661 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/07,16.91556212730002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/28,12.140450304034156 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/28,14.860067818794166 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/21,8.031728786666658 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/06,5.364296433269228 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/06,5.352344933269229 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/29,17.57744166622166 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/07,16.91556212730002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/28,12.140450304034156 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/28,14.860067818794166 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/21,8.031728786666658 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/06,5.364296433269228 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/06,5.352344933269229 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/09/29,17.57744166622166 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/08,5.592902935714281 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/23,8.82960291571427 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/07,5.491525143269232 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/07,3.181158024038461 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/08,5.592902935714281 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/10/23,8.82960291571427 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/07,5.491525143269232 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/07,3.181158024038461 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/10,22.451158333333343 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/23,11.57054166633418 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/10,22.451158333333343 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/11/23,11.57054166633418 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/25,11.849324999857505 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/25,11.543224999810002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/25,11.849324999857505 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2016/12/25,11.543224999810002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/03,9.823583333333348 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/03,9.823583333333348 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/04,21.66638333333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/03,9.823583333333348 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/03,9.823583333333348 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/02/04,21.66638333333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/03/08,13.614279168966675 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/03/08,13.614279168966675 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/08,22.34590833333334 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/03/23,22.120274999785007 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/09,20.365858333238364 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/08,22.34590833333334 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/03/23,22.120274999785007 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/09,20.365858333238364 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/05/03,6.797281240175003 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/24,7.0875000023925 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/24,7.655287502325 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/05/03,6.797281240175003 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/24,7.0875000023925 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/04/24,7.655287502325 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/06/11,21.192233333808357 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/06/11,25.41966666695168 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/06/11,21.192233333808357 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/06/11,25.41966666695168 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/07,13.419772937894166 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/06,3.349950000000005 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/06,3.334500000000008 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/07/30,5.1974328707692266 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/07,13.419772937894166 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/06,3.349950000000005 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/06,3.334500000000008 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/07/30,5.1974328707692266 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/30,11.291678786666672 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/30,17.744000000000018 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/23,6.662387508992505 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/07,2.6852250000000053 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/07,3.083450000000006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/22,14.619533333333314 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/30,11.291678786666672 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/30,17.744000000000018 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/23,6.662387508992505 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/07,2.6852250000000053 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/07,3.083450000000006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/08/22,14.619533333333314 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/01,5.414095747435892 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/01,4.471400019999993 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/24,5.753116286666669 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/02,5.923668545576917 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/23,10.949566669039152 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/23,10.977566669039152 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/01,5.414095747435892 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/01,4.471400019999993 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/24,5.753116286666669 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/10/02,5.923668545576917 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/23,10.949566669039152 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/09/23,10.977566669039152 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/11/11,16.05772834622584 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/11/11,16.05772834622584 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/12/04,13.30584166638167 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2017/12/04,12.510533333048338 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/01/05,22.539900000000006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/01/29,10.987549999785005 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/03/26,23.594316666666654 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/05,6.781700011547494 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/05,8.169791682814159 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/04/28,12.201208335538324 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/29,5.723229162081669 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/29,6.0953791623691655 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/05/30,9.731160001632489 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/07/09,8.604968180000013 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/07/08,13.371233333333324 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/07/08,13.330333333405818 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/07/01,3.477427250000004 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/06/22,9.360200000000004 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/06/22,4.464949999999994 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/10,5.284137138333328 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/09,9.981525013800006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/09,10.405550011500006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/09/03,2.7564749999999987 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/25,2.8792522500000057 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/08/25,9.455966667859151 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/09/27,7.324595825098343 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/10/05,2.748369425000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/12/07,22.348225000000006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/12/08,21.88613333333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/11/22,21.66638333333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2018/12/23,7.388791666666675 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/02/01,13.7707749998575 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/02/01,10.663274999762509 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/03/06,22.47810000000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/03/05,21.909850000000016 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/05/09,16.989400127960003 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/04/23,5.583606825142498 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/05/08,11.507038627300007 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/05/08,7.396133356333332 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/04/22,16.758158337528346 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/04/22,15.955933337218353 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/01,10.319381255550011 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/01,10.171481253250024 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/09,5.224092809119169 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/09,5.128442809074167 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/03,6.478277086023337 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/03,9.33162709182583 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/06/26,3.8520295549999934 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/08/04,13.034154166666674 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/08/04,15.55632916628416 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/28,10.621760419384175 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/08/05,2.9310719249999995 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/27,2.989500000000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/07/27,3.4882022500000023 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/05,6.123054549999997 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/05,6.462272730000002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/08/29,11.806790937097492 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/06,9.705212420769229 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/21,18.60308636333334 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/21,18.60308636333334 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/10/08,4.708562380769224 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/29,11.470283333285822 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/29,11.448483333285823 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/09/22,12.971024999999988 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/11/08,7.567632545552502 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/11/08,7.911976301620002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/10/24,6.429675000262488 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2019/12/11,20.700656250200005 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/02/21,22.177183333333343 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/03/07,21.66638333333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/03/07,21.66638333333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/02/20,12.90195833371833 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/04/01,13.741625000147502 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/02,16.064162138333348 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/02,13.05441668833334 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/04/25,9.014932961587508 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/10,2.764975000000005 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/10,3.029375000000008 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/03,6.290038639999995 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/27,10.168979180324175 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/06/04,17.226350000034998 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/26,6.8478665246666655 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/05/26,13.34180606666667 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/06/28,11.215694166856656 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/07/06,2.3499837500000016 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/06,8.844959090000005 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/06,8.692609090000005 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/07/30,8.879581810000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/31,9.863611360000007 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/22,4.881341668489171 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/22,18.54614583542836 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/09/08,17.628349999769988 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/08/23,12.896224999984986 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/09,9.136334094999992 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/09,10.888347619047613 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/09/23,10.532749998952497 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/09/23,7.808906666666663 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/10,10.429825000217496 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/11/10,4.882950804380945 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/11/10,4.939521269380945 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/11/03,6.176249995395011 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/25,11.777600000854996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/10/25,10.181250003670012 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2020/12/29,21.75304166666668 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/01/29,10.376091666666683 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/02/06,21.88613333333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/02/06,21.66638333333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/03/02,22.348225000000006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/03/02,22.348225000000006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/04/03,22.309808333333343 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/04/03,22.30029999935501 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/05/06,2.9016090900000013 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/06/06,13.276929189101654 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/06/06,13.631254194514156 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/02,6.422924995750012 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/07/24,18.330875 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/07/24,12.823725000617507 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/10,3.7707272999999937 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/07/25,3.248875000000005 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/10,4.048584586648571 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/10,3.75001943565024 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/25,18.23475001408751 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/25,17.955041680754174 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/11,3.38805 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/08/26,12.607270850098336 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/26,15.231650000199988 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/09/26,9.818399995299997 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/06,5.53726368771428 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/10/28,5.246649297714278 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/10/28,4.8346947427142775 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/09,3.0584120650000006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/10/29,2.58530741826923 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/29,10.401666666666676 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/24,8.307224999250026 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/24,8.698568749440026 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/21,3.405121230769232 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2021/11/21,2.586820349999998 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/01/08,21.848400000000016 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/02/26,10.824516667051672 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/03/30,22.26459166666668 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/06,12.234029362173334 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/06,11.854019887310006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/03/29,21.75304166666668 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/03/29,21.75304166666668 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/09,9.768540166666662 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/09,5.517429267435896 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/08,8.841908358680827 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/08,10.441861388047498 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/01,5.251732578333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/30,8.673235006899993 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/30,9.34120167586666 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/22,3.295125000000007 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/04/22,2.822450000000002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/05/25,2.89707725 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/06/29,4.649337300434991 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/11,11.058775007019989 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/11,10.290850004719982 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/03,6.726766670369151 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/03,6.457183334615817 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/06/25,3.913634099999992 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/06/25,4.134459099999991 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/07/28,3.280134942307691 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/10,11.2858613601675 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/10,7.787818180215006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/24,3.077545804395605 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/24,3.2674148588827814 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/29,3.4245317500000003 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/28,2.911050000047502 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/08/28,2.7728522500000023 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/10/09,6.59447499883501 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/30,18.404275000184988 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/22,3.721175000000004 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/21,5.593625000095002 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/09/21,5.342625000192503 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/11/09,5.505037378388275 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/11/08,4.0377111175 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/11/08,5.221863419999995 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/10/24,24.27742499999998 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/12/10,15.172775000190011 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/12/10,14.721543749522516 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2022/12/02,22.515633333333344 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/01/11,21.67155833333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/01/11,21.67155833333335 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/02/21,10.79253166633419 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/10,14.258249999952495 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/09,14.171958333285827 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/02,13.476466666476677 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/01,15.799849999999998 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/04/01,15.733374999999992 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/09,9.544027084763336 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/11,8.848950005987486 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/11,8.901333339320821 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/31,11.439348103380835 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/26,8.562657950000006 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/05,18.256783333500824 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/04,8.471095831873338 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/04,6.841822272702504 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/28,27.59955833352332 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/27,18.61632500230001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/05/27,19.885708333333337 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/22,2.906137728072498 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/06,2.472743000000003 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/06,2.6609817500000026 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/06/21,3.290125 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/05,20.74357916726919 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/30,2.6406500000000004 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/30,3.2777000000000047 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/23,2.46658868 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/22,3.8118083376283294 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/07/22,4.146554172029164 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/06,7.618693940047502 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/06,7.8628189400475 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/01,7.729102270119998 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/01,8.98225227043001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/31,5.443749999999995 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/31,5.494374999999995 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/23,2.3431847500000016 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/08/23,2.428659000000001 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/28,8.816356248765024 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/10/03,6.036396074666668 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/10/02,3.22039423076923 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/10/02,3.208244230769229 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/09/25,4.929870479999996 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/11/03,5.7935151266666605 -Cedar River Flow,22305293,-74.47875905182539,43.70605705496019,2023/11/03,5.333740126666662 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/01/29,22.26459166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/01/22,10.204525000000022 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/01/29,22.26459166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/01/22,10.204525000000022 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/03/02,22.348225000000006 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/03/02,22.348225000000006 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/04/28,4.583734095314998 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/06,4.657750000217494 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/04/28,4.583734095314998 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/06,4.657750000217494 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/06,19.442862500565003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/06,19.073737500755 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/30,8.032393749857512 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/29,9.32807500498498 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/29,8.530100005032489 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/22,6.001822729999995 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/06,19.442862500565003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/06,19.073737500755 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/30,8.032393749857512 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/29,9.32807500498498 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/29,8.530100005032489 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/05/22,6.001822729999995 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/07/08,14.894787499907498 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/07/08,14.870737500289993 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/23,8.227425000289996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/07/08,14.894787499907498 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/07/08,14.870737500289993 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/06/23,8.227425000289996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/09,6.89851608436107 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/09,8.368591677181666 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/02,20.355549999999983 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/10,5.699419231034224 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/09,6.89851608436107 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/09,8.368591677181666 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/02,20.355549999999983 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/10,5.699419231034224 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/03,12.898195258382962 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/11,2.636836925000001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/02,6.66855833381334 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/02,10.172356821110002 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/26,3.714579988461535 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/03,12.898195258382962 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/11,2.636836925000001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/02,6.66855833381334 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/02,10.172356821110002 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/08/26,3.714579988461535 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/26,10.750175003217478 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/26,10.69173333655081 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/10/04,3.722714885319878 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/10/04,3.714039885319878 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/27,3.2646684429487136 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/26,10.750175003217478 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/26,10.69173333655081 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/10/04,3.722714885319878 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/10/04,3.714039885319878 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/09/27,3.2646684429487136 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/06,6.741041657886676 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/05,2.3697767000000005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/05,2.399281325 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/06,6.741041657886676 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/05,2.3697767000000005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/05,2.399281325 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/29,3.0175159151424986 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/29,3.2703340950475006 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/22,8.575022111310238 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/12/07,2.14462475 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/12/07,2.83005139 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/29,3.0175159151424986 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/29,3.2703340950475006 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/11/22,8.575022111310238 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/12/07,2.14462475 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2015/12/07,2.83005139 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/01/08,3.918595504807695 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/01/08,12.335083333070832 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/01/08,3.918595504807695 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/01/08,12.335083333070832 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/02/26,9.823583333333348 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/03/05,21.675758333333352 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/02/26,9.823583333333348 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/03/05,21.675758333333352 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/05,14.844001251769996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/05,10.973874999647489 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/05,14.844001251769996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/05,10.973874999647489 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/30,7.85519471173916 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/21,7.1176636423725 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/21,7.0543386423725005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/08,3.2960280823076897 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/22,3.104500000000007 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/30,7.85519471173916 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/21,7.1176636423725 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/21,7.0543386423725005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/08,3.2960280823076897 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/04/22,3.104500000000007 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/31,5.112026899490828 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/31,5.088988638667496 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/31,5.112026899490828 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/05/31,5.088988638667496 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/03,5.724675005080001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/24,20.290816667126663 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/24,11.340091668456662 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/02,2.8346250000000053 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/02,2.482575000000001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/25,3.959202250000002 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/03,5.724675005080001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/24,20.290816667126663 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/24,11.340091668456662 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/02,2.8346250000000053 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/02,2.482575000000001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/06/25,3.959202250000002 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/04,2.867303811739164 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/26,4.139377777044409 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/26,4.101909972877742 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/03,3.394609099999995 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/03,7.552609000000003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/27,2.833367097664835 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/04,2.867303811739164 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/26,4.139377777044409 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/26,4.101909972877742 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/03,3.394609099999995 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/03,7.552609000000003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/07/27,2.833367097664835 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/05,3.665284099999992 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/27,3.5868499999999948 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/27,3.4634249999999955 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/04,3.56569621347833 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/04,4.590180308333325 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/28,4.948638461610956 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/05,3.665284099999992 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/27,3.5868499999999948 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/27,3.4634249999999955 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/04,3.56569621347833 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/04,4.590180308333325 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/08/28,4.948638461610956 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/07,3.021254549999997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/21,3.563390758333325 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/06,2.253009049999997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/06,2.231772674999997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/07,3.021254549999997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/09/21,3.563390758333325 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/06,2.253009049999997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/06,2.231772674999997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/08,4.968873621999992 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/23,3.534016038666665 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/07,2.4314815999999984 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/07,2.012277099999996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/08,4.968873621999992 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/10/23,3.534016038666665 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/07,2.4314815999999984 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/07,2.012277099999996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/10,6.381674996777514 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/09,3.9709545000725024 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/09,2.888659000167503 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/23,2.8402091394230764 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/23,3.096829120192308 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/10,6.381674996777514 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/09,3.9709545000725024 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/09,2.888659000167503 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/23,2.8402091394230764 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/11/23,3.096829120192308 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/01/02,22.451158333333343 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/25,12.238233333285828 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/25,11.899333336688327 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/01/02,22.451158333333343 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/25,12.238233333285828 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2016/12/25,11.899333336688327 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/03,22.00959166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/03,22.00959166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/03,22.00959166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/03,22.00959166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/20,20.383683333238366 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/02/20,20.383683333238366 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/03/23,23.469816666666656 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/03/23,23.469816666666656 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/09,14.460699999952494 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/03/23,23.469816666666656 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/03/23,23.469816666666656 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/09,14.460699999952494 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/05/03,3.11087738 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/24,8.905937509105005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/24,7.413950010760003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/05/11,5.485583335878329 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/05/03,3.11087738 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/24,8.905937509105005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/04/24,7.413950010760003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/05/11,5.485583335878329 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/06/11,20.800345833898344 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/06/11,22.036495834103352 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/06/11,20.800345833898344 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/06/11,22.036495834103352 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/05,2.999504500000003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/05,2.46535675 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/05,2.999504500000003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/05,2.46535675 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/07,15.643896028612485 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/06,8.893429175101671 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/06,8.890308340763339 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/30,2.9735413625 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/07,15.643896028612485 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/06,8.893429175101671 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/06,8.890308340763339 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/07/30,2.9735413625 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/30,4.56043333567083 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/30,10.822416667319157 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/23,13.573499997545 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/07,16.28259999999998 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/07,2.804625000000006 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/31,4.487703330769221 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/30,4.56043333567083 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/30,10.822416667319157 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/23,13.573499997545 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/07,16.28259999999998 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/07,2.804625000000006 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/08/31,4.487703330769221 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/10,7.009749998132511 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/01,3.033402279999996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/01,2.8840045499999967 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/24,4.768415911979166 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/02,3.0607016506410214 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/23,5.88847500088999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/23,5.400600000672489 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/10,7.009749998132511 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/01,3.033402279999996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/01,2.8840045499999967 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/24,4.768415911979166 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/10/02,3.0607016506410214 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/23,5.88847500088999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/09/23,5.400600000672489 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/11/11,4.189166812145 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2017/11/11,4.189166812145 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/03/26,21.014883333238355 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/05/29,13.523300004600005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/05/29,13.4983750023 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/05/30,4.12858189999999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/07/09,3.3241507836233324 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/06/30,21.773116666206665 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/06/30,22.66849166600667 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/07/08,22.92167727318251 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/07/08,22.81792727318251 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/07/01,11.644100000200002 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/06/22,4.187765925072493 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/06/22,4.1819873000724925 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/10,3.5893022999999933 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/09,3.802928930769225 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/09,3.5112051999999934 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/25,11.623958333333324 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/08/25,11.945933333333324 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/10/05,2.3804995615384588 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2018/11/22,16.103325000047484 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/01/01,24.44116666666665 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/03/06,22.26459166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/04/23,14.648005265251673 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/05/08,4.536855706438328 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/05/08,4.87557541826833 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/06/09,8.36465834028082 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/06/09,8.12471834028082 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/06/26,4.375099999999988 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/07/28,2.303985611354165 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/08/05,4.568952299999993 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/07/27,10.84731833956082 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/07/27,16.423226690794163 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/08/29,2.896872720434997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/09/06,4.019644330769224 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/09/30,8.66009999537749 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/10/08,4.946990139999994 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/09/22,3.911232203197497 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/11/09,3.229775000000006 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/10/24,4.5331150079999984 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/12/11,15.506000003450003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2019/11/25,4.6938449503205 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/02/05,22.137733333333344 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/02/29,21.75304166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/04/01,7.919125000785 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/04/25,6.757125004720001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/10,3.0255000000000063 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/10,3.036525000000009 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/03,3.394614149999996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/27,3.4525750018116605 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/06/04,11.719424999569991 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/26,3.475949999999993 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/05/26,3.7112280383333314 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/07/06,2.913661517307692 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/07/30,5.947434855794999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/07,4.089628008846147 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/31,18.447399997635 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/09/08,16.691433333398333 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/30,12.767749999354985 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/30,13.010158332903316 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/08/23,3.585807930769226 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/10/10,5.7822750005075 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/10/01,11.951291666651658 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/09/24,11.493870833523331 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2020/12/29,21.848400000000016 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/03/27,11.631106267302489 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/03/26,23.593699999999995 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/06/07,3.632002250000001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/06/23,4.360826126410249 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/08/02,6.465437495985007 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/08/10,5.138062257307684 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/07/25,3.139204500000001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/09/03,2.962301506739165 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/08/26,4.271971317307683 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/06,5.879437133620828 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/09,3.661951372999996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/05,2.152636199999997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/05,2.128913449999997 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/10/29,2.387447098626371 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/12/07,5.196625000239996 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/12/07,14.084574999999989 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/24,2.4219179499999983 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/24,2.4703564999999994 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/21,4.218251399999994 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2021/11/21,2.784595150000001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/01/25,13.058883332808332 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/02/26,22.14189166666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/03/30,9.65341666666668 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/05/09,3.5187392814058267 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/05/09,3.022481275 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/05/01,2.724354950000002 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/04/30,8.688058338078323 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/04/30,6.865000002444991 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/04/23,3.1686522500000045 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/06/02,11.51410833361832 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/05/25,5.4747750020174974 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/06/29,6.792750010650001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/11,6.7408939370866685 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/11,6.665039767740003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/04,8.11745000066999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/03,4.4200906415569 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/03,4.405790641439401 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/06/26,3.93792725 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/07/28,2.3775522500475 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/08/29,3.2118545000000025 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/08/28,5.903906820000004 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/08/28,7.463675000000003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/09,6.752649999925011 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/08,2.9560168250000007 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/09/30,17.98829166745165 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/09/22,2.556350000047499 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/31,14.939237501710007 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/31,14.776462502215011 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/26,3.422565645464404 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/11/09,2.398778737499999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/10/24,16.45227499999999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/12/02,3.152325713380835 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/12/02,3.3700500000475 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/11/24,3.143481849999999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/11/24,3.3086930115384607 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2022/12/27,11.925699999332515 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/03/09,21.66638333333335 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/04/10,11.965983333285823 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/04/02,22.49843333333334 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/09,9.72663958760086 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/09,9.923564586403351 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/31,6.912895450312501 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/31,7.2073954503125 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/26,7.988437876859169 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/06/05,12.30675833333332 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/05/28,22.36435833340585 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/06/22,3.196800000144999 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/07,11.693249999832483 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/06,4.489175000144994 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/06,4.237649999999994 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/06/21,2.763252250000006 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/05,12.97848936403084 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/30,7.150975002372501 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/30,6.430250000072506 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/23,3.654331864999991 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/22,4.572775000047503 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/07/22,3.8824250000724976 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/01,7.63008636036 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/08,2.730375000000005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/01,5.094697730047493 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/31,3.3942181599999945 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/31,3.431777259999994 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/23,2.703688550000001 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/08/23,2.7551249250000005 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/28,7.070699998275013 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/10/03,3.473648649999995 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/10/02,3.7855240499999936 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/10/02,4.052967274999993 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/09/25,7.429108990000003 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/11/11,2.9269750000000045 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/11/03,3.8287786049999952 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/11/03,4.081646879999993 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/10/27,3.281250000000004 -Thirteenth Lake,22305295,-74.12717732839005,43.7038700938838,2023/11/28,3.030625000000005 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/02/06,21.867666666666683 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/02/06,21.867666666666683 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/03/10,21.88613333333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/02/22,21.848400000000016 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/03/10,21.88613333333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/02/22,21.848400000000016 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/04/04,21.78088333333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/04/04,21.78088333333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/04/28,8.855150002872508 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/06,3.5951628866666634 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/04/28,8.855150002872508 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/06,3.5951628866666634 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/06/06,6.570902494892496 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/30,8.062162493437514 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/06/07,12.71398333333332 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/29,2.88003573076923 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/22,5.352854966846663 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/06/06,6.570902494892496 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/30,8.062162493437514 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/06/07,12.71398333333332 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/29,2.88003573076923 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/05/22,5.352854966846663 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/08,5.975526142381671 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/08,5.975526142381671 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/09,3.627065954999993 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/02,5.000700004504995 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/24,19.454074999125 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/10,4.8503020987179415 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/01,6.873111365362502 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/25,14.297483333118318 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/09,3.627065954999993 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/02,5.000700004504995 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/24,19.454074999125 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/10,4.8503020987179415 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/01,6.873111365362502 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/07/25,14.297483333118318 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/03,3.105249621031668 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/25,3.097581849999998 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/11,2.977625000000001 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/02,3.525577250000002 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/03,3.105249621031668 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/08/25,3.097581849999998 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/11,2.977625000000001 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/02,3.525577250000002 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/10/05,20.79124999923502 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/26,11.41022500011999 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/10/04,2.712186325000003 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/27,5.005375000819997 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/10/05,20.79124999923502 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/26,11.41022500011999 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/10/04,2.712186325000003 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/09/27,5.005375000819997 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/05,3.4838934307692244 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/05,3.4838934307692244 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/29,7.098099994735006 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/22,3.647388892196071 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/30,14.37880833378582 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/29,7.098099994735006 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/22,3.647388892196071 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2015/11/30,14.37880833378582 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/02/02,12.116474999984996 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/02/02,12.116474999984996 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/02/26,22.47810000000001 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/02/26,22.47810000000001 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/05,11.083120004749992 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/05,11.083120004749992 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/21,10.599462511237506 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/08,14.50943333353333 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/29,2.861040350000001 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/21,10.599462511237506 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/08,14.50943333353333 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/04/29,2.861040350000001 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/23,2.8543020829383376 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/31,7.405370832020835 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/23,2.8543020829383376 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/05/31,7.405370832020835 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/03,10.02215002089 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/06/24,14.68605833333331 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/11,3.5440943307692243 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/02,3.2477000000000067 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/06/25,3.3208272500475 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/03,10.02215002089 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/06/24,14.68605833333331 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/11,3.5440943307692243 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/02,3.2477000000000067 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/06/25,3.3208272500475 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/11,6.201600002565005 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/04,3.230890157246662 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/03,2.6860998750000022 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/27,3.1747207030769222 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/11,6.201600002565005 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/04,3.230890157246662 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/03,2.6860998750000022 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/07/27,3.1747207030769222 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/05,3.5375868499999945 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/27,2.857965921714998 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/04,3.933143199999996 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/28,3.9959602308417215 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/05,3.5375868499999945 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/27,2.857965921714998 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/04,3.933143199999996 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/08/28,3.9959602308417215 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/07,3.227103038333333 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/21,2.4827387 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/06,2.507678205769229 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/29,13.175175000079994 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/07,3.227103038333333 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/21,2.4827387 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/06,2.507678205769229 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/09/29,13.175175000079994 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/08,3.910159863333328 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/23,3.721087891666664 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/07,3.085720168269229 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/08,3.910159863333328 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/10/23,3.721087891666664 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/07,3.085720168269229 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/10,4.623213826964167 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/09,4.680402693269221 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/23,3.47951923076923 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/10,4.623213826964167 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/09,4.680402693269221 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/11/23,3.47951923076923 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/26,24.070899999999988 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/25,21.67155833333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/26,24.070899999999988 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2016/12/25,21.67155833333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/02/19,20.67193333323836 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/03/08,16.09756477715249 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/02/27,21.77565833333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/02/19,20.67193333323836 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/03/08,16.09756477715249 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/02/27,21.77565833333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/03/23,21.07416666671419 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/03/23,21.07416666671419 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/05/03,6.06414999427501 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/04/24,11.01055833333332 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/05/03,6.06414999427501 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/04/24,11.01055833333332 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/11,8.463458331085839 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/03,5.996527249999998 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/11,8.463458331085839 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/03,5.996527249999998 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/05,2.1831657250000025 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/28,3.407508853846154 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/05,2.1831657250000025 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/06/28,3.407508853846154 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/29,19.68669166623665 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/06,2.405300000000002 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/30,2.848458336538462 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/29,19.68669166623665 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/06,2.405300000000002 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/07/30,2.848458336538462 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/08,3.1207121433333294 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/30,2.632373508478333 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/23,7.162249994675006 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/07,3.807610563076923 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/31,2.6329772500000024 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/22,11.831575000457494 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/08,3.1207121433333294 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/30,2.632373508478333 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/23,7.162249994675006 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/07,3.807610563076923 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/31,2.6329772500000024 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/08/22,11.831575000457494 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/01,4.883073770769224 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/24,2.920968938623331 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/02,2.7044767918956034 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/23,2.4173876750000023 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/01,4.883073770769224 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/24,2.920968938623331 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/02,2.7044767918956034 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/09/23,2.4173876750000023 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/11/11,4.359587000714278 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/25,2.549101300000003 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/11/11,4.359587000714278 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/10/25,2.549101300000003 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/12/04,7.758012501327496 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/01/05,22.26459166666668 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2017/12/29,22.26459166666668 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/05/05,6.375225004599994 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/04/28,12.964908335538334 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/05/29,6.5546458265533385 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/07/09,3.7403969766666574 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/07/08,11.380991674576649 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/07/01,4.765174999999989 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/08/09,3.3691522500474984 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/09/03,3.0369272500475004 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/10/05,8.628275000454998 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/12/07,22.76205 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2018/11/22,3.0827017630769227 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/02/09,9.768408333095849 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/02/10,21.48859166666669 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/02/01,21.675758333333352 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/03/06,11.524014999715016 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/03/05,21.88613333333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/04/23,11.579482531222489 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/05/08,6.407858343198322 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/04/22,11.950685430661665 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/06/09,5.916100000094991 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/07/03,12.974549999972494 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/06/26,6.427509094907504 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/08/04,11.52940833445084 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/07/28,8.934647917684183 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/08/05,2.3263484807692314 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/07/27,14.897433349505851 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/05,2.9576331779999974 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/08/29,6.381856242732511 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/06,2.795449500000002 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/30,5.8304096704025055 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/21,7.8579712133333315 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/10/08,3.3011499999999985 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/29,9.126050000337482 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/09/22,11.264483333953322 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/11/08,6.038999995595008 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/11/09,3.0840295 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/10/24,12.974383333918343 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2019/12/03,12.484272928084163 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/02/05,22.77201666661917 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/03/08,22.451158333333343 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/02/21,22.309808333333343 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/04/01,11.040725002204995 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/02,17.211333395433353 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/04/25,6.366459094999997 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/10,4.495131819999999 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/03,2.668725000047502 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/27,9.234475000547492 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/06/11,6.044550000362497 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/06/04,3.765007724999993 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/05/26,5.411942999999999 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/07/05,14.324650009200004 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/06/28,6.762187489372511 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/07/06,4.061120198717943 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/08/06,7.252700000527504 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/07/30,2.320833337921666 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/08/31,8.251170839740828 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/08/23,3.0781546249999963 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/10/09,3.331181834999995 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/10/10,14.145966666666668 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/11/10,4.10596304033333 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/11/03,13.713235672518328 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2020/10/25,7.055941671266671 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/03/11,11.096708333118336 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/03/02,22.34590833333334 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/04/03,22.44243333333334 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/04/04,20.79058333788586 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/05/06,3.6638151199999927 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/06/06,8.04393542099416 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/06/07,9.3725250144425 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/06/23,2.4205022500474995 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/07/24,17.893545834388316 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/07/25,4.3592576923076924 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/09/03,3.1418368925366305 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/08/25,17.636800000912494 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/09/11,4.039593615384615 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/09/02,4.263359853405833 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/08/26,3.075452250000001 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/11/06,4.281723631999997 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/10/28,7.210148483333322 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/10/29,2.3192506125 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/11/24,5.233755780769232 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/11/21,2.669802250000006 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/01/08,21.791766666666685 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2021/12/23,11.939193750557497 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/02/01,22.012833333333347 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/01/25,10.913916667051671 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/01/24,21.867666666666683 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/02/26,24.02516666666665 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/04/06,8.339708334980829 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/03/29,22.01263333333335 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/03/22,11.208083333238326 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/09,2.3928796250000004 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/08,10.54406668046666 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/01,3.9877041683991625 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/04/30,5.790175002727489 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/04/22,3.07326346153846 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/31,16.87197499976251 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/26,9.428699982757486 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/06/10,4.185645023196925 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/25,5.686275000119992 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/05/24,11.0667000004575 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/07/11,7.792275004817482 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/07/04,3.3153017691025624 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/07/03,8.33999500040501 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/06/26,3.331941130769224 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/06/25,4.046412123405823 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/07,6.9391749966250105 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/05,3.2319522500950053 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/04,12.39688333311832 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/07/28,2.8683250000000053 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/09/10,10.296112513680002 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/24,7.594449986195002 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/08/28,2.9654228299999983 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/09/22,15.472485416476674 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/10/08,2.9438545000000045 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/09/29,3.09221359 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/09/21,2.4003566000000025 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/10/31,19.90305833407334 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/11/09,2.50310189 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/11/08,2.1073248499999973 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/10/24,15.155016666666675 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/12/10,2.351308950000001 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2022/11/24,3.25431125 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/02/04,22.14189166666668 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/03/09,21.675758333333352 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/02/20,22.192374999690013 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/10,11.891183333238326 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/09,14.677399999952495 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/02,13.316274999737496 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/01,13.604324999857504 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/03/24,12.92065833351833 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/09,9.316000000785005 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/11,5.114900000000003 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/04/25,3.266225000000007 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/31,11.017718180820005 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/26,3.133246818144997 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/28,16.64651668525919 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/05/27,22.396000002467517 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/06/22,3.129925619739166 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/07/06,3.291499999999997 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/06/21,3.275859 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/08/05,3.510250000507497 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/07/30,5.230257584149164 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/07/23,4.393108385769227 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/07/22,4.884154169909163 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/06,3.8155053151449945 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/01,4.638082475714278 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/01,4.690350000072494 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/08/31,3.396178023333328 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/08/23,12.049708333523323 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/10/03,15.974420840423337 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/28,9.31142084843584 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/10/03,2.935379450000002 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/10/02,3.5535195000000037 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/09/25,3.237058249999995 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/11/11,3.5641000000000003 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/11/03,2.809201902499999 -Jerseyfield Lake,22739129,-74.76228610808327,43.30512389750751,2023/11/27,2.484167750000003 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/06,21.84966666666668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/06,21.84966666666668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/23,22.26459166666668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/22,14.190183333238345 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/23,22.26459166666668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/02/22,14.190183333238345 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/04/04,11.612450000095004 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/04/04,11.612450000095004 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/04/28,5.039450000119999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/06,7.806892431266667 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/04/28,5.039450000119999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/06,7.806892431266667 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/06,8.514914999427505 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/30,8.068764999477498 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/07,14.660824999784984 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/29,8.817742422995833 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/22,4.069975000554996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/06,8.514914999427505 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/30,8.068764999477498 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/07,14.660824999784984 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/29,8.817742422995833 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/05/22,4.069975000554996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/07/08,15.35288343354833 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/22,4.985837125641669 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/23,4.200359091759996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/07/08,15.35288343354833 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/22,4.985837125641669 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/06/23,4.200359091759996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/09,7.153025002727494 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/02,3.2423795605799985 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/07/24,7.703077495632494 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/10,4.3847340999999895 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/01,6.802292064219159 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/09,7.153025002727494 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/02,3.2423795605799985 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/07/24,7.703077495632494 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/10,4.3847340999999895 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/01,6.802292064219159 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/03,13.410055834945842 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/25,10.781212502847506 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/11,3.1598370507692293 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/02,7.102775000697514 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/26,4.319284263461531 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/03,13.410055834945842 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/25,10.781212502847506 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/11,3.1598370507692293 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/02,7.102775000697514 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/08/26,4.319284263461531 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/26,12.051414590415828 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/27,15.367858333405826 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/26,12.051414590415828 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/09/27,15.367858333405826 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/05,5.822120569999997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/05,5.822120569999997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/29,4.032546371999998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/22,16.323008334473332 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/12/07,2.2798406250000003 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/30,3.736431919999995 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/21,5.470652664090836 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/29,4.032546371999998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/22,16.323008334473332 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/12/07,2.2798406250000003 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/30,3.736431919999995 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2015/11/21,5.470652664090836 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/05,14.879900832475826 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/05,14.879900832475826 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/30,5.855116668441668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/21,13.951712505370006 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/08,4.745952290351665 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/29,5.090508336215831 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/22,2.8404750000000045 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/30,5.855116668441668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/21,13.951712505370006 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/08,4.745952290351665 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/29,5.090508336215831 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/04/22,2.8404750000000045 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/23,6.927079164181675 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/31,25.830933333618333 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/24,4.872975000819992 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/23,6.927079164181675 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/31,25.830933333618333 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/05/24,4.872975000819992 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/03,9.234937500167495 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/06/24,20.984325002395007 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/11,4.133431820239997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/06/25,4.102925898076922 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/03,9.234937500167495 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/06/24,20.984325002395007 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/11,4.133431820239997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/06/25,4.102925898076922 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/11,13.164350023912489 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/04,2.8516627279999973 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/03,7.911933348710819 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/27,3.916176130769226 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/11,13.164350023912489 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/04,2.8516627279999973 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/03,7.911933348710819 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/07/27,3.916176130769226 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/05,4.054213629999994 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/27,3.083549678161792 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/04,4.519693179999994 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/05,4.054213629999994 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/08/27,3.083549678161792 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/04,4.519693179999994 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/07,4.827437179380945 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/21,3.114100604666662 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/06,2.519777174999998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/29,16.996191666636665 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/07,4.827437179380945 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/21,3.114100604666662 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/06,2.519777174999998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/09/29,16.996191666636665 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/08,4.292591063666664 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/23,6.839020455 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/07,2.2121584499999987 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/31,3.194977250000006 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/08,4.292591063666664 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/23,6.839020455 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/07,2.2121584499999987 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/10/31,3.194977250000006 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/12/10,13.054991113178607 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/23,3.582924999999999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/12/10,13.054991113178607 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/11/23,3.582924999999999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/12/26,24.44116666666665 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2016/12/26,24.44116666666665 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/02/04,10.49676666635668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/02/04,10.49676666635668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/03/08,9.944541666476676 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/02/20,16.297241666619165 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/03/08,9.944541666476676 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/02/20,16.297241666619165 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/03/23,21.34328583328585 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/03/23,21.34328583328585 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/05/03,7.783558342990835 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/04/24,13.590650032200015 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/05/03,7.783558342990835 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/04/24,13.590650032200015 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/11,26.75938333361835 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/03,7.646208334620836 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/11,26.75938333361835 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/03,7.646208334620836 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/27,3.6414124983875023 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/07/05,22.003625000189984 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/28,4.821801208333334 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/27,3.6414124983875023 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/07/05,22.003625000189984 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/06/28,4.821801208333334 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/07,7.77783958280335 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/07/30,2.053876950000001 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/07,7.77783958280335 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/07/30,2.053876950000001 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/08,2.96164166639417 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/30,9.018077270482504 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/23,4.272843192319164 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/07,2.7973522500000065 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/31,10.3002250002175 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/08,2.96164166639417 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/30,9.018077270482504 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/23,4.272843192319164 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/07,2.7973522500000065 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/08/31,10.3002250002175 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/01,4.190802269999997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/24,8.204204540145007 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/02,2.5470236932692303 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/23,3.695891949999995 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/01,4.190802269999997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/24,8.204204540145007 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/02,2.5470236932692303 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/09/23,3.695891949999995 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/11/11,10.904388529047608 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/11/10,23.0487000001075 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/10/25,7.611410606666658 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/12/04,11.325125006927507 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2017/12/29,22.337341666666678 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/05/05,7.857835006947494 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/05/30,6.96238826234333 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/07/09,9.896100004792478 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/06/30,19.62716666666669 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/07/08,3.378963640192503 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/07/01,15.756375000477506 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/08/09,4.5212545 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/09/03,3.335450000000007 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/08/25,14.327800000072491 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/09/27,19.99770833333332 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/10/05,3.049543150000001 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2018/11/22,3.98372084615384 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/02/10,21.791766666666685 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/01/25,11.190358333718336 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/03/06,22.26459166666668 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/03/05,12.845258332855826 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/04/23,6.703392428333332 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/05/08,6.833725004599995 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/04/22,4.892134100119998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/06/09,21.15300833372334 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/03,11.277495835015836 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/06/26,3.326150039999995 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/11,18.655699999985004 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/04,12.610750000309997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/08/04,10.556306965630707 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/28,12.601158337790825 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/08/05,2.3527988133333344 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/07/27,21.71355835185336 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/05,3.126521966666662 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/08/29,4.128418180742501 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/06,3.361568689999996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/21,10.093631709047624 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/10/08,3.938927281631664 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/29,2.8809278249999988 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/09/22,14.14075416673916 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/11/01,6.088199995810008 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/10/23,9.210702971902974 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/11/09,4.636433389999994 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/10/24,3.1299077500000005 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/12/03,11.634372926156663 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2019/12/11,2.936327855769231 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/03/08,11.90934166657166 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/04/01,3.673019230769228 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/02,11.50257084679083 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/04/25,7.077662143333328 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/10,2.7243250000000034 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/03,12.264816715039167 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/27,6.888017423500839 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/06/11,6.178328414247497 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/06/04,4.217775000334993 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/05/26,13.05272500805001 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/07/06,3.89276591 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/07/29,18.578158333318317 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/08/31,3.87518409999999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/08/30,2.3374544999999998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/08/23,20.13295000004748 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/09/23,10.397700000602493 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/10/01,3.121531819999999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/11/03,3.427349999952505 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2020/12/29,21.66638333333335 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/05/06,4.805275002299996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/06/07,8.795500000000008 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/06/23,5.704276555509167 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/08/02,11.915258361290848 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/08/01,5.404950000072493 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/07/25,13.396614582785842 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/09/03,3.229766534999996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/09/11,2.9463999999999984 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/08/26,8.276443180240001 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/11/06,5.223489294047612 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/11/05,3.37279423076923 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/10/29,3.0125062233058606 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/11/24,2.2700634999999965 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/11/21,5.51413490333333 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2021/12/23,3.801536677884615 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/02/26,23.25183333333333 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/03/29,7.822758333333339 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/03/22,16.89742500023752 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/09,3.1675409349999963 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/09,2.6884286499999983 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/08,11.346466689786665 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/01,9.363841687511655 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/04/30,3.944843174999997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/04/22,4.327266603846146 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/31,12.2360499996475 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/25,11.5601999996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/05/24,6.402534858644169 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/07/04,12.956649996442506 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/07/11,6.331010995439998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/07/04,3.296620459999997 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/07/03,8.123182954497507 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/06/26,2.2975272500000035 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/06/25,3.117563499999999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/08/04,3.299100763333335 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/08/29,2.93980675 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/08/28,4.2517696199999895 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/10/09,3.650441693333329 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/10/08,2.630338769999999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/09/29,4.8812121719999935 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/09/22,9.655425001464994 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/09/21,3.0535921999999998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/10/31,6.772149992585013 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/11/09,3.167881789999999 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/11/08,2.6193237500000004 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/10/31,4.021286365072497 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/12/10,3.8944120899999968 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/12/02,11.6604499993 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/11/24,2.83898192 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/12/27,12.010958333190851 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2022/12/26,12.694833333670829 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/04/10,23.69627575882417 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/04/09,19.500058338070843 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/04/01,12.291875001292492 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/03/24,14.040041666571664 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/11,4.525825398043335 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/31,19.769441666884187 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/26,2.905781820072499 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/05,12.833233333453329 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/04,4.180143200119995 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/28,3.512012166739161 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/05/27,15.933200009962508 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/22,7.527343180217501 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/07,4.17509549007249 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/06,6.006462902274163 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/29,10.681374999999989 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/06/21,3.113881750000004 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/08/05,3.2582848479716624 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/31,4.547433336933335 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/31,8.976775000699995 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/30,5.464096972174164 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/23,3.9508818200724978 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/07/22,4.002400767199166 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/01,4.281203684047614 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/09,2.774675000000004 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/08,3.569506820072498 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/01,6.06332044 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/08/31,2.3758027500000023 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/08/23,17.909299999754996 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/28,8.076424996475009 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/10/03,3.6193387 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/10/02,5.4069895619999935 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/09/25,8.676100001157492 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/10/25,9.365221431151673 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/11/11,2.7089974500000005 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/11/03,4.774304639999998 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/10/27,3.168141532307689 -Peck Lake,22739299,-74.41166939208132,43.11465134198901,2023/11/27,4.886881749999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/02/06,21.75304166666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/02/06,21.75304166666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/02/06,21.75304166666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/02/06,21.75304166666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/03/11,14.343808333285825 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/03/02,11.918274999324996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/03/11,14.343808333285825 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/03/02,11.918274999324996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/04/28,5.805093755457507 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/06,8.71699167363916 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/04/28,5.805093755457507 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/06,8.71699167363916 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/06,8.615939999617504 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/06,8.042298332950839 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/29,14.152570834118332 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/29,14.008720834118332 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/22,4.597066377999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/06,8.615939999617504 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/06,8.042298332950839 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/29,14.152570834118332 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/29,14.008720834118332 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/05/22,4.597066377999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/07/08,16.34355416551917 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/07/08,15.99420416551917 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/22,8.05443166504167 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/22,7.603639998472499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/07/08,16.34355416551917 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/07/08,15.99420416551917 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/22,8.05443166504167 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/06/22,7.603639998472499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/09,2.547425001189998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/09,2.925475001357499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/02,17.732783333333327 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/10,4.860984090627499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/09,2.547425001189998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/09,2.925475001357499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/02,17.732783333333327 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/10,4.860984090627499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/03,11.051106250712522 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/25,3.683003637999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/25,3.87087864466666 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/11,5.599555461999991 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/02,15.488675000072506 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/02,19.754808333070823 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/26,3.0618250000000025 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/03,11.051106250712522 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/25,3.683003637999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/25,3.87087864466666 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/11,5.599555461999991 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/02,15.488675000072506 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/02,19.754808333070823 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/08/26,3.0618250000000025 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/05,5.20690459104761 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/26,7.54738560707667 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/26,7.420321215898335 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/04,2.7173088500000016 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/04,2.6171156000000027 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/27,3.4679648230769184 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/05,5.20690459104761 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/26,7.54738560707667 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/26,7.420321215898335 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/04,2.7173088500000016 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/10/04,2.6171156000000027 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/09/27,3.4679648230769184 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/05,2.5643799999999994 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/05,2.708159818269229 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/05,2.5643799999999994 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/05,2.708159818269229 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/08,5.382676382692301 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/29,7.630974266666659 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/29,5.942734843333326 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/07,2.961755715705124 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/07,3.5454341089743537 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/08,5.382676382692301 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/29,7.630974266666659 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/11/29,5.942734843333326 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/07,2.961755715705124 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2015/12/07,3.5454341089743537 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/01/08,16.143725000000003 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/01/08,16.143725000000003 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/02/10,23.67154166666665 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/02/10,23.67154166666665 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/05,13.570441680899169 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/05,9.32193333591833 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/05,13.570441680899169 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/05,9.32193333591833 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/30,3.143716698333331 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/21,12.77972502997251 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/21,12.44909170128668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/08,3.614680334999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/29,3.80169999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/29,3.33118412 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/30,3.143716698333331 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/21,12.77972502997251 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/21,12.44909170128668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/08,3.614680334999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/29,3.80169999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/04/29,3.33118412 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/31,6.085273108763337 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/31,6.1287231089983365 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/31,6.085273108763337 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/05/31,6.1287231089983365 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/03,18.398749999402497 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/24,5.521875001714998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/24,5.523200001714998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/11,12.98960833374333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/25,4.4206090899999975 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/03,18.398749999402497 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/24,5.521875001714998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/24,5.523200001714998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/11,12.98960833374333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/06/25,4.4206090899999975 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/11,12.51971481380998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/11,9.547996604781677 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/04,2.9938377279999964 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/03,3.3416394233333246 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/03,3.2238166783333257 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/27,3.2072884999999984 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/11,12.51971481380998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/11,9.547996604781677 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/04,2.9938377279999964 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/03,3.3416394233333246 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/03,3.2238166783333257 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/07/27,3.2072884999999984 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/05,3.216740909999995 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/27,2.6848295499999977 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/27,8.847183326666679 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/04,3.3954613899999977 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/04,3.5611931999999955 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/05,3.216740909999995 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/27,2.6848295499999977 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/08/27,8.847183326666679 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/04,3.3954613899999977 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/04,3.5611931999999955 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/07,8.408064393333326 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/21,3.258157588333329 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/06,2.170702187499997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/06,2.455681749999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/29,12.729008334698326 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/07,8.408064393333326 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/21,3.258157588333329 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/06,2.170702187499997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/06,2.455681749999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/09/29,12.729008334698326 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/08,8.048096228333325 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/23,2.9781084803333333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/07,2.800399561538461 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/07,2.386483661538458 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/08,8.048096228333325 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/10/23,2.9781084803333333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/07,2.800399561538461 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/07,2.386483661538458 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/10,6.803199997330011 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/09,3.719100000000006 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/09,3.801050000000006 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/23,4.127684000000001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/23,2.0807847375 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/10,6.803199997330011 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/09,3.719100000000006 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/12/09,3.801050000000006 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/23,4.127684000000001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2016/11/23,2.0807847375 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/02/03,9.409041666666678 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/02/03,9.34754166666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/02/03,9.409041666666678 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/02/03,9.34754166666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/03/08,14.398066666571674 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/03/08,14.398066666571674 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/08,12.087749999784997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/08,12.209999999569996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/09,14.18549166661916 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/08,12.087749999784997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/08,12.209999999569996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/09,14.18549166661916 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/24,9.956825002347475 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/24,10.134966666714144 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/05/11,14.45411666723666 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/24,9.956825002347475 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/04/24,10.134966666714144 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/05/11,14.45411666723666 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/11,8.478144999712503 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/11,8.347091666189169 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/03,22.68361060821333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/03,22.448443941546657 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/11,8.478144999712503 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/11,8.347091666189169 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/03,22.68361060821333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/06/03,22.448443941546657 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/05,2.8233784983333305 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/05,3.4526787399999925 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/05,2.8233784983333305 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/05,3.4526787399999925 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/29,13.875899999615006 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/06,4.720131820409997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/06,6.957616671459169 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/30,2.141192850000001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/29,13.875899999615006 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/06,4.720131820409997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/06,6.957616671459169 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/07/30,2.141192850000001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/30,6.792955305214998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/30,6.990855305214999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/23,21.284994168929188 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/07,4.390768179999992 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/07,2.534609120000001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/31,3.243075000000005 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/22,9.706200000217498 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/30,6.792955305214998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/30,6.990855305214999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/23,21.284994168929188 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/07,4.390768179999992 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/07,2.534609120000001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/31,3.243075000000005 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/08/22,9.706200000217498 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/10,9.070905925649994 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/01,3.336265156666661 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/01,3.2598742466666617 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/24,6.496777270000007 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/02,5.160594561538459 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/23,12.473033339320818 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/23,11.732500008287484 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/10,9.070905925649994 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/01,3.336265156666661 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/01,3.2598742466666617 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/24,6.496777270000007 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/02,5.160594561538459 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/23,12.473033339320818 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/09/23,11.732500008287484 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/11/11,10.515791562380938 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/25,4.10749019 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/10/25,11.234027269999988 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/12/04,13.480291813574182 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2017/12/04,15.37251669656667 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/01/29,15.21441496803916 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/01/29,15.468421218229157 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/05,2.8754967499999986 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/05,2.9496967499999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/29,4.911612492044282 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/29,4.936087491661781 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/05/30,5.6245000025400005 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/07/09,4.3373749999999855 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/06/30,19.95300000003998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/06/30,19.08555833316081 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/07/08,18.81543333333334 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/07/08,17.50195833333333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/07/01,17.933470833405828 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/06/22,3.145143124999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/06/22,3.1117181249999977 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/10,3.81945606166666 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/09,6.069075000047499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/09,5.620550000047504 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/09/03,2.712975000000006 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/25,6.539971999019997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/08/25,5.078951522435831 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/09/27,7.903049995752504 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/10/05,4.225266270769227 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/12/07,24.072216666666648 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2018/11/22,2.790340749999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/01/01,7.697349998330014 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/03/06,22.351800000000008 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/02/26,21.67155833333335 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/05/09,4.415095830593335 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/04/23,13.754024149722492 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/05/08,10.365750023047491 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/05/08,10.132833358680829 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/04/22,13.709133350255843 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/04/22,12.147741712504176 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/10,3.970100020144992 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/01,9.353874999392527 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/01,8.751999999487522 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/09,5.911699271447494 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/09,4.388279947815828 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/07/03,7.365887275000009 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/07/03,18.7319375 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/06/26,3.678862727999991 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/07/04,9.692375000237488 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/08/05,3.080091980769228 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/05,3.512559694666661 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/05,2.987228647999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/08/29,4.8119825804325 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/06,2.2705202000000035 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/21,7.994865910072499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/21,8.1091659100725 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/10/08,6.433099999999995 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/09/22,14.230400000799987 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/11/08,6.633858333533339 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/11/08,6.741558333533338 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/10/23,8.557024169306654 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/10/23,6.822177118683332 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2019/10/24,2.608855000000002 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/02/29,12.756166666804166 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/02/20,14.454649999737509 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/02/20,14.170999999737507 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/04/01,11.900547916794162 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/02,4.793673359666662 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/02,7.224304421333328 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/04/25,5.925117446666665 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/10,12.155649999154996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/10,7.281074995439997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/03,6.910278033333324 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/27,3.030961389999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/06/04,9.656300009677487 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/26,4.395586369999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/05/26,6.241726516666665 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/07/06,2.2180063150000024 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/08/06,14.944691666739168 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/08/06,14.851308333550842 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/07/30,3.5239727201449966 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/08/07,18.871508333398346 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/08/31,8.956820450000007 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/09/08,23.535833333333347 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/10/09,4.18876304033333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/10/09,3.926498646999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/09/23,8.96384999696 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/09/23,9.095424995542498 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/10/10,10.566019230841723 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/09/24,15.119900000072482 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/11/10,8.53957046166666 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/11/10,9.99852185904761 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/11/03,5.394274998665005 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2020/12/29,3.242750000000003 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/02/06,21.84966666666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/02/06,21.75304166666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/03/02,22.309808333333343 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/03/02,22.30574166666668 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/05/06,2.713191100000003 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/06/06,22.43260833338084 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/06/06,22.37269242561751 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/06/07,4.963408333570836 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/05/29,16.18473333361833 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/05/29,15.839883333428329 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/06/23,12.071883333533323 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/09,15.058320833238328 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/09,15.506429166666663 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/07/24,14.095025011834984 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/07/24,14.093891678549152 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/10,5.097375000529993 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/07/25,2.8015250000000047 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/25,9.020527270192504 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/25,9.296027270192502 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/08/26,3.4035545000000007 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/09/26,4.058431549766546 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/09/26,4.972915912792501 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/06,8.048209739047616 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/10/28,6.81467499733001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/10/28,6.193249995150009 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/09,4.100679166954161 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/10/29,4.366942978205127 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/12/07,12.627175000405009 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/12/07,10.46704999817999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/24,2.163488499999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/24,2.4053657499999974 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/21,6.0717909499999925 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2021/11/21,4.905918089999995 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/02/01,22.34590833333334 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/02/26,11.212624999785003 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/03/30,21.57322500000001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/06,12.34299166775166 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/06,12.950116667156664 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/03/29,21.791766666666685 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/09,3.575423384666661 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/09,6.287955499999989 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/08,5.7670530460699965 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/08,5.702494716903329 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/01,5.422156824999991 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/30,4.506474999999999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/30,4.590100000000001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/22,4.012425000000007 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/04/22,3.7285250000000074 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/25,4.283075000047499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/24,4.980661368779165 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/05/24,7.255237882037485 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/06/29,5.674875001980001 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/11,10.511104163271671 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/11,9.869670832305836 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/03,12.990158333405832 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/03,13.05951666704666 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/06/26,5.287975004695007 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/06/25,2.966578799999997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/06/25,3.3629864499999966 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/07/28,2.935302250000002 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/10,8.099935604223338 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/10,8.116368180745004 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/24,3.030084278113553 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/24,3.140657166575092 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/29,5.03682500101249 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/28,2.784680114999999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/08/28,2.3675460625000007 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/10/09,9.393149999239991 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/10/08,10.15102500092998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/30,17.838391666619145 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/29,3.937442939999997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/29,4.5046146019999975 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/22,4.467233301923071 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/21,3.910597739999994 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/09/21,4.3857613649999925 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/10/31,10.85124999793 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/09,5.249911369999994 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/08,2.163356699999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/08,2.2121816249999977 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/10/24,24.27742499999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/10,2.914022650000003 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/10,6.087902349999991 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/02,3.20395 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/02,7.2926522 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/24,3.520338249999999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/11/24,4.295637749999998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2022/12/26,10.45333333333334 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/02/27,22.539900000000006 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/02/21,10.759575000537511 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/02/20,10.758803320869228 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/03/26,24.44116666666665 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/04/10,11.967941668871658 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/04/09,14.08581666661916 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/04/01,12.992308333238334 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/04/01,12.758283333238335 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/09,10.181189585610836 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/11,22.19157499946251 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/11,16.561866666596664 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/31,7.434486360312501 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/26,3.9800930514058273 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/05,14.300608334455829 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/04,3.306400000000007 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/04,3.1328750000000043 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/28,21.18860417171918 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/27,13.31551917456417 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/05/27,12.84419395263416 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/22,6.586486360772501 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/07,7.017450758768331 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/06,5.971650000262499 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/06,5.305575000094998 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/06/21,5.083573102564097 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/05,4.349235347265111 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/31,5.013301809102558 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/30,6.471599249503333 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/30,6.563610616767502 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/23,9.392580313333342 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/22,9.418883351878325 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/07/22,13.138566696639176 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/01,15.61092500000002 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/08,19.318699999784968 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/01,10.58310909019 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/31,9.078858337933326 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/31,10.553975009199991 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/23,3.850746939999997 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/08/23,4.239520539999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/28,6.674774998127511 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/10/03,5.8239787916666685 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/10/02,5.043490969999995 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/10/02,4.328846966666662 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/09/25,4.074402279999995 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/11/11,2.6684758000000017 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/11/03,4.988915969999996 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/11/03,5.012209174999999 -Lewey Lake,120052962,-74.32952477279633,43.68784939402256,2023/11/28,2.540600000000003 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/02/06,23.96396666666665 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/04/26,16.07055237105584 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/05/04,3.2031545000000063 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/04/27,7.023736369195834 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/06,5.567216669314173 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/05,3.0998250000000063 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/05/29,3.5136340999999978 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/08,10.318708342505822 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/29,6.0783999938300095 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/22,2.7867287330725 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/07,23.21439166716168 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/06/21,6.007759615457105 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/08/09,17.30653195168194 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/31,4.731656952191665 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/24,3.088560621666664 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/08/01,3.212929499999999 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/07/23,5.538487516124166 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/08/25,18.186306113606094 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/09/09,9.788824999999996 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/09/02,7.370390882355195 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/09/26,5.691728148554404 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/10/11,2.9568672799999987 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/10/04,5.859759965481545 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/09/25,7.255024999999996 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/11/04,7.120736354999992 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/11/05,11.590800000000009 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/11/29,4.195266904415003 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2015/11/21,2.8216665049999987 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/01/07,11.567294861158596 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/04/05,10.952752387994986 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/03/27,4.573006540739401 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/04/21,6.463047735142494 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/05/23,11.301866665926669 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/05/31,2.1206988350000024 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/06/24,3.846509089999999 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/07/09,7.8330598581349955 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/07/02,2.8661567500000014 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/06/23,4.428325000262499 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/11,11.458902087363334 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/02,6.08539999961751 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/07/26,12.643400018895012 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/10,7.051177270217501 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/03,2.6100942507692326 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/03,4.829309099999999 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/27,7.17276137 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/11,6.887991670774154 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/04,13.039332307022296 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/08/26,11.463883337253336 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/10/05,8.606964373405823 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/28,9.082553793333323 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/10/06,4.292776479670327 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/09/27,3.4066277894358943 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/11/07,5.814785782692306 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/12/09,8.001700000000001 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/01/02,6.027099999355007 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2016/12/25,7.555199996714997 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/02/03,5.834099998185014 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/02/27,2.962660195 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/04/08,14.608333373310822 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/04/24,6.779757588333326 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/04/23,6.191139984871788 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/02,5.543449999760007 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/10,4.461063499999998 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/03,4.381814787084159 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/07/04,6.956350000732496 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/27,12.810548196554448 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/07/05,3.422016540072497 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/06/26,2.8211750000000038 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/07/29,14.980825000189991 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/08/06,4.1613295000725 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/08/30,11.926387499785 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/08/22,14.125908352175824 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/10/01,9.04456060340584 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/09/22,19.848106822299997 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/09/30,4.395194230769233 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/09/23,15.566011120501098 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/10/24,4.191061009462498 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/10/25,3.2152060448717954 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/12/04,10.30874583314834 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2017/12/03,2.61605225 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/04/11,9.335590890940834 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/04/10,2.750550000000004 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/05/05,3.911796661538455 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/05/29,3.6545257633333312 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/05/28,6.94060833339334 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/07/07,6.419063640753336 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/06/30,12.61676463846834 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/06/21,5.615249999712509 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/07/08,6.600228009166663 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/06/29,10.27110000011751 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/06/22,16.55802916666665 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/08/09,20.23790002300001 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/09/02,7.290866664861685 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/08/24,16.779989861063605 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/09/01,9.110975000119996 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/08/25,9.684949998022494 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2018/12/07,12.46777715285084 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/02/09,11.25039166725167 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/02/08,4.2082919855769205 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/03/28,12.08833333351833 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/04/30,9.494868750590015 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/05/08,4.531945445 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/06/08,3.4792810616666623 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/06/01,15.893516666714198 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/06/09,2.8392000000475046 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/07/10,13.925829171369172 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/07/03,4.144174982499998 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/06/25,4.76357739911936 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/08/11,7.431305299726667 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/08/04,5.779881249555002 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/07/26,12.380593750020005 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/08/03,15.36803958717332 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/07/27,12.286038638605003 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/05,25.48297000000001 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/04,15.949508361080834 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/28,16.607077569393347 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/21,13.292882469047598 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/09/29,11.039186359999997 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/10/23,11.706272085253318 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2019/11/23,12.092698471666647 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/02/20,21.75304166666668 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/05/02,9.535256056666666 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/05/10,12.380391665026668 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/05/26,6.32769408199999 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/07/05,4.732969698813332 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/07/04,2.993131750000003 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/08/06,9.770457580000004 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/08/05,13.765075000119998 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/08/22,14.686361949381949 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/09/06,5.475312888152497 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/08/30,9.035420455 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/10/09,12.892657363458609 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/10/08,10.10582502153499 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/09/22,8.112354103107487 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/11/10,6.544452915714277 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/10/25,11.227029184881667 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2020/11/09,5.1849253987179456 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/04/03,14.24057499502751 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/04/02,18.07569168555168 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/06/06,12.380724999905016 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/05/29,4.410100000144994 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/07/07,8.809077289999996 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/06/21,8.541049997867502 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/07/24,21.007333333333328 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/08/08,13.625546176081668 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/07/23,3.386030361666664 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/10,17.769708372433353 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/08/25,13.228583352500824 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/09,4.645495569492383 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/02,2.674544230769235 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/08/24,4.7281818199999925 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/26,5.578001516714169 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/10/11,6.465488509999997 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/09/25,26.563983354223343 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/10/28,12.157132781512775 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/11/05,7.260812096666658 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/11/24,6.11433173717948 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2021/11/21,5.227606820167498 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/02/24,13.932960417001686 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/04/05,11.967791717314167 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/03/29,15.295519230769225 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/03/28,7.660599995165003 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/05/08,4.235099999999996 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/04/30,3.749740919999994 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/04/29,3.7490882675283306 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/04/22,3.5741750000000074 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/06/05,2.8887619746666644 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/05/31,3.03433712898583 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/06/08,8.667325000167498 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/05/31,5.238081066234168 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/05/24,13.482400036947492 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/09,10.967800008333333 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/04,8.005033331568342 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/11,14.005108390880844 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/10,6.396775000714983 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/03,5.648416671314161 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/07/02,8.173092053138332 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/06/25,3.029723936538461 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/06/24,4.076614314743587 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/07,12.278402499985004 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/11,17.67430000015501 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/03,7.985024253333323 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/09/10,10.172182570000004 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/28,26.348291675914155 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/08/27,3.73112614307692 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/10/02,6.545920827863344 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/10/06,5.583467442104162 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/09/21,23.361927796367805 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/11/05,5.083748220203335 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/11/08,6.702270744102562 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/11/07,3.165017339999997 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/10/30,4.08994167628205 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/10/22,10.337493929999994 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/12/10,7.145271071025633 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/11/24,4.4948250024424965 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/01/11,7.901524998695001 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/12/26,16.966150000237516 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2022/12/25,12.35719166666666 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/02/04,10.24547499978501 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/02/20,12.657641666666668 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/04/09,6.708709644871788 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/04/08,4.944584099999997 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/04/01,5.000261449999994 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/09,11.15584583435586 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/11,10.195354529999989 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/10,14.863035057897491 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/06/05,6.718077082985846 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/31,5.329638256951675 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/06/04,6.282962504476664 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/06/03,7.837808332185842 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/27,11.798494588458318 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/05/26,3.716150000000003 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/06/22,9.72333333289835 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/07/06,11.071041674324162 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/07/05,11.169832789067769 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/07,6.555025000072497 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/06,3.421279659999996 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/07/30,3.4179204499999964 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/07/22,3.723175000000002 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/09/06,8.286159447604433 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/09/01,8.100959090047507 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/09/08,7.841000000264999 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/31,3.0341263149999964 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/23,4.06143854230769 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/08/22,7.586900004999998 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/10/08,10.29550547628296 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/10/03,8.218970875723334 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/09/28,20.362291667191663 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/10/02,4.03350196538461 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/11/03,3.54460101923077 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/11/02,3.1772217730769223 -Oneida Lake,166766871,-75.90996474673365,43.20338763298805,2023/11/26,3.517725000047497 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/01/22,23.479458333333323 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/06,21.791766666666685 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/01/22,23.479458333333323 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/06,21.791766666666685 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/23,22.407050000000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/23,22.373925000000007 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/22,23.1518 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/23,22.407050000000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/23,22.373925000000007 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/02/22,23.1518 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/03,12.049524999785 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/11,9.582274999380008 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/03,12.049524999785 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/11,9.582274999380008 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/28,6.703049992725012 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/28,6.47547499212501 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/06,7.741358335705819 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/06,6.545125002444996 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/28,6.703049992725012 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/04/28,6.47547499212501 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/06,7.741358335705819 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/06,6.545125002444996 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/06,8.164901131842493 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/30,6.941978841389165 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/30,7.053053841251661 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/07,13.53265833333332 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/07,14.267433333333315 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/29,4.322613264007498 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/22,3.143950919999998 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/22,3.461431820000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/06,8.164901131842493 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/30,6.941978841389165 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/30,7.053053841251661 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/07,13.53265833333332 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/07,14.267433333333315 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/29,4.322613264007498 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/22,3.143950919999998 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/05/22,3.461431820000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/07/08,9.35559166329667 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/22,10.476264583623331 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/30,15.390424999540002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/07/08,9.35559166329667 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/22,10.476264583623331 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/06/30,15.390424999540002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/09,2.929958361666664 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/02,6.914728032803335 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/02,6.750703032755837 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/07/24,15.6963 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/10,20.002924999569988 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/10,4.226284091424998 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/01,3.4664045400000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/09,2.929958361666664 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/02,6.914728032803335 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/02,6.750703032755837 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/07/24,15.6963 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/10,20.002924999569988 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/10,4.226284091424998 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/01,3.4664045400000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/03,11.415703526919996 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/03,11.316935608655832 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/25,2.9732256296666644 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/11,3.9703953163461567 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/11,3.3376998115384606 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/02,3.157327250000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/26,2.839152250000006 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/26,2.8346250000000053 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/03,11.415703526919996 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/03,11.316935608655832 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/25,2.9732256296666644 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/11,3.9703953163461567 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/11,3.3376998115384606 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/02,3.157327250000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/26,2.839152250000006 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/08/26,2.8346250000000053 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/05,9.645829167616686 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/05,9.86586250038002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/26,4.412400387878333 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/04,10.5983886250725 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/27,3.0230610240384608 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/27,3.105100855769229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/05,9.645829167616686 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/05,9.86586250038002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/26,4.412400387878333 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/10/04,10.5983886250725 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/27,3.0230610240384608 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/09/27,3.105100855769229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/05,2.590399930769229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/05,2.590399930769229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/22,3.690891756923075 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/22,3.587756430384612 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/12/07,2.637975000000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/30,3.80320000012 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/30,3.696050000119997 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/21,3.5791545499999984 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/22,3.690891756923075 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/22,3.587756430384612 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/12/07,2.637975000000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/30,3.80320000012 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/30,3.696050000119997 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2015/11/21,3.5791545499999984 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/02/26,22.337341666666678 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/02/26,22.26459166666668 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/03/05,10.498574999427513 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/03/05,10.856474999690017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/02/26,22.337341666666678 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/02/26,22.26459166666668 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/03/05,10.498574999427513 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/03/05,10.856474999690017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/05,6.367959099999992 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/05,6.367959099999992 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/30,3.225702433666665 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/30,3.2364842536666654 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/21,4.033982280999994 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/29,5.154397724999998 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/22,3.158200000000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/22,2.755300000000004 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/30,3.225702433666665 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/30,3.2364842536666654 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/21,4.033982280999994 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/29,5.154397724999998 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/22,3.158200000000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/04/22,2.755300000000004 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/23,7.433967310293562 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/31,3.877879171461664 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/24,3.833818179999992 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/24,6.503617423405846 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/23,7.433967310293562 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/31,3.877879171461664 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/24,3.833818179999992 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/05/24,6.503617423405846 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/03,8.032808354128333 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/03,6.481016673851672 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/24,7.525370827223328 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/11,6.429500000409989 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/11,5.008975000457493 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/25,3.0948323807692306 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/25,3.22757654326923 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/03,8.032808354128333 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/03,6.481016673851672 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/24,7.525370827223328 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/11,6.429500000409989 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/11,5.008975000457493 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/25,3.0948323807692306 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/06/25,3.22757654326923 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/11,10.755829175461662 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/04,2.5137091000000007 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/04,2.476085600000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/03,2.6750540548076924 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/27,3.320127269999999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/27,2.8560026250000017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/11,10.755829175461662 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/04,2.5137091000000007 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/04,2.476085600000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/03,2.6750540548076924 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/27,3.320127269999999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/07/27,2.8560026250000017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/05,3.114038461538461 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/05,3.539331061666661 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/27,2.696175758333332 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/04,2.4456522250000017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/28,13.9981125000725 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/28,14.627687500310005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/05,3.114038461538461 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/05,3.539331061666661 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/27,2.696175758333332 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/04,2.4456522250000017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/28,13.9981125000725 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/08/28,14.627687500310005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/07,6.472026564380943 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/07,2.616699861405833 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/28,19.738685833903357 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/21,4.319172622380946 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/21,3.2568371183333285 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/06,2.771646268269229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/29,2.795079805769229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/29,2.8843286365384597 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/07,6.472026564380943 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/07,2.616699861405833 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/28,19.738685833903357 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/21,4.319172622380946 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/21,3.2568371183333285 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/06,2.771646268269229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/29,2.795079805769229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/09/29,2.8843286365384597 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/08,3.202705952999996 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/08,3.2372636649999977 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/23,4.8930409050474974 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/23,4.327522725095 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/07,3.3232933557692315 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/08,3.202705952999996 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/08,3.2372636649999977 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/23,4.8930409050474974 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/10/23,4.327522725095 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/11/07,3.3232933557692315 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/12/10,5.794450000400007 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/12/10,5.544124999540006 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/12/10,5.794450000400007 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2016/12/10,5.544124999540006 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/28,13.412433333190831 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/20,20.247183333238368 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/20,20.207908333238368 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/28,13.412433333190831 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/20,20.247183333238368 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/02/20,20.207908333238368 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/08,22.27547500000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/03/23,22.451158333333343 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/09,14.274683336973323 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/08,22.27547500000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/03/23,22.451158333333343 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/09,14.274683336973323 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/03,6.08832499518001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/03,6.210099995610011 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/24,7.758597729999999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/11,2.731187175000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/11,2.5854935750000023 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/03,6.08832499518001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/03,6.210099995610011 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/04/24,7.758597729999999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/11,2.731187175000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/05/11,2.5854935750000023 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/11,9.260049997970006 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/11,9.260049997970006 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/05,2.585088450000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/28,3.556550000000008 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/28,3.213350000000009 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/05,2.585088450000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/28,3.556550000000008 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/06/28,3.213350000000009 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/07,14.01127083445833 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/07,13.742262501172496 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/29,20.80034166622165 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/06,2.6053750000000004 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/30,2.2441339499999997 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/30,2.6722140432692303 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/07,14.01127083445833 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/07,13.742262501172496 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/29,20.80034166622165 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/06,2.6053750000000004 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/30,2.2441339499999997 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/07/30,2.6722140432692303 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/30,3.9769088314344048 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/08/30,3.9769088314344048 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/10,8.298666660446676 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/01,3.149094649999995 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/24,6.471116663333334 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/24,6.260927270000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/02,3.0490274611263737 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/02,3.038751829395604 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/23,2.6016953500000035 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/10,8.298666660446676 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/01,3.149094649999995 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/24,6.471116663333334 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/24,6.260927270000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/02,3.0490274611263737 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/10/02,3.038751829395604 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/09/23,2.6016953500000035 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/11/11,5.5110992977142805 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/11/11,5.143112176047614 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/11/10,2.057197650000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2017/12/04,3.2221874999725038 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/01/29,9.997641666851674 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/05/05,10.584475002300003 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/05/29,4.54878841299178 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/05/30,4.661750000000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/05/30,3.528796399999996 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/07/09,3.789905318405828 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/07/09,3.807600768405828 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/07/01,6.766375000000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/07/01,3.092300000047502 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/06/22,3.1489132807692304 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/08/10,3.544116561666659 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/08/10,3.5154506716666587 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/08/09,4.901925000000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/10/05,4.167055703205127 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/10/05,4.936874428846152 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/11/22,10.913916666851671 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/11/22,11.109291666651671 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2018/12/23,11.22756666666668 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/02/09,12.998741665991664 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/02/01,21.908183333285848 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/01/25,13.003799999522496 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/01/25,21.791766666666685 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/03/06,22.26459166666668 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/03/06,22.26459166666668 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/02/26,21.867666666666683 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/02/26,21.867666666666683 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/04/23,7.487689393333333 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/04/23,7.481689393333332 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/05/08,5.171833336108327 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/04/22,2.072097599999997 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/10,11.821175000219997 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/10,9.21177499395249 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/01,8.45882499957001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/09,2.2619976999999984 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/26,3.660110606666657 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/06/26,3.821749999999988 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/07/04,15.05594999999998 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/04,8.8920041847675 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/05,2.263716667307693 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/05,2.526654114102563 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/07/27,6.253249245965838 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/05,3.0442113999999982 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/29,3.964752270167503 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/08/29,4.534427270192498 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/06,2.8390626865384605 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/06,3.0276470480769246 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/21,6.962524236666667 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/10/08,2.40993831153846 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/10/08,3.4050864044871743 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/09/29,15.862858333023333 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/11/08,7.470475000112512 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/10/23,6.5855795652175 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/12/11,13.605091666786665 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/12/11,3.060402249999999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/11/25,22.243191666904185 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2019/11/25,18.563281252712525 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/03/08,12.74819166661917 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/02/28,22.30574166666668 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/02/21,22.476608333333346 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/02/29,21.838800000000013 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/02/20,21.78088333333335 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/04/01,16.503325000190006 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/04/01,13.890875000237507 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/02,3.823984570999996 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/04/25,7.191103033478335 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/04/25,7.137378033478333 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/03,2.746229500000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/03,4.543205353333326 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/27,3.427559095072497 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/27,3.372965151739164 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/06/04,2.435375000047498 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/06/04,2.389227249999999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/05/26,2.792618150000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/05,14.045633356428349 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/06,2.6742083557692298 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/06,3.102024293269229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/06,13.41620833333334 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/30,6.26564242915917 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/07/30,6.148767429231669 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/07,3.350879500095004 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/07,12.520041666866645 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/31,14.435404166856667 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/31,12.053470833428348 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/22,2.7073954503374984 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/08,6.2954250012224975 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/08,7.958250000794992 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/23,4.304968179999993 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/08/23,2.9505812500000017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/10/09,5.256091565714279 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/23,9.101155303769168 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/10/10,3.000900000000003 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/10/01,3.0074473730769227 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/24,11.66925000234751 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/09/24,5.907675000309999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/11/10,10.335994592380942 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2020/10/25,10.21900832976334 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/01/29,22.67296666666667 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/01/30,21.867666666666683 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/03/02,22.26459166666668 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/04/03,13.014841665991666 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/03/26,18.486975000047483 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/05/06,2.456081750000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/05/06,2.4740067500000005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/06/07,3.1406590000000016 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/06/07,3.5856907115384637 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/05/29,18.542916668066663 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/06/23,2.576465820000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/06/23,3.2192397949999982 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/02,9.905595837793337 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/02,7.14975585837583 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/10,5.130356819999995 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/10,6.615877270072499 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/07/25,3.2932 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/07/25,5.416748200000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/25,14.404499999784994 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/09/11,3.5434500000000075 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/09/11,3.507250000000008 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/26,3.756571996153845 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/08/26,4.353378823076922 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/09/26,4.309900002347503 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/06,7.963977919047612 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/06,10.01550594238094 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/10/28,8.387050021122498 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/09,2.9123339999999995 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/09,2.7068610000000013 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/05,3.576255480769232 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/10/29,2.8100394182692305 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/10/29,2.670187855769231 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/12/07,12.603966666451662 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/24,2.938103118269229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/11/21,2.325840855357141 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2021/12/24,23.455858333333325 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/01/25,23.466524999999997 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/02/26,22.22352500000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/04/06,13.05790754406499 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/03/29,21.791766666666685 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/03/22,14.337033334483358 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/03/22,15.097412501150012 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/09,4.8816036823809466 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/09,4.648836259047612 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/09,2.7613553750000013 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/09,2.6368253500000027 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/08,3.0147134500000017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/01,2.6275549400000004 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/01,3.0184525049999973 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/04/30,5.140824999999999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/26,22.684712499042515 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/26,22.70163749904252 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/25,4.123607578645835 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/25,4.3681942309142245 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/05/24,4.124849999999992 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/07/04,3.450811369999995 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/29,4.001025000362495 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/29,3.868025000144991 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/07/03,6.4095341036175 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/26,3.2912 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/26,3.0464044999999995 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/06/25,2.3077067 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/07,3.4809931908699965 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/05,2.5704249999999984 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/05,2.6501750000000026 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/07/28,3.213975 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/07/28,2.601524999999999 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/10,6.743168180000002 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/24,3.90674205345 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/29,3.295929500000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/29,4.656229500000001 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/08/28,2.6287035543956048 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/22,7.118986909146903 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/22,11.720500016184994 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/30,5.923089026186664 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/30,4.589264025896664 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/22,3.2321940711538435 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/22,3.237902671153845 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/09/21,4.95895947832833 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/10/31,6.636530738181778 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/10/26,6.391024997760008 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/10/26,16.361212503742525 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/11/09,2.843009205769229 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/11/09,3.1570541730769217 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/11/08,2.2759179115384587 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/10/24,16.832454171741652 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/12/10,2.4494088500000006 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/12/02,3.0800862133333333 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/11/24,3.2112249999999998 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/12/27,10.864583333518338 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2022/12/27,11.27131666685167 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/02/04,22.274983333333346 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/02/21,11.370400000585004 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/02/21,11.048083333870846 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/10,11.841474999904994 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/10,11.833341666571664 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/02,12.412675005654991 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/02,12.730825004504991 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/04/01,13.872174999952495 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/09,8.679283332450858 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/31,7.040352646739166 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/26,2.409159714666666 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/26,4.24977561466666 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/28,7.331175000405 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/28,3.699061825072495 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/05/27,21.37655 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/06/22,3.004215156666665 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/07/06,3.751997724999992 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/06/21,3.745150000000004 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/06/21,3.70463175 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/07/30,5.081349999999995 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/07/22,4.678653033975829 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/06,7.244715910072496 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/01,7.602312876786666 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/01,4.582707583333328 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/01,2.8680589499999973 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/08/31,3.429012556333328 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/08/23,2.472739680769231 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/28,3.5650541654716683 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/23,8.245895827733344 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/23,9.65156249646501 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/10/03,4.967198364666659 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/10/03,2.6083686000000017 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/10/02,3.5811081424999958 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/25,14.222641666786672 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/09/25,7.680575000675005 -Long Lake,166766898,-74.36196453935563,44.040788078252966,2023/11/03,3.2463209174999936 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/07,10.120108333333354 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/01/22,24.44116666666665 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/06,12.498874999999996 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/07,10.120108333333354 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/01/22,24.44116666666665 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/06,12.498874999999996 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/23,22.348225000000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/03/10,21.675758333333352 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/22,21.838800000000013 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/23,22.348225000000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/03/10,21.675758333333352 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/02/22,21.838800000000013 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/04/03,9.856441666476677 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/04/03,9.856441666476677 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/04/28,5.939974999570007 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/06,4.8812250000000015 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/06,3.950165910000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/04/28,5.939974999570007 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/06,4.8812250000000015 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/06,3.950165910000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/06,4.600332613769399 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/30,3.857535832703332 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/30,3.109292381289878 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/07,11.823675000047492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/07,12.118150000237492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/29,3.581499999999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/22,6.934891673614154 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/22,4.469475000192494 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/06,4.600332613769399 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/30,3.857535832703332 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/30,3.109292381289878 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/07,11.823675000047492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/07,12.118150000237492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/29,3.581499999999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/22,6.934891673614154 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/05/22,4.469475000192494 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/07/08,3.805883447839044 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/22,5.168545121081898 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/07/08,3.805883447839044 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/06/22,5.168545121081898 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/08/09,4.427687885793333 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/08/09,4.427687885793333 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/03,7.922674997472509 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/11,2.556168000000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/11,2.632994750000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/03,7.922674997472509 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/11,2.556168000000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/11,2.632994750000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/05,7.188741660311673 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/05,8.357199994645008 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/26,3.6989060717391617 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/04,10.816510002419978 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/27,3.0585075048076917 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/27,3.0060735432692285 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/05,7.188741660311673 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/05,8.357199994645008 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/26,3.6989060717391617 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/10/04,10.816510002419978 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/27,3.0585075048076917 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/09/27,3.0060735432692285 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/05,2.371797311538459 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/05,2.371797311538459 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/29,2.7450545500949968 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/22,3.429243953913331 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/22,3.271466606884163 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/12/07,2.5954250000000023 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/30,2.65910760576923 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/30,3.452160177884609 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/29,2.7450545500949968 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/22,3.429243953913331 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/22,3.271466606884163 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/12/07,2.5954250000000023 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/30,2.65910760576923 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2015/11/30,3.452160177884609 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/01/24,21.791766666666685 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/01/24,21.791766666666685 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/02/26,22.34590833333334 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/02/26,22.34590833333334 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/05,12.350546973333335 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/03/29,8.468483332258343 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/03/29,12.492183333285835 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/05,12.350546973333335 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/03/29,8.468483332258343 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/03/29,12.492183333285835 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/07,6.477473332953333 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/30,4.418394091999993 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/30,3.987221361999995 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/21,12.522150034500008 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/29,4.492249999999998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/07,6.477473332953333 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/30,4.418394091999993 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/30,3.987221361999995 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/21,12.522150034500008 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/04/29,4.492249999999998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/23,4.272173332663336 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/31,4.11804053686333 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/24,14.06548333373332 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/24,14.094783333533323 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/23,4.272173332663336 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/31,4.11804053686333 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/24,14.06548333373332 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/05/24,14.094783333533323 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/03,9.015662506922496 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/03,8.937550005219991 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/24,11.88171667818916 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/11,12.63802499999998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/02,6.01880001369249 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/25,2.717025454395606 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/25,3.183891690934065 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/03,9.015662506922496 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/03,8.937550005219991 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/24,11.88171667818916 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/11,12.63802499999998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/02,6.01880001369249 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/25,2.717025454395606 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/06/25,3.183891690934065 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/11,16.092600111547494 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/04,3.4200669974358946 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/04,3.409416997435895 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/26,4.338492427932499 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/03,2.4369370875000005 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/27,5.008154500000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/27,3.0678953199999994 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/11,16.092600111547494 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/04,3.4200669974358946 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/04,3.409416997435895 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/26,4.338492427932499 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/03,2.4369370875000005 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/27,5.008154500000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/07/27,3.0678953199999994 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/05,3.181257780769229 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/05,2.99786378076923 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/27,2.2931106000000003 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/04,3.8307431999999952 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/28,5.007400000072492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/28,2.751052250000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/05,3.181257780769229 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/05,2.99786378076923 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/27,2.2931106000000003 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/04,3.8307431999999952 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/28,5.007400000072492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/08/28,2.751052250000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/07,5.221348385714278 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/07,5.505967319047612 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/28,8.52575985833333 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/21,2.5827932 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/21,2.2367954500000007 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/06,2.845780418269231 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/29,3.3221986557692293 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/29,2.606881700000003 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/07,5.221348385714278 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/07,5.505967319047612 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/28,8.52575985833333 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/21,2.5827932 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/21,2.2367954500000007 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/06,2.845780418269231 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/29,3.3221986557692293 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/09/29,2.606881700000003 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/08,8.578393199999988 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/08,3.726334996999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/23,9.664424129047609 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/23,9.06297791571427 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/07,3.2697478557692325 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/08,8.578393199999988 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/08,3.726334996999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/23,9.664424129047609 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/10/23,9.06297791571427 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/07,3.2697478557692325 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/12/10,12.157345839313344 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/12/10,10.952414585615848 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/23,22.672708333240838 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/12/10,12.157345839313344 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/12/10,10.952414585615848 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2016/11/23,22.672708333240838 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/28,13.20061666652417 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/03/08,10.42411667117166 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/03/08,11.976224999952493 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/20,15.298412499905004 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/20,15.426224999905005 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/28,13.20061666652417 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/03/08,10.42411667117166 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/03/08,11.976224999952493 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/20,15.298412499905004 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/02/20,15.426224999905005 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/04/09,19.839649999952528 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/04/09,19.839649999952528 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/04/24,7.453407578333331 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/05/11,8.342411747120831 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/05/11,5.938821974175829 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/04/24,7.453407578333331 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/05/11,8.342411747120831 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/05/11,5.938821974175829 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/06/11,5.896413240359285 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/06/11,5.896413240359285 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/05,4.827250000000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/05,4.827250000000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/29,7.302558338580837 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/30,3.122146224999998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/30,2.8159564500000016 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/29,7.302558338580837 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/30,3.122146224999998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/07/30,2.8159564500000016 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/30,6.0088483321658375 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/23,4.975094706884163 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/23,3.816246223550831 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/30,6.0088483321658375 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/23,4.975094706884163 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/08/23,3.816246223550831 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/01,5.141520755769227 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/24,2.431971218333332 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/24,2.5468143983333325 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/02,2.6224782182692308 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/02,3.143422043269229 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/23,2.8025727500000013 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/01,5.141520755769227 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/24,2.431971218333332 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/24,2.5468143983333325 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/02,2.6224782182692308 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/02,3.143422043269229 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/09/23,2.8025727500000013 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/11/11,5.380961411047611 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/11/11,4.770855351120113 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/11/10,2.9113750000000045 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/10/25,5.59686143999999 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2017/12/04,12.844483370133348 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/05/05,7.1057500023000095 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/05/29,4.433748846620116 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/05/30,2.8584370750000017 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/05/30,3.0151087250000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/09,4.728354599999986 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/09,4.732454599999985 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/06/30,13.139733333285823 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/08,3.980332725217495 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/01,5.530925001222496 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/07/01,5.180833335615826 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/06/22,3.091451899038462 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/08/10,3.042803789102565 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/08/10,3.104473019871796 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/08/09,4.423640910000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/09/03,3.0470384207692307 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/09/03,2.6664115700000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/08/25,5.796652249999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/10/05,2.993202265000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/10/05,2.731845400000002 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/11/22,11.927575000000004 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2018/12/23,10.788141666666675 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/01/25,21.919450000000012 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/01/25,22.115583333333348 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/02/26,21.848400000000016 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/02/26,21.75304166666668 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/04/23,3.860945268734408 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/04/23,3.5728602684369064 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/05/08,5.127024640640826 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/04/22,2.163588349999998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/06/10,10.113824999714993 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/06/10,10.319575000619992 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/06/01,9.869577083270835 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/06/09,3.7247909099999994 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/07/03,4.802671575695119 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/08/04,13.983800020747491 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/08/05,2.3153611500000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/08/05,2.6049559073717945 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/05,3.5599970066666606 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/06,2.8084019682692314 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/06,3.225527259615384 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/30,7.269499996685011 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/30,7.123699993030008 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/21,3.0720037816666634 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/10/08,2.7398630736263736 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/10/08,2.5002281432692297 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/09/29,11.087237499999995 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/10/23,17.614920833425845 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/11/09,13.24715000043 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/11/09,5.648150000192492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/12/11,3.587857043269232 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/11/25,3.0620308173076927 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2019/11/25,3.2144791923076896 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/02/05,22.480808333333343 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/03/07,22.173549999785013 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/02/20,21.791766666666685 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/04/01,15.178358334760858 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/04/01,12.268625001247514 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/02,7.166603801666663 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/04/25,4.409826529770835 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/04/25,4.211857968302502 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/10,2.8415817500000027 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/03,5.846025000145 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/03,4.166477250000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/27,3.097898334666662 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/27,3.0645983346666634 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/05/26,2.6748317500000023 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/05,17.521695832855823 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/06/28,3.5847249996400024 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/06/28,9.192040772644518 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/06,3.0269459423076928 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/06,3.197133028846153 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/06,3.331590915072496 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/30,12.128450007479987 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/07/30,15.264958365678336 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/07,3.931640925072492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/07,3.832459074999993 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/31,2.9233105833333326 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/31,2.3240288 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/22,3.02304093529 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/30,2.9159545000475 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/23,6.322225000144999 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/08/23,3.752327250000002 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/10/09,5.722807293919409 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/09/24,5.267600000795 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/09/24,4.3329750016674975 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/11/10,4.938857624380943 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/10/25,9.020954165854189 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/12/29,21.791766666666685 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2020/12/29,21.791766666666685 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/01/30,21.867666666666683 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/04/03,15.423719225449169 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/04/04,10.949374999810011 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/04/04,11.149324999810016 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/05/06,4.667450000000002 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/05/06,4.123806820000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/05/29,4.219375000360004 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/06/23,3.0156750000000003 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/06/23,2.757708999999999 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/10,3.865249999999993 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/10,3.634575624999992 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/07/25,4.396275000047497 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/07/25,11.354935140961729 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/09/10,6.948481242050007 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/25,9.728446501686731 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/09/11,12.918275000047492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/09/11,2.786825000000002 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/26,3.889999112307692 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/08/26,2.9312885700000004 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/09/26,15.821531167568324 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/11/06,7.400318180144994 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/11/06,5.558692426881666 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/10/28,6.844107590072492 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/10/29,2.85512116826923 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/10/29,3.169601623626373 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/12/07,3.083669230769229 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/11/24,2.6289902932692297 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/11/21,2.0891271999999965 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/12/24,24.44116666666665 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2021/12/23,3.8665000000000056 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/01/25,21.970933333333345 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/02/26,23.624491666666653 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/02/26,22.529033333333334 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/02/26,22.994266666666668 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/02/26,22.304175000000008 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/03/30,22.34590833333334 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/04/06,12.830835453844156 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/03/29,21.67155833333335 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/03/22,13.323033333285837 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/09,2.2959439875000003 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/09,2.4692844182692304 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/08,2.5588612400000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/01,3.3426613500724973 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/01,3.7111557134058337 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/04/30,7.048266676959149 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/31,17.030099999904994 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/25,3.797218200072498 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/25,4.051100000627499 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/05/24,3.290275000000007 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/04,3.628518190072495 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/04,3.323050000000005 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/04,3.4014750000000067 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/03,5.253014417326669 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/06/26,4.378471214468329 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/06/26,4.560904167584163 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/06/25,2.6852541000000008 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/05,3.324077250047503 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/05,5.205577300119992 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/28,11.477450000072482 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/07/28,17.11230000007247 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/10,3.6855060571741616 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/24,8.067341669349164 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/29,10.80103333357082 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/29,10.084325000524988 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/08/28,2.684129490000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/10/09,8.09168333110334 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/10/09,6.876356249687506 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/22,13.376466666666673 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/30,20.654329166651657 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/29,3.0267250000000034 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/22,2.356060960000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/22,2.6885766000000006 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/09/21,5.137584100144994 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/10/26,11.34435833333334 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/09,3.02565441826923 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/09,3.190051923076922 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/08,2.130356699999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/01,3.079375000000009 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/01,2.760004500000004 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/10/24,20.093841667181664 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/12/10,2.2499749499999986 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/12/02,22.502266665826674 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/11/24,2.998000000047502 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/12/27,22.274983333333346 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2022/12/27,22.274983333333346 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/04/02,12.212483333238332 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/03/24,8.969541666894179 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/09,9.82257083741334 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/31,3.362339998362496 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/26,3.049964997999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/26,3.1287832179999966 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/05,10.21672916695166 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/05,8.878550000627497 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/04,4.958369708314165 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/28,4.002321213598325 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/28,9.011475002997509 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/05/27,22.67465000230001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/22,2.679736221405834 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/06,3.350384099999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/21,3.4340750000000027 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/06/21,4.1031045 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/10,15.223683333488315 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/05,3.703934734739161 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/05,3.3036036436024947 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/31,3.426400000000001 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/31,6.321587430769227 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/30,3.241075713380836 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/23,3.6044044999999993 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/23,3.2403044999999997 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/07/22,4.272250000119998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/06,4.526300006666656 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/01,4.638524885714279 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/01,4.719338164102558 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/01,3.830250000289994 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/01,3.8056954999999952 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/31,2.9585452133333323 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/08/23,2.2306687875000004 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/10/03,6.958568945 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/28,8.290224991745003 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/23,7.190377250072504 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/23,4.882897625072501 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/10/03,2.85590225 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/10/03,3.466734025 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/10/02,2.6931398425 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/25,2.7398022499999994 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/09/25,3.095449099999998 -Lake Lila,166890770,-74.7541650782993,44.00243843031539,2023/11/03,3.009488159999999 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/03/11,13.46664166642917 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/02/23,22.348225000000006 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/03/11,13.46664166642917 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/02/23,22.348225000000006 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/04/28,9.602595846763329 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/06,9.056371669984172 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/06,8.592327923811675 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/04/28,9.602595846763329 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/06,9.056371669984172 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/06,8.592327923811675 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/07,15.320908333333348 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/07,16.969458333333346 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/22,18.255025020747524 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/22,7.057304178325835 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/07,15.320908333333348 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/07,16.969458333333346 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/22,18.255025020747524 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/05/22,7.057304178325835 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/01,10.97116666643919 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/23,17.020825000000006 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/01,10.97116666643919 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/06/23,17.020825000000006 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/02,4.382758333665836 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/10,3.179275688846153 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/25,4.854100039999995 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/25,3.625215909999997 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/02,4.382758333665836 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/10,3.179275688846153 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/25,4.854100039999995 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/07/25,3.625215909999997 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/11,3.113625000000001 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/26,5.593455308974357 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/11,3.113625000000001 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/08/26,5.593455308974357 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/10/05,22.89203333348833 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/27,8.322083335728331 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/27,19.7624916667142 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/10/05,22.89203333348833 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/27,8.322083335728331 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/09/27,19.7624916667142 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/12/08,7.191821820095004 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/11/30,16.564025000475002 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/11/30,16.484750002442507 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/12/08,7.191821820095004 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/11/30,16.564025000475002 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2015/11/30,16.484750002442507 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/01/25,17.601550003887503 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/01/25,17.601550003887503 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/02/26,9.05210833344836 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/02/26,9.05210833344836 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/03/29,9.657356250012512 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/03/29,9.657356250012512 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/30,11.734941677124176 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/22,8.965675000217498 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/22,3.816125 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/30,11.734941677124176 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/22,8.965675000217498 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/04/22,3.816125 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/06/09,13.027085799912513 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/05/24,6.1164394025525 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/05/24,5.156933496680832 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/06/09,13.027085799912513 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/05/24,6.1164394025525 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/05/24,5.156933496680832 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/07/03,8.299160003110003 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/06/25,11.791897729999992 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/07/03,8.299160003110003 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/06/25,11.791897729999992 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/04,8.812887777920272 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/07/27,4.921573942307687 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/04,8.812887777920272 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/07/27,4.921573942307687 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/09/05,23.604150002015007 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/28,7.723836271097497 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/28,8.764070868475837 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/09/05,23.604150002015007 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/28,7.723836271097497 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/08/28,8.764070868475837 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/07,8.722592948584168 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/09/21,14.430925000942509 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/07,8.722592948584168 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/09/21,14.430925000942509 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/11/08,24.065725002925 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/23,21.921895838998363 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/31,19.68272500688504 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/31,16.06852501195003 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/11/08,24.065725002925 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/23,21.921895838998363 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/31,19.68272500688504 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/10/31,16.06852501195003 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/12/10,15.206104168321696 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2016/12/10,15.206104168321696 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/01/11,13.039983333095837 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/01/11,13.039983333095837 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/02/28,9.471634595510828 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/03/08,12.66390000000001 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/03/08,12.66390000000001 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/02/28,9.471634595510828 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/03/08,12.66390000000001 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/03/08,12.66390000000001 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/04/09,11.963774999427509 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/04/09,12.273025000000008 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/04/09,11.963774999427509 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/04/09,12.273025000000008 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/03,9.83812500001251 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/03,9.83812500001251 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/27,8.761800000264993 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/27,7.357141667569148 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/27,8.761800000264993 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/05/27,7.357141667569148 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/06,6.016574993230007 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/06,6.016574993230007 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/30,5.43231227199999 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/30,5.038843179999992 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/30,5.43231227199999 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/07/30,5.038843179999992 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/09/08,9.326400002842506 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/08/23,18.402924999937493 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/09/08,9.326400002842506 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/08/23,18.402924999937493 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/09/24,10.706813750237494 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/10/02,18.30634242577581 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/10/02,19.54156742577581 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/09/24,10.706813750237494 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/10/02,18.30634242577581 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/10/02,19.54156742577581 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/11/11,10.12100417828416 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2017/11/11,10.12100417828416 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/01/06,21.75304166666668 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/05/30,21.136074998660025 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/05/30,15.124366666354204 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/07/09,10.0047022700725 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/07/01,7.59287992529 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/08/02,14.708041671171673 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/10/05,11.068620439999997 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/10/05,21.18234167370918 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/11/22,6.648813861282044 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2018/11/22,7.001179771282045 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/02/26,3.1731000000000007 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/02/26,3.8234500000000016 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/05/09,9.486483333283346 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/04/23,8.898504167981661 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/05/25,7.14552499207501 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/06/26,10.153768180095009 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/07/04,4.3304651971153865 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/07/04,5.340999999999993 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/08/05,13.05520075671415 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/08/29,18.70032499978499 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/09/06,22.925700000232517 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/10/08,23.548624999370013 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/09/22,16.70373333323832 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/09/22,16.041024999999998 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/11/01,4.0645545450460725 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/11/09,21.60434999926003 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/10/24,19.183791667626668 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/10/24,16.983208336260837 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/12/03,11.197516666689165 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/12/11,4.709859061153838 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2019/12/11,5.613150276923069 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/04/01,14.175108335870815 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/04/01,14.647043180047476 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/04/25,4.898575000270011 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/05/03,10.112456254479994 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/05/03,10.292831256205 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/05/27,8.909350007510003 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/06/04,6.298266666786671 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/07/06,11.940142423333327 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/07/06,10.932200000119996 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/07/22,2.6669022500000072 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/08/23,4.138834099999995 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/10/10,9.993025004599993 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/10/10,8.658950003639996 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/11/03,5.917095829878348 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2020/12/29,19.995941667169173 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/01/22,13.09812333323834 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/03/11,14.606256254457495 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/05/06,6.5597624973224935 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/05/06,5.962956436304163 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/06/07,15.081758333428311 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/06/07,10.665346532995269 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/06/23,3.321400000000007 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/06/23,2.906352250000004 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/08/02,9.947972916739172 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/08/10,13.155775004430009 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/08/10,13.615218347300832 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/09/11,4.289620966346156 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/09/11,13.923600000190008 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/08/26,13.0538562522525 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/11/06,15.54582083453083 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/11/09,12.471227085073354 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/10/29,19.98770075968917 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2021/10/29,20.893259093022507 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/02/10,10.104541666191688 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/02/02,21.967658333333347 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/02/26,13.280266666851665 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/03/22,10.594131249475012 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/03/22,10.650306249190017 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/09,12.34673333393586 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/09,17.620134090237517 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/09,17.577225002585017 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/01,13.264475000000006 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/01,13.264475000000006 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/31,14.235950004157475 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/31,14.474648335258312 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/05/26,6.816570816183338 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/10,9.199552084553334 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/10,10.556542500519996 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/29,9.652130840688322 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/07/04,12.758189275348336 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/07/04,13.450835651485836 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/26,11.985980004642494 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/06/26,7.515343966061673 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/07/28,9.2328500001925 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/07/28,8.815000000217498 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/08/29,15.734525000237475 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/08/29,16.622558333188305 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/10/09,13.37337208552832 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/09/22,4.940521936666664 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/09/22,5.113738534999997 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/10/26,10.75080000129 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/11/09,10.497106267435893 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/11/09,10.3900381074359 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2022/12/27,21.84584999999002 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/02/10,9.173293334413318 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/01/28,21.883075000474992 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/01/28,12.707213633380814 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/02/27,7.682020005535 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/02/21,8.518225000479996 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/03/26,9.86049791870668 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/03/26,8.755910003000004 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/04/10,12.4484500003325 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/04/10,16.469600000332505 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/04/02,8.505245836038346 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/04/02,7.715295836063349 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/05/26,8.310802270502505 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/05/28,10.802860986809169 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/05/28,3.694974999999996 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/06/29,11.650524999999991 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/06/29,14.829724999999996 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/06/21,3.820525000095005 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/08/05,8.933930418344165 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/31,7.813172629047614 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/31,5.234050000072492 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/31,11.860800000047494 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/23,10.92547121007251 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/07/23,21.92327000009501 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/01,18.88455909000001 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/01,19.11343409000002 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/01,6.6828826969999895 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/01,5.489612331999996 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/28,7.455475000047502 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/09/28,15.20864166554417 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/11,5.387359857656665 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/11,4.875221219306664 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/03,8.032807431333326 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/03,6.78039470333333 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/25,11.560616687581671 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/25,11.940814596908336 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/27,25.72787500258503 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/10/27,25.231375002490022 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/11/28,3.32374423076923 -Schoharie Reservoir,3247342,-74.4413763112454,42.366071815730784,2023/11/28,3.405775 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/03/11,10.722600000000016 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/03/11,10.722600000000016 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/04/04,12.290158333285824 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/04/04,12.290158333285824 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/04/28,12.669606283824994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/04/28,12.669606283824994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/05/30,7.59697043215417 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/06/07,13.3726875000725 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/05/22,4.117350000072497 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/05/30,7.59697043215417 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/06/07,13.3726875000725 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/05/22,4.117350000072497 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/08/02,4.7844210614058245 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/07/25,15.018945833453332 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/08/02,4.7844210614058245 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/07/25,15.018945833453332 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/03,7.049412485947499 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/11,4.109889920769227 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/08/26,4.803316831999994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/03,7.049412485947499 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/11,4.109889920769227 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/08/26,4.803316831999994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/27,2.619460475000001 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/09/27,2.619460475000001 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/11/30,3.969361959615378 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2015/11/30,3.969361959615378 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/10,22.451158333333343 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/01/25,10.000733333118344 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/02,12.898075001340006 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/10,22.451158333333343 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/01/25,10.000733333118344 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/02,12.898075001340006 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/26,8.906662507529994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/02/26,8.906662507529994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/03/29,13.656100007747495 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/03/29,13.656100007747495 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/06/09,9.05887158189 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/06/09,9.05887158189 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/07/03,5.822563102980838 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/06/25,8.722696590000007 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/07/03,5.822563102980838 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/06/25,8.722696590000007 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/08/04,3.5360915148116643 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/07/27,4.869625039999997 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/08/04,3.5360915148116643 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/07/27,4.869625039999997 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/09/05,25.50430166676169 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/08/28,12.059524999952492 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/09/05,25.50430166676169 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/08/28,12.059524999952492 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/07,6.589956816666668 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/09/21,26.880610004600037 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/07,6.589956816666668 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/09/21,26.880610004600037 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/11/08,22.442006824600007 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/23,14.70945833511833 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/31,8.695922759999998 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/11/08,22.442006824600007 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/23,14.70945833511833 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2016/10/31,8.695922759999998 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/01/11,12.788716667124175 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/01/11,12.788716667124175 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/04,21.67155833333335 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/04,21.67155833333335 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/28,6.579627092455833 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/03/08,9.91946819 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/20,17.337404166619155 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/28,6.579627092455833 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/03/08,9.91946819 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/02/20,17.337404166619155 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/04/09,20.83161742807586 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/04/09,20.83161742807586 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/05/03,10.14852083696333 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/05/03,10.14852083696333 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/06/28,9.063650002419994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/06/28,9.063650002419994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/07/30,12.520739690769217 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/07/30,12.520739690769217 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/09/24,8.103113633333336 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/10/02,4.632723800769231 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/09/24,8.103113633333336 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/10/02,4.632723800769231 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/11/11,23.99230076126669 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/10/26,12.375375001260004 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/11/11,23.99230076126669 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/10/26,12.375375001260004 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/11/27,8.995416679704174 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2017/12/29,6.554349994827512 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/03/11,21.675758333333352 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/04/28,3.48061923076923 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/05/30,7.923214019716664 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/07/09,9.036241666666678 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/08/02,9.954016667816663 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/08/26,23.97581666659417 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/09/03,26.982183337933325 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/09/27,23.100600160233345 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/10/05,15.479441666651653 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2018/11/22,3.3188442307692285 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/02/10,5.506027665343331 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/02/26,4.530210803269228 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/04/07,7.82878333915584 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/04/23,13.319879167506665 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/06/26,6.832850000145008 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/07/04,7.075133333690814 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/07/28,9.879008332855824 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/08/05,13.116324999999993 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/08/29,7.270725006737495 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/10/08,12.037283340233335 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/09/22,13.124324999999995 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/11/09,7.644166665804168 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/10/24,12.164147729999998 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2019/11/25,19.109341666851652 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/03/08,20.527408360933364 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/02/21,13.468783333295844 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/05/03,17.913591715014185 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/05/27,16.379774999354996 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/06/04,5.179700000332505 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/07/06,19.778480833428336 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/08/07,11.972358333333329 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/07/22,21.11522500267997 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/09/08,11.419600000189998 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/08/23,15.22310833268832 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/10/10,22.385666673566675 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/01/06,5.782224998220006 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2020/12/29,2.9614522500000064 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/01/22,22.337341666666678 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/03/11,10.959091666451668 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/03/03,16.297241666619165 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/05/06,19.32564999970751 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/06/07,24.093325000095007 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/06/23,11.86274457399834 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/09/11,15.342825004647516 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/08/26,17.135266666404174 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/09/27,22.17713333393333 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/11/06,15.913579555633351 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/11/09,12.279201524999998 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/10/29,3.013700000000006 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/11/22,5.930799997300008 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2021/11/24,4.992342476666662 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/02/26,20.95086666676169 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/02/26,13.212766666524168 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/03/22,7.940578365218338 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/05/09,8.232339393333337 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/05/09,5.10619621568083 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/05/31,13.297450002542504 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/06/10,13.256499999999994 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/06/29,9.42904318000001 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/07/04,16.29465000129752 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/06/26,4.334268943333327 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/08/02,8.858799990122497 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/08/05,16.134983333333324 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/08/29,2.4505250000000016 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/10/09,11.549616666666672 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/09/22,22.070833333333347 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2022/11/09,4.800149999999998 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/01/28,5.143548961538459 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/03/09,4.119303749999999 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/03/26,13.944169703966685 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/04/10,2.738662975000004 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/04/02,8.81900757833332 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/05/31,25.64165625000003 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/05/26,3.314282424739162 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/06/05,5.147902963333333 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/05/28,2.611203699999998 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/06/29,19.34980833333333 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/06/21,4.793550000579993 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/08/05,22.735224585728343 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/07/31,23.229825000000016 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/07/31,13.61018333333334 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/07/23,13.070829925697502 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/09/01,21.606024999785003 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/08/27,14.558925014037502 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/09/01,19.24778333563333 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/09/28,14.939929166379166 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/10/03,26.396775002300014 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/10/25,9.625220833568338 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/10/27,19.23059166666666 -Swinging Bridge Reservoir,4147012,-74.78334496614168,41.6113116993475,2023/11/28,3.227209099999996 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/03/11,11.208516665591668 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/03/11,11.208516665591668 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/04/04,12.456825000332508 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/04/04,12.456825000332508 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/04/28,6.825055315778335 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/04/28,6.825055315778335 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/05/30,3.6052772748725017 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/06/07,6.0536250003824845 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/05/22,7.66462121347833 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/05/30,3.6052772748725017 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/06/07,6.0536250003824845 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/05/22,7.66462121347833 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/07/01,13.170648336588345 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/07/01,13.170648336588345 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/08/02,3.66194470666666 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/07/25,3.1058255999999966 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/08/02,3.66194470666666 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/07/25,3.1058255999999966 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/09/11,2.608734040000002 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/08/26,3.4244823499999977 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/09/11,2.608734040000002 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/08/26,3.4244823499999977 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/09/27,2.720976999999999 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/09/27,2.720976999999999 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/11/29,6.135296105714279 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/11/30,3.453121326923076 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/11/29,6.135296105714279 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2015/11/30,3.453121326923076 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/02/02,12.344500000380004 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/02/02,12.344500000380004 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/02/26,10.935575025157515 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/02/26,10.935575025157515 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/03/29,18.133791747166686 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/03/29,18.133791747166686 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/06/09,3.310229500000001 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/06/09,3.310229500000001 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/07/03,4.676727278532503 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/06/25,3.111078066666663 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/07/03,4.676727278532503 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/06/25,3.111078066666663 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/08/04,3.7707272999999937 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/07/27,2.548638100000002 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/08/04,3.7707272999999937 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/07/27,2.548638100000002 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/09/05,4.079650000144991 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/08/28,4.216975000652493 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/09/05,4.079650000144991 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/08/28,4.216975000652493 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/07,3.3182681699999965 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/09/21,2.625975604666666 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/07,3.3182681699999965 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/09/21,2.625975604666666 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/11/08,5.510848544380943 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/23,11.949670839588329 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/31,3.1002579724358936 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/11/08,5.510848544380943 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/23,11.949670839588329 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2016/10/31,3.1002579724358936 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/01/11,11.114874999809995 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/01/11,11.114874999809995 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/04,3.774916985576924 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/04,3.774916985576924 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/28,3.1512051796666647 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/03/08,2.2905917361263715 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/20,13.426291669711672 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/28,3.1512051796666647 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/03/08,2.2905917361263715 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/02/20,13.426291669711672 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/04/09,2.1233360500000003 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/04/09,2.1233360500000003 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/06,5.341299626896668 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/06/28,3.595659615384614 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/06,5.341299626896668 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/06/28,3.595659615384614 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/22,12.713420833380823 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/30,3.205582294999998 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/22,12.713420833380823 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/07/30,3.205582294999998 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/10/10,5.875862123405833 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/09/24,3.1964006046666644 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/10/02,2.6320401182692303 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/10/10,5.875862123405833 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/09/24,3.1964006046666644 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/10/02,2.6320401182692303 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/11/11,5.231539464380944 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/11/11,5.231539464380944 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2017/11/27,6.677149991265009 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/03/11,3.2576652346153843 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/05/30,5.541775385269995 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/07/09,3.8283591399999937 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/08/02,2.547775000000005 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/08/26,7.624458317425835 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/09/03,3.047995730769226 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/09/27,11.69077500057 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/12/08,19.80287839855085 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2018/11/22,7.463363500000006 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/01/01,3.510571928984403 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/02/10,10.633264583703337 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/04/07,7.781799999712501 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/04/23,6.145269698405832 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/06/26,4.351238699999991 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/07/04,3.344177250047502 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/07/28,9.748512504814991 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/08/05,12.79320833333332 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/08/29,5.873125000192508 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/10/08,2.531256940000002 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/09/22,2.783973199999998 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/11/01,8.675355313804156 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/11/09,18.768000000784998 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/10/24,2.737880090000002 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/12/11,21.750616666666684 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2019/11/25,2.788442025000003 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/03/08,6.500967426666668 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/02/21,11.174735428636671 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/03/24,5.693660832130831 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/05/03,2.921381820000004 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/05/27,20.711150000212506 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/06/04,4.105800000409995 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/07/06,3.2437795999999968 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/08/07,4.56510076020833 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/09/08,4.823450001005001 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/08/23,2.5298978000000023 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/10/02,5.508174997975005 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/10/10,2.869055499999999 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2020/12/29,3.3787500000000086 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/01/22,13.4450749998575 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/03/03,13.9916999999525 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/04/04,3.222352250095006 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/05/06,3.5681356130058286 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/06/07,3.855063624999992 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/06/23,3.361097625047498 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/09/03,7.079524986687502 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/09/11,4.488684100144991 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/08/26,3.4450272499999994 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/09/27,2.83479545 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/11/06,9.887863525714277 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/11/09,2.6412571900000024 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/10/29,12.990549999999992 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/11/22,10.57692500236001 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2021/11/24,2.44357358076923 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/02/10,14.185091666404157 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/02/26,11.732666666021666 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/03/22,2.644908445000003 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/05/09,3.1074204599999966 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/05/09,3.002655763333331 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/05/01,6.646892811659985 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/05/31,15.749483337933333 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/06/29,3.523784099999992 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/07/04,3.4620742466666674 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/06/26,3.6481347999999953 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/08/02,7.812104780914992 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/08/05,4.24409091019249 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/08/29,3.5796045000000016 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/10/09,3.542551526666661 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2022/11/09,2.9637402740384617 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/01/28,3.4484282307692307 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/02/27,6.535249993875011 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/03/09,13.137725000264986 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/03/26,7.486356826666662 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/04/10,2.2354610650000004 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/04/02,6.825714398333335 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/05/09,11.7280750017575 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/04/26,2.6189772499999986 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/05/31,8.578584090795006 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/05/26,3.370364403405828 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/06/05,3.942375000000004 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/05/28,3.861236413333328 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/06/29,9.0978799252175 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/06/21,13.087783333333318 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/08/05,3.481506061739162 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/07/31,3.9926613500724897 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/07/23,2.9642250000000017 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/09/01,4.261556819999987 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/08/27,5.900000006409999 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/09/01,2.970995405 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/09/28,18.823641666331664 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/10/03,2.551595300000001 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/10/25,15.288391685214172 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/10/27,2.414993565000002 -Lebanon Lake,4147208,-74.81029230646656,41.569992028702416,2023/11/28,3.265899916153844 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/03/11,9.821031251529996 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/02/23,22.47810000000001 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/03/11,9.821031251529996 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/02/23,22.47810000000001 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/04/04,22.55868333333334 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/04/04,22.55868333333334 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/05/06,4.430000000337502 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/05/06,4.430000000337502 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/05/22,9.8219750003375 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/05/22,9.8219750003375 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/08/02,6.35215000356 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/08/02,6.35215000356 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/09/11,2.712025000000004 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/08/26,12.951283333318315 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/09/11,2.712025000000004 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/08/26,12.951283333318315 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/10/05,11.88510833353335 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/09/27,3.532851759935898 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/10/05,11.88510833353335 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/09/27,3.532851759935898 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/11/22,8.620933669908569 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/11/30,3.002864611538464 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/11/22,8.620933669908569 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2015/11/30,3.002864611538464 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/03/05,10.58414166639168 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/03/05,10.58414166639168 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/03/29,9.38151365922001 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/03/29,9.38151365922001 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/04/30,3.913558338475832 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/04/30,3.913558338475832 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/05/24,2.8906022500000077 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/05/24,2.8906022500000077 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/03,14.802583354033343 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/11,3.2807887899999986 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/06/25,6.059568190000001 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/03,14.802583354033343 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/11,3.2807887899999986 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/06/25,6.059568190000001 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/08/04,3.418953786884164 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/27,3.071275539999998 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/08/04,3.418953786884164 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/07/27,3.071275539999998 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/05,4.315936360217494 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/08/28,15.355550000185003 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/05,4.315936360217494 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/08/28,15.355550000185003 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/10/07,4.9765151977142805 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/21,3.664396966811661 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/29,3.06531784 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/10/07,4.9765151977142805 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/21,3.664396966811661 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/09/29,3.06531784 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/11/08,3.9782501306233313 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/10/23,7.079095841788337 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/11/08,3.9782501306233313 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/10/23,7.079095841788337 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/12/10,12.37523333353334 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2016/12/10,12.37523333353334 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/01/11,14.028933333095836 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/01/11,14.028933333095836 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/02/04,10.878250000185004 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/02/04,10.878250000185004 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/02/28,14.257027084303354 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/03/08,11.5154750001425 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/02/28,14.257027084303354 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/03/08,11.5154750001425 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/04/09,4.27381121634615 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/04/09,4.27381121634615 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/05/27,3.073104500047501 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/05/27,3.073104500047501 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/06/28,19.366149999554988 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/06/28,19.366149999554988 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/07/30,2.8922401250000003 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/07/30,2.8922401250000003 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/08/23,8.951904166551667 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/08/23,8.951904166551667 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/09/24,5.763742423380842 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/10/02,3.3395531673076886 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/09/24,5.763742423380842 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/10/02,3.3395531673076886 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/11/11,5.628706826881667 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2017/11/11,5.628706826881667 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/04/28,2.7805250000000026 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/05/30,4.414150000000006 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/07/09,10.207925002419998 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/07/01,7.165600001194992 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/08/10,4.402705304999991 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/09/03,4.194810717728211 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/09/27,4.806502279077503 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/10/05,4.781166923076919 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2018/11/22,21.856800000000018 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/01/25,13.832574999952495 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/04/23,10.049180711613213 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/06/26,4.850362878623324 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/07/28,6.73257499430501 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/08/05,2.7915541249999984 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/09/06,3.067418699999998 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/10/08,4.662358792769227 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/11/01,6.873175026004995 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2019/11/25,15.813233333333343 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/02/21,23.439241666666657 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/04/01,3.990425000145004 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/04/25,5.058414396739167 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/05/03,3.769075002299999 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/05/27,5.238175002632504 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/06/28,17.93537916695168 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/07/06,3.1701655730769205 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/08/07,2.7340041000000017 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/08/31,12.7994750028625 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/10/10,13.229000001150006 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/09/24,12.965045833405831 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2020/12/29,15.516350038789987 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/03/27,7.273824999775012 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/05/06,3.742502275000009 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/06/23,4.2428884897435815 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/08/02,4.90633863931 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/08/10,9.46066742610834 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/09/11,2.8516272500000053 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/08/26,3.4204195 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/11/06,11.3143999995325 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/11/09,3.391441385384616 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/10/29,3.617673928205126 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/11/22,6.485149999955008 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/11/24,3.093172808974359 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2021/12/24,10.491900000000022 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/02/02,22.17288333328585 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/02/26,22.529033333333334 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/03/30,21.203495834188352 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/03/30,5.425475000189998 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/03/22,11.725026787149286 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/09,2.9404560667391677 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/09,3.389551199999998 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/01,3.866567799999995 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/04/23,7.07443788462833 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/31,9.118441678881666 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/26,9.339299987872492 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/05/25,3.448224999999994 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/06/29,4.081168180434993 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/06/26,3.070000001087499 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/08/29,7.46440000098 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/10/08,12.44540000229998 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/09/30,3.2581333682692315 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/09/22,5.637992788076925 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2022/11/09,3.01619305576923 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/02/27,22.76205 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/02/21,11.240208333870848 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/04/10,3.211919230769229 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/04/26,6.738225000284996 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/05/31,8.578768180215 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/05/26,7.338750000407503 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/05/28,3.468000000507497 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/06/22,6.4910295401925 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/06/21,3.288081854999997 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/08/05,7.066604169736671 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/07/31,4.700724999970003 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/07/23,3.3757750000000017 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/01,6.130361360382502 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/09,3.6923139433333296 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/01,10.691468180262502 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/08/24,3.585179554999994 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/28,7.672014581935848 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/23,13.198033205944435 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/10/03,3.769958346666662 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/09/25,3.0382000000475013 -Fern Lake,9527495,-73.71826173231439,44.48869215506452,2023/11/28,2.8889202500000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/03/10,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/03/10,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/04/03,12.339924999785 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/04/03,12.339924999785 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/05,7.362787497857503 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/04/28,9.318306262945 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/06,9.408425004672484 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/06,6.132250000047497 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/05,7.362787497857503 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/04/28,9.318306262945 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/06,9.408425004672484 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/06,6.132250000047497 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/06,26.56243750028501 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/07,13.01696250031 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/29,2.701806915000002 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/29,2.799670560000001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/22,7.640208356808319 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/06,26.56243750028501 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/07,13.01696250031 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/29,2.701806915000002 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/29,2.799670560000001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/05/22,7.640208356808319 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/07/08,4.066953416060001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/22,5.327813361921907 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/07/08,4.066953416060001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/06/22,5.327813361921907 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/09,3.374843239999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/07/24,11.554274999792495 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/01,3.0016692307692314 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/01,3.191125000000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/09,3.374843239999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/07/24,11.554274999792495 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/01,3.0016692307692314 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/01,3.191125000000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/03,7.525207107963332 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/25,3.73057881673916 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/11,2.595974125000001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/02,9.639836364999994 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/02,2.9870067500000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/03,7.525207107963332 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/08/25,3.73057881673916 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/11,2.595974125000001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/02,9.639836364999994 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/02,2.9870067500000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/10/05,16.80829166666666 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/26,4.05584698173916 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/27,2.819203918269229 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/10/05,16.80829166666666 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/26,4.05584698173916 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/09/27,2.819203918269229 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/05,2.0705043499999967 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/05,2.4207300423076905 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/05,2.0705043499999967 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/05,2.4207300423076905 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/29,5.582149999995003 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/22,3.927641129615383 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/30,3.94875767307692 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/29,5.582149999995003 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/22,3.927641129615383 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2015/11/30,3.94875767307692 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/01/08,17.36162500000001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/01/08,17.36162500000001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/01/24,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/01/24,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/05,7.268233336860829 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/03/29,23.970570833638348 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/05,7.268233336860829 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/03/29,23.970570833638348 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/07,4.00305166195857 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/30,3.799297759999996 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/21,3.2198265467391662 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/29,3.8623273 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/29,4.532499999999999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/07,4.00305166195857 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/30,3.799297759999996 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/21,3.2198265467391662 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/29,3.8623273 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/04/29,4.532499999999999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/23,10.837058340400825 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/31,5.87740796819582 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/31,4.89271023938333 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/24,5.12389015666666 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/23,10.837058340400825 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/31,5.87740796819582 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/31,4.89271023938333 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/05/24,5.12389015666666 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/03,8.517954173351669 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/06/24,3.187874876525829 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/11,11.847096600151662 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/06/25,3.297634674999999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/03,8.517954173351669 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/06/24,3.187874876525829 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/11,11.847096600151662 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/06/25,3.297634674999999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/11,8.609312513322498 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/04,3.0399150279999976 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/03,3.0363545000000016 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/03,2.8305272500000007 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/27,3.404491142948716 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/11,8.609312513322498 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/04,3.0399150279999976 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/03,3.0363545000000016 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/03,2.8305272500000007 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/07/27,3.404491142948716 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/05,4.105520814102558 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/27,2.353807578333333 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/04,2.7737083249999976 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/04,5.335154579999994 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/28,9.234750000144992 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/05,4.105520814102558 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/27,2.353807578333333 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/04,2.7737083249999976 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/04,5.335154579999994 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/08/28,9.234750000144992 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/07,2.7492272800724997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/28,2.810065751333332 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/21,3.4214468679999994 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/06,2.4508065615384598 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/06,2.4009724365384595 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/07,2.7492272800724997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/28,2.810065751333332 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/09/21,3.4214468679999994 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/06,2.4508065615384598 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/06,2.4009724365384595 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/08,4.343034084999998 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/23,5.008679579380948 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/07,3.2886392548076917 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/07,3.129887004807692 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/08,4.343034084999998 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/10/23,5.008679579380948 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/07,3.2886392548076917 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/07,3.129887004807692 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/12/10,11.6148387562625 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/23,2.8918545000000058 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/23,13.27870833371832 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/12/10,11.6148387562625 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/23,2.8918545000000058 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/11/23,13.27870833371832 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/01/02,22.348225000000006 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/12/25,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/01/02,22.348225000000006 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2016/12/25,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/01/27,10.425308333118345 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/01/27,10.425308333118345 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/03/08,12.537025000095 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/02/27,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/02/27,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/03/08,12.537025000095 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/02/27,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/02/27,21.88613333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/03/23,22.309808333333343 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/04/09,13.064491666666664 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/03/23,22.309808333333343 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/04/09,13.064491666666664 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/04/24,5.536850000167501 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/05/11,12.39712499999999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/04/24,5.536850000167501 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/05/11,12.39712499999999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/06/11,5.145077913989399 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/06/11,5.145077913989399 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/05,3.1440429799999983 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/05,3.257692999999998 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/05,3.1440429799999983 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/05,3.257692999999998 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/29,13.43315833333332 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/06,3.1094000000000017 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/06,3.2224000000000017 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/30,2.688771723626373 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/29,13.43315833333332 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/06,3.1094000000000017 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/06,3.2224000000000017 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/07/30,2.688771723626373 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/30,3.413228332465833 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/08/30,3.413228332465833 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/10,6.795816658516677 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/01,2.874794649999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/24,3.2186136302174977 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/02,2.67894323076923 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/23,3.087564099999998 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/23,3.3049345499999947 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/10,6.795816658516677 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/01,2.874794649999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/24,3.2186136302174977 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/02,2.67894323076923 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/23,3.087564099999998 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/09/23,3.3049345499999947 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/11,4.1297781820724975 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/10,3.1803192307692347 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/10,3.4440464807692344 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/25,4.7936500002624935 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/25,4.374660000407493 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/11,4.1297781820724975 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/10,3.1803192307692347 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/11/10,3.4440464807692344 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/25,4.7936500002624935 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/10/25,4.374660000407493 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2017/12/04,10.243629188784178 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/01/29,11.78839999976251 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/05,4.277852264999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/05,4.111829544999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/29,4.4263416171807135 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/30,3.718714099999992 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/05/30,4.133845460072499 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/07/09,10.767025009679983 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/06/30,13.033275000522504 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/07/08,4.670250000524999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/07/08,4.871375000524997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/07/01,3.4205250000000054 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/06/22,2.6105959423076914 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/06/22,2.8272664423076925 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/08/10,3.909093454102559 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/08/09,5.405175000215001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/08/09,6.438350002562502 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/09/03,4.434231750000002 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/10/05,3.155717875 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/12/08,11.773033333270831 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2018/11/22,3.1754000000000087 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/02/09,9.0827562512925 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/02/01,21.856800000000018 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/05/09,7.395495836943334 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/04/23,11.242418754547511 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/05/08,4.203732590062495 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/05/08,4.479643950433329 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/04/22,2.430675542307692 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/04/22,2.4565789298076925 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/10,10.951449998965002 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/01,8.60534583086085 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/09,3.432174999999998 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/09,3.4249249999999978 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/07/03,5.233475826781904 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/06/26,21.095810609070824 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/08/04,8.159633352318338 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/08/05,2.7422858750000016 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/07/27,22.771024999955003 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/07/27,18.01377499995501 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/05,2.9524609179999963 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/06,2.708422899038462 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/21,3.3519689333333305 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/10/08,3.795143661538457 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/29,14.07368333333332 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/09/29,14.176783333333317 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/10/23,8.081439997802498 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/11/09,5.7036822018374895 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/12/03,9.296240002079989 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2019/11/25,4.587239947115377 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/03/07,21.67155833333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/04/01,26.626070756809156 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/02,3.517186364999996 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/04/25,7.400266673204173 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/10,5.095627250047499 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/10,5.597577250047496 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/03,2.743000000000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/03,2.6188272499999994 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/27,3.4478627429999933 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/06/04,3.1293022500000047 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/26,3.113677250047502 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/05/26,3.183400000000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/07/05,9.412745838715834 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/06/28,3.3824441664166653 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/07/06,3.1403200659340644 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/06,7.379329550217506 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/31,14.138162500285002 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/22,7.229360018080008 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/09/08,8.169450000434999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/30,3.0528000000000084 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/30,3.542850000000008 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/08/23,2.755025000000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/10/09,4.7920227599999885 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/10/10,4.415055087163461 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/09/24,4.177100000264992 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/11/10,4.705536416047613 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/10/25,4.268933333620832 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2020/12/29,3.369950000000003 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/01/29,22.348225000000006 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/02/06,11.11258333331834 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/02/06,11.098949999985006 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/01/30,21.794191666666684 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/03/11,7.859825001985005 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/03/02,22.451158333333343 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/04/03,11.584991666571664 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/04/04,12.290591666429174 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/04/04,18.207472918141686 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/05/06,5.39290225 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/06/07,4.8213180115384535 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/05/29,4.646267812897499 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/05/29,5.204146979389167 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/06/30,21.75304166666668 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/06/23,3.8091915307692266 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/08/10,2.9095750000000056 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/07/25,7.045346213380831 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/09/10,4.77788182333 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/09/03,6.574499994490012 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/08/25,2.738964393044997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/08/26,2.669725000047497 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/09/26,7.780705414064156 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/06,5.068716716047613 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/10/28,4.206782712362498 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/05,3.2483942307692297 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/05,3.2239 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/10/29,3.102955147664834 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/12/07,2.6397250000000043 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/12/07,2.7931022500000062 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/24,2.2020225999999976 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/24,2.4244836173076907 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/21,3.127605061538457 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/11/21,2.479949373626374 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/01/08,21.75304166666668 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2021/12/23,1.9611248499999965 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/01/25,21.961558333333347 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/02/26,22.25651666666668 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/03/30,22.26459166666668 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/06,9.588158333543351 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/06,9.565158333543351 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/03/29,21.75304166666668 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/03/22,15.066137500190004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/03/22,15.585022916951653 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/09,2.449661624999999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/08,3.775932603333331 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/08,3.7020091 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/01,11.48012501149999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/01,5.68820000019249 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/30,7.621896224236657 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/30,9.02980000950999 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/04/22,3.624625000000007 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/05/25,3.6551295000475017 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/07/11,17.65202499978751 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/07/11,17.63170000000251 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/07/03,5.605112500842497 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/07/03,5.564812501439997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/06/26,4.442879500000002 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/06/25,2.418806450000001 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/06/25,2.4188314500000008 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/10,8.180774246666667 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/08/29,11.184475000237487 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/08/28,5.670500000265004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/08/28,5.780775000217505 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/10/09,6.217424999770006 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/22,19.373883333855822 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/30,14.085091666619157 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/30,13.235308333333323 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/29,2.556554500000003 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/29,2.819823463333336 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/22,3.1743847133333314 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/21,3.588643199999995 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/09/21,4.064709099999991 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/11/09,2.71900471826923 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/11/09,3.243525331730767 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/11/08,2.0992725999999977 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/11/08,2.052174849999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/10/24,17.130108333303333 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/12/10,2.402970349999998 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/12/10,2.3012248749999973 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/12/02,22.42019166624168 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2022/12/02,22.479366665826674 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/01/11,21.66638333333335 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/04/10,14.34742499985751 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/04/09,12.85180833323833 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/04/01,9.428974999857507 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/04/01,9.292341666429184 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/09,9.80672083745084 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/09,9.361654169256676 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/31,3.9913136303624936 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/31,3.895361360507495 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/26,3.82071969666666 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/05,11.425233333548327 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/04,6.218307586524166 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/04,6.351139781789995 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/28,11.694000001932489 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/27,22.61794166676168 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/05/27,22.971225000142507 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/22,3.876301358217495 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/22,4.033976358217493 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/06,5.970475000664985 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/06,8.628258338788317 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/06/21,3.5762817500000006 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/05,5.002550001124997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/30,2.443552250000005 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/30,2.557525000000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/22,6.2773200886241645 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/07/22,4.916477283687498 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/06,4.890731058333323 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/01,2.4359333284791678 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/01,2.434426508406668 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/01,10.019834090095005 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/31,4.210851516666662 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/31,4.027829544999994 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/23,2.915161680769229 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/08/23,3.106543480769228 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/10/03,7.614718185000003 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/28,6.6550749947500085 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/10/03,4.795667446666661 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/10/02,3.5915907500000004 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/10/02,3.4546158500000006 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/09/25,3.137865949999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/11/03,2.852410664999997 -Brandreth Lake,15468313,-74.7046987225114,43.91759723780194,2023/11/03,2.2399543249999976 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/03/10,21.66638333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/02/22,21.791766666666685 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/02/22,21.791766666666685 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/03/10,21.66638333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/02/22,21.791766666666685 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/02/22,21.791766666666685 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/04/03,7.613908332258339 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/04/03,7.613908332258339 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/04/28,5.094839402171663 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/06,12.7928250207725 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/06,8.852450004672479 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/04/28,5.094839402171663 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/06,12.7928250207725 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/06,8.852450004672479 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/06,4.949170855413335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/07,13.786733333453316 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/07,14.118258333453316 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/29,3.8227250001449953 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/29,3.749800000144995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/22,3.893345459999997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/22,3.588321218333326 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/06,4.949170855413335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/07,13.786733333453316 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/07,14.118258333453316 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/29,3.8227250001449953 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/29,3.749800000144995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/22,3.893345459999997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/05/22,3.588321218333326 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/07/08,14.512025000652509 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/22,15.425591685139173 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/07/08,14.512025000652509 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/06/22,15.425591685139173 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/09,4.5288796000724885 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/10,12.284449999784986 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/10,2.9750750000000004 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/09,4.5288796000724885 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/10,12.284449999784986 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/10,2.9750750000000004 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/03,8.510477082115855 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/25,3.843158043598327 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/11,3.727894149999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/11,4.813898346666657 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/02,8.0659250009425 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/02,7.781775001015002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/03,8.510477082115855 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/08/25,3.843158043598327 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/11,3.727894149999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/11,4.813898346666657 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/02,8.0659250009425 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/02,7.781775001015002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/05,8.945916669304165 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/26,10.63910416992916 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/04,3.842704170974163 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/04,3.778054171236663 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/27,2.957855075 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/27,2.488847062500001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/05,8.945916669304165 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/26,10.63910416992916 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/04,3.842704170974163 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/10/04,3.778054171236663 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/27,2.957855075 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/09/27,2.488847062500001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/05,2.956660325000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/05,3.262958962499998 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/05,2.956660325000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/05,3.262958962499998 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/29,6.081349996670008 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/12/07,3.265131750000009 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/30,2.70393 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/30,3.5787057038461536 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/29,6.081349996670008 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/12/07,3.265131750000009 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/30,2.70393 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2015/11/30,3.5787057038461536 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/08,22.013858333333346 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/08,22.013858333333346 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/24,21.66638333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/24,21.66638333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/24,21.66638333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/01/24,21.66638333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/02/26,9.73916666666668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/02/26,9.73916666666668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/05,11.038545230730236 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/05,11.038545230730236 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/07,6.242460417371673 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/30,6.698820464999996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/21,8.404441290368325 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/29,3.819162505479997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/07,6.242460417371673 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/30,6.698820464999996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/21,8.404441290368325 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/04/29,3.819162505479997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/23,8.3853522982025 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/31,4.888851915394167 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/31,4.804228050724165 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/24,9.583900764268316 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/24,12.597075766198325 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/23,8.3853522982025 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/31,4.888851915394167 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/31,4.804228050724165 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/24,9.583900764268316 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/05/24,12.597075766198325 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/03,6.795959095220002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/24,14.890925004912512 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/11,12.818725000309987 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/11,12.941600000309988 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/02,4.70803846165846 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/02,3.427150000000004 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/25,2.720299999999996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/25,4.487278530769222 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/03,6.795959095220002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/24,14.890925004912512 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/11,12.818725000309987 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/11,12.941600000309988 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/02,4.70803846165846 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/02,3.427150000000004 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/25,2.720299999999996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/06/25,4.487278530769222 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/04,3.543487728072493 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/26,8.785041427882746 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/03,3.7815453683333287 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/03,3.2544339683333283 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/27,5.244908336666656 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/27,2.813845080000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/04,3.543487728072493 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/26,8.785041427882746 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/03,3.7815453683333287 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/03,3.2544339683333283 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/27,5.244908336666656 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/07/27,2.813845080000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/05,3.681309100072493 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/27,14.474549998842503 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/04,4.587470459999994 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/04,3.918543943333328 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/05,3.681309100072493 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/08/27,14.474549998842503 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/04,4.587470459999994 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/04,3.918543943333328 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/07,7.974359843333331 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/28,8.547091663333338 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/21,3.559370449999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/06,2.409606700000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/06,2.370781700000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/29,3.6296249999999937 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/29,4.8385749999999925 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/07,7.974359843333331 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/28,8.547091663333338 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/21,3.559370449999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/06,2.409606700000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/06,2.370781700000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/29,3.6296249999999937 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/09/29,4.8385749999999925 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/08,5.231712143333323 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/23,2.9726689435508304 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/07,2.543955425 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/07,2.053747599999997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/08,5.231712143333323 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/10/23,2.9726689435508304 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/07,2.543955425 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/07,2.053747599999997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/12/10,22.47567500000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/23,20.21911666565668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/23,22.076199999677517 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/12/10,22.47567500000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/23,20.21911666565668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/11/23,22.076199999677517 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/01/02,22.337341666666678 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/12/25,21.75304166666668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/01/02,22.337341666666678 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2016/12/25,21.75304166666668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/28,20.599866666476697 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/08,12.906383333238328 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/08,12.955833333238326 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/27,14.619641666619168 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/27,14.541441666404166 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/20,20.32860833328586 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/28,20.599866666476697 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/08,12.906383333238328 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/08,12.955833333238326 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/27,14.619641666619168 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/27,14.541441666404166 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/02/20,20.32860833328586 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/23,22.451158333333343 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/09,20.254333333285864 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/09,20.228183333285862 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/03/23,22.451158333333343 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/09,20.254333333285864 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/09,20.228183333285862 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/24,10.291833333405837 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/05/11,3.8419791711016624 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/05/11,4.90385416938416 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/04/24,10.291833333405837 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/05/11,3.8419791711016624 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/05/11,4.90385416938416 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/06/11,7.786198325065828 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/06/11,7.786198325065828 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/05,3.434168749999996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/05,3.5088869499999946 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/05,3.434168749999996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/05,3.5088869499999946 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/29,22.761399999999977 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/06,3.4442794999999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/06,7.896275000289998 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/30,3.171811962500001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/30,2.8762380000000007 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/29,22.761399999999977 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/06,3.4442794999999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/06,7.896275000289998 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/30,3.171811962500001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/07/30,2.8762380000000007 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/23,13.854999999847502 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/08/23,13.854999999847502 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/10,6.602849998847513 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/01,4.316316889999989 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/24,3.126786360289997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/02,3.2382884249999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/02,2.637310500000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/23,4.7018999999999895 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/23,4.795374999999989 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/10,6.602849998847513 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/01,4.316316889999989 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/24,3.126786360289997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/02,3.2382884249999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/10/02,2.637310500000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/23,4.7018999999999895 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/09/23,4.795374999999989 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/11/11,7.751479539999999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/11/10,3.6853000000000047 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/11/11,7.751479539999999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/11/10,3.6853000000000047 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2017/12/04,8.837197106438333 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/01/29,9.32054999954751 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/05/05,8.966425011499997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/05/29,6.01342143507417 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/05/30,3.570145499999993 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/05/30,4.404200000144994 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/07/01,13.71845833340582 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/07/01,14.278233333333317 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/06/22,4.905097725409995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/06/22,5.020422725264994 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/08/10,4.35688639999999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/08/09,15.725800018400014 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/08/09,14.57493334950584 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/09/03,2.8288225000000007 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/09/03,4.197242496153843 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/10/05,3.2067308749999976 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/10/05,3.7133388307692257 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/12/08,21.856800000000018 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/12/08,21.867666666666683 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/11/22,21.88613333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2018/11/22,21.66638333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/01/25,21.919450000000012 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/02/26,21.867666666666683 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/02/26,21.867666666666683 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/04/23,12.759075001172494 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/05/08,2.95647309 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/05/08,2.6953490000000007 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/04/22,2.749913625000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/04/22,2.749913625000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/10,17.756941666451656 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/01,9.369374998692528 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/09,3.3129390999999955 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/09,3.374726349999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/07/03,3.619119702100832 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/06/26,7.248368181280005 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/08/04,16.47167083285583 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/08/05,4.242734094999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/08/05,3.906844230769224 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/07/27,5.189325000409995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/07/27,6.951775000262508 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/05,3.3365454499999943 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/06,3.825102485769225 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/06,3.4562000115384564 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/21,7.455691663405832 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/10/08,4.247548010769226 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/10/08,5.756603689999992 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/09/29,15.713591666666648 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/11/08,12.228247917466692 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/11/01,12.917625054967507 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/12/11,20.932816667569185 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/12/11,8.495549999477518 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/11/25,16.19234167241668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2019/11/25,6.294388264963329 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/02/05,22.663366666666672 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/02/21,22.308699999355007 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/04/01,9.536108333143323 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/04/01,18.73095625402501 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/02,6.995395460072499 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/04/25,4.256900380665831 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/10,3.326225000000006 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/10,2.9118772500475 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/03,13.090875043700008 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/03,11.062958356478326 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/27,8.477109090579999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/06/11,10.419800000199984 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/06/11,5.594175000239995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/06/04,8.756637496044991 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/06/04,13.374449999999984 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/26,3.421300005000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/05/26,4.059825000072497 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/07/05,14.248316671339152 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/07/06,3.0942909374999976 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/07/06,2.9880820750000003 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/06,3.5506591051449963 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/07/30,3.935775000144992 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/07,8.891575006852506 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/07,8.566770837383332 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/31,3.334859099999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/30,5.545174999999996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/30,2.798102250000006 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/23,8.39196000145998 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/08/23,7.114150003302488 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/10/09,3.8809310616666575 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/10/10,2.649202250000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/09/24,3.7282181807250017 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/09/24,8.259475000987507 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/11/10,5.7660553133333385 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/10/25,16.89644166759167 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/12/29,21.88613333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2020/12/29,21.791766666666685 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/01/29,23.67154166666665 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/02/06,21.67155833333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/02/06,21.67155833333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/05/06,4.663041919999991 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/05/06,3.811823593333326 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/04/27,4.749804169649163 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/06,14.556749999545 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/07,3.513089174999999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/07,5.680712525641018 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/05/29,19.497920833023336 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/05/29,19.40499166635667 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/23,3.2843272500475007 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/06/23,3.558729500047504 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/07/24,10.443350000017496 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/10,6.021225000144995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/10,3.663427250072499 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/07/25,7.155650000289996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/07/25,7.745500000434999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/09/10,2.9235314012002367 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/25,15.216091667029172 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/26,5.885808336703335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/08/26,5.429233335043339 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/06,3.8094115487391655 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/10/28,11.115525004889976 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/10/29,2.6227337500000005 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/10/29,2.8065415 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/12/07,8.467924593874743 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/12/07,7.915061499404363 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/24,2.5940908 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/24,2.6514544 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/21,3.120522462499998 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2021/11/21,3.166480037499998 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/01/08,21.867666666666683 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/01/25,22.274983333333346 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/03/30,22.00959166666668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/04/06,12.118141667124188 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/03/29,21.88613333333335 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/09,3.429213024999997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/09,5.092078799999992 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/08,4.487581809999994 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/01,4.940238491333324 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/01,5.587596218333324 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/04/30,3.210550009999997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/04/30,3.273250009999996 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/26,19.991699999125 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/06/10,6.992425000337494 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/06/10,5.220969231034222 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/25,6.468150005177503 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/05/25,3.07829975 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/11,23.344925000599986 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/11,23.760500000599983 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/03,6.536621989110836 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/03,5.971153429329998 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/06/25,4.127862389999991 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/05,16.97016666631666 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/05,18.05669999955499 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/28,7.264483347018326 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/07/28,7.664637507120001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/10,6.975229169519165 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/24,6.474133523767502 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/29,8.596325000192486 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/29,4.444550000072491 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/28,2.738878650000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/08/28,2.743419575 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/22,9.322749993884994 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/29,2.729052250000006 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/29,2.6791500000000013 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/22,2.540486250000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/09/22,2.7732115 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/11/09,3.010063525000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/11/09,3.102301137499999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/11/08,2.3071248499999992 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/11/08,2.0972498499999968 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/12/10,3.053088600000003 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/12/10,2.988960325000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/12/02,3.3739429999999984 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2022/12/02,3.366144230769229 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/02/04,22.25651666666668 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/02/21,9.610674999427513 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/04/10,11.199324999904997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/04/10,11.199324999904997 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/04/09,14.08581666661916 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/09,10.665329169394186 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/09,10.179304169334182 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/31,3.300150001377497 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/31,3.2603181813049984 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/26,3.4332196968116637 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/04,3.990629500000003 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/04,4.714579500000002 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/28,21.03988333781585 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/28,17.206741675174186 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/05/27,20.55087500920001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/22,2.429593181885 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/22,2.345977271957501 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/06,4.245625000144995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/06,3.905486379999994 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/21,3.913344230769232 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/06/21,2.9199317499999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/10,10.37843124757 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/05,8.018218752134999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/05,12.849891721311932 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/31,19.426208332855847 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/31,4.940538184102557 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/30,13.958283333333322 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/30,14.51358333333332 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/23,5.487899999999992 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/07/23,4.107829500047497 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/06,14.258600002347512 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/01,3.0610992468841665 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/01,3.2262984837683333 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/08,11.901729166451672 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/01,7.633875000332507 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/01,6.627902270477506 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/31,2.9653885500000023 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/08/31,2.907963550000003 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/03,15.24730833342836 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/23,8.883943747827516 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/03,6.446999999999999 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/03,2.7037022000000017 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/02,4.799104594999992 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/10/02,4.632306849999993 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/25,3.191949189999995 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/09/25,4.378593179999992 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/11/03,2.772854915000001 -Plumley Pond,15468329,-74.5638363652963,43.913248822784006,2023/11/03,3.1677420424999974 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/02/22,21.77565833333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/02/22,21.675758333333352 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/02/22,21.77565833333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/02/22,21.675758333333352 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/04/28,6.241278361599406 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/06,3.191198699999997 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/04/28,6.241278361599406 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/06,3.191198699999997 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/06,4.649380327948335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/30,2.869864999022499 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/07,13.38898333345333 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/29,2.365313700000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/29,2.9263524857692267 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/22,3.452325000142498 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/06,4.649380327948335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/30,2.869864999022499 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/07,13.38898333345333 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/29,2.365313700000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/29,2.9263524857692267 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/05/22,3.452325000142498 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/07/08,3.881241671079169 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/22,5.214859799726071 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/07/08,3.881241671079169 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/06/22,5.214859799726071 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/08/09,3.4405303083333307 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/07/24,4.690172368148335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/08/10,3.2685000000000053 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/08/09,3.4405303083333307 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/07/24,4.690172368148335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/08/10,3.2685000000000053 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/11,3.04129892 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/02,8.148350000217501 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/02,13.951675000265013 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/11,3.04129892 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/02,8.148350000217501 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/02,13.951675000265013 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/10/05,6.595495828860846 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/26,8.736604176536671 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/27,3.226413793269229 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/10/05,6.595495828860846 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/26,8.736604176536671 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/09/27,3.226413793269229 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/05,2.2722314749999977 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/05,2.373996248626372 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/05,2.2722314749999977 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/05,2.373996248626372 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/29,4.957259095190002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/22,3.8034651688461536 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/12/07,3.475552250000005 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/12/07,3.655050000000009 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/30,6.505008548076916 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/29,4.957259095190002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/22,3.8034651688461536 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/12/07,3.475552250000005 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/12/07,3.655050000000009 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2015/11/30,6.505008548076916 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/01/08,21.95325833333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/01/08,21.95325833333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/01/24,21.791766666666685 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/01/24,21.791766666666685 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/02/26,22.404625000000006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/02/26,22.404625000000006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/05,8.584215279887761 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/05,8.584215279887761 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/07,4.6453728398094 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/30,7.456973488333318 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/21,4.829866296604998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/29,2.808313100000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/29,2.8625381000000014 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/07,4.6453728398094 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/30,7.456973488333318 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/21,4.829866296604998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/29,2.808313100000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/04/29,2.8625381000000014 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/23,12.429763692540009 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/31,4.280839783009999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/31,10.718000000262498 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/23,12.429763692540009 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/31,4.280839783009999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/05/31,10.718000000262498 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/03,3.887847731907495 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/06/24,9.290299997772498 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/11,3.8010681749999935 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/06/25,3.442474999999999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/03,3.887847731907495 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/06/24,9.290299997772498 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/11,3.8010681749999935 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/06/25,3.442474999999999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/11,4.318208334383332 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/04,3.455221827999996 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/26,4.7499966481152365 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/03,2.558674550000004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/03,2.5625970500000026 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/27,2.9188750000000026 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/11,4.318208334383332 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/04,3.455221827999996 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/26,4.7499966481152365 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/03,2.558674550000004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/03,2.5625970500000026 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/07/27,2.9188750000000026 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/05,3.937474283333326 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/27,2.50387879 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/04,4.921684089999996 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/04,2.5208659000000013 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/28,19.38827500043998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/05,3.937474283333326 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/27,2.50387879 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/04,4.921684089999996 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/04,2.5208659000000013 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/08/28,19.38827500043998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/07,2.816164413333332 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/28,6.090531819999999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/21,3.239106671333328 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/06,2.49923795576923 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/06,2.4523097307692288 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/29,4.38914826538461 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/07,2.816164413333332 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/28,6.090531819999999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/21,3.239106671333328 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/06,2.49923795576923 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/06,2.4523097307692288 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/09/29,4.38914826538461 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/08,3.228441821999997 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/23,5.488944747714282 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/07,3.001709668269229 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/07,2.7373650432692296 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/08,3.228441821999997 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/10/23,5.488944747714282 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/07,3.001709668269229 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/07,2.7373650432692296 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/10,5.815970830260848 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/09,2.6310022500000003 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/09,2.672775000000005 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/23,2.745027249999998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/23,2.55441582 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/10,5.815970830260848 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/09,2.6310022500000003 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/09,2.672775000000005 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/23,2.745027249999998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/11/23,2.55441582 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/01/11,21.080333333190858 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/25,21.791766666666685 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/01/11,21.080333333190858 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2016/12/25,21.791766666666685 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/04,21.919450000000012 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/04,21.919450000000012 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/03/08,12.010525000427505 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/27,21.88838333328585 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/27,21.95438333328585 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/20,14.617199999905004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/03/08,12.010525000427505 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/27,21.88838333328585 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/27,21.95438333328585 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/02/20,14.617199999905004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/03/23,22.294199999785004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/03/23,22.294199999785004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/05/03,7.79946667446167 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/04/24,12.997491721866677 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/05/03,7.79946667446167 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/04/24,12.997491721866677 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/06/11,19.634162500047506 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/06/11,19.634162500047506 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/06/27,7.942450000332503 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/05,7.970683344905828 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/05,12.410416698939173 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/06/27,7.942450000332503 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/05,7.970683344905828 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/05,12.410416698939173 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/07,9.581262514229996 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/29,6.017156447181671 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/30,2.5834159615384613 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/07,9.581262514229996 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/29,6.017156447181671 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/07/30,2.5834159615384613 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/08,6.752029165366678 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/30,8.300593180000007 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/23,4.590125000027504 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/07,8.330692961538471 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/07,6.529545638461549 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/22,7.440425000144995 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/22,4.601050000072492 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/08,6.752029165366678 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/30,8.300593180000007 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/23,4.590125000027504 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/07,8.330692961538471 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/07,6.529545638461549 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/22,7.440425000144995 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/08/22,4.601050000072492 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/10,8.569647379652494 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/01,3.622553171999992 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/24,7.835543180145004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/02,3.009136653846152 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/23,3.375699999999995 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/23,3.3230863499999943 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/10,8.569647379652494 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/01,3.622553171999992 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/24,7.835543180145004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/02,3.009136653846152 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/23,3.375699999999995 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/09/23,3.3230863499999943 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/11,8.64126427904761 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/10,2.8012862500000004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/10,2.430086000000001 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/25,2.564259140000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/25,6.031335011999992 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/11,8.64126427904761 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/10,2.8012862500000004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/11/10,2.430086000000001 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/25,2.564259140000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/10/25,6.031335011999992 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2017/12/04,4.818829812426067 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/01/05,22.404625000000006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/01/06,21.88613333333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/03/26,21.191483333285856 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/05/05,11.994925000000007 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/05/05,10.977125000000004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/04/28,7.384244230769224 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/05/29,14.382825025300004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/05/30,5.244916666931657 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/07/09,4.074660606666654 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/06/30,18.89132499999998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/07/08,3.8827719722191674 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/07/08,7.524750000527499 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/07/01,3.2087250000000056 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/06/22,4.946100000650003 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/06/22,5.149550000650004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/08/10,4.2963204999999896 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/08/09,4.247825000072496 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/08/09,8.716900000072508 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/09/03,3.305791666666672 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/10/05,2.8073453950000005 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/12/08,21.88613333333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2018/11/22,3.872450000000007 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/09,22.404625000000006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/02,22.539900000000006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/01,21.794191666666684 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/01,21.794191666666684 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/01/25,11.984250000427505 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/03/05,21.919450000000012 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/02/26,21.75304166666668 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/05/09,5.327930734333568 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/04/23,9.520208351185849 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/05/08,5.483200002300006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/05/08,4.598075002300002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/04/22,2.279306449999998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/04/22,2.2955564499999976 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/06/01,6.8129499973300085 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/06/09,3.1779999999999977 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/06/09,3.1941499999999974 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/08/05,4.164258294871787 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/07/27,3.7842758846153854 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/07/27,4.07935066826923 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/09/05,3.312535606666661 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/09/06,2.8026539615384616 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/09/21,3.2356492366666645 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/10/08,3.1135277615384576 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/09/29,21.403666666636667 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/11/09,2.753904499999998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2019/11/25,3.486877250000006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/02/05,22.373925000000007 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/03/08,22.308199999355008 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/02/21,22.476608333333346 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/03/07,21.675758333333352 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/04/01,10.042590996190958 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/02,7.523738641666662 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/04/25,14.399766721866678 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/10,3.004425000000006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/10,2.462477250000004 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/03,4.133344230769232 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/27,7.908108333880829 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/06/04,4.154700000820001 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/26,13.746250000284984 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/05/26,2.693827250000005 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/07/05,6.539775003115006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/06/28,3.10738939840583 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/07/06,3.269843627472527 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/08/06,7.490250000432503 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/07/30,6.659893567333337 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/08/07,3.584379500192499 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/08/31,3.702599999999993 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/08/23,4.100161751923072 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/10/09,3.9848698703333274 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/10/10,11.62204423091423 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/11/10,4.948423524380946 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/11/03,5.491774998910002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/10/25,13.036245844880844 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2020/12/29,21.67155833333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/01/29,22.373925000000007 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/02/06,21.981250000000014 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/01/30,21.856800000000018 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/03/02,22.404625000000006 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/04/03,10.32346666829666 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/04/04,13.522633333590848 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/05/06,2.648727250000007 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/06/06,11.012212502550002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/06/07,2.470552185000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/05/29,6.726879568872502 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/05/29,5.978578046639993 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/06/23,4.32623182 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/08/10,4.785896530841722 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/07/25,5.9417220133333215 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/09/10,3.69743107681166 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/09/03,4.561282860769228 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/08/25,11.11146666956666 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/09/11,8.042408334793313 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/08/26,2.967877249999999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/06,5.178159911047614 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/10/28,3.7039244153333306 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/05,10.737150000184988 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/05,12.963208333533323 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/10/29,2.9193938173076925 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/24,2.5685759307692275 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/24,2.6375530807692296 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/21,2.2780907499999983 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/11/21,2.143295349999997 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2021/12/23,21.791766666666685 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/01/25,22.13946666666668 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/01/24,21.867666666666683 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/02/26,22.76205 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/02/26,22.424041666666675 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/03/30,22.30574166666668 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/04/06,9.160074999667518 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/04/06,9.593525000210022 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/03/29,21.88613333333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/03/29,21.88613333333335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/03/22,16.549375000190008 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/09,2.530193665000001 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/08,5.249575002299999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/08,7.126025002300008 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/01,4.485335606859164 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/04/30,4.639625000072497 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/04/30,4.899400000072498 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/24,4.2447651566666575 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/05/24,4.218015156666658 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/04,20.035124999925003 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/11,4.578664885814878 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/11,6.693437505700002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/03,8.182402273865003 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/03,8.573290534574172 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/06/25,2.517374200000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/06/25,2.334577150000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/02,5.661774996945005 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/05,11.294750000047484 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/07/28,3.922909091594995 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/10,7.36641287681167 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/29,3.1743567500000007 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/28,2.763777330000001 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/08/28,2.88398643 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/10/08,22.425941667374182 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/30,18.30434166725165 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/29,4.308452269999998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/29,2.593806520000001 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/21,3.274575599999999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/09/21,2.306831700000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/10/31,5.595391666664174 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/09,2.7882354842032964 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/08,2.5359019057692302 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/08,2.412473580769228 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/12/10,2.653052199999999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/12/10,2.2109147250000003 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/12/02,3.5177772500000053 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/12/02,19.900341666451656 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/24,2.8510795000000013 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2022/11/24,3.092050000000002 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/02/04,22.14189166666668 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/04/10,12.689241666571668 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/04/09,11.932783333238326 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/04/09,10.272183333238324 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/04/02,13.345399999857504 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/09,11.174474195811658 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/11,4.0412651642674975 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/11,4.867989408255831 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/31,2.459352270435 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/26,3.069002270144998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/05,8.267950000289995 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/04,5.751989031293335 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/04,6.63332311929833 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/28,20.53618333357336 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/27,16.967225000267494 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/05/27,11.5805000054875 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/22,3.248327270217496 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/06,4.587868099999998 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/06,3.7620703499999975 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/06/21,4.084583868717941 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/05,8.007387499932518 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/31,6.089999999999993 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/30,3.77744999999999 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/30,4.235637123333322 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/23,2.7055750000000027 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/22,5.129786863829049 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/07/22,4.826876254228216 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/06,3.0543651717391627 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/01,3.57510832717416 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/01,5.250125000337492 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/31,4.062309119999996 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/31,3.725670308333328 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/23,3.521456849999995 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/08/23,4.273986349999995 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/10/03,17.37690834713334 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/28,5.828570828278347 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/10/03,2.701483950000003 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/10/02,2.462770175000001 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/10/02,2.4588254500000017 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/09/25,2.6620117932692318 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/11/03,3.1535642799999954 -Limekiln Lake,15509906,-74.79943763681955,43.71235215016595,2023/11/03,2.2035518249999986 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/02/23,22.47810000000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/02/22,21.227400000000024 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/02/23,22.47810000000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/02/22,21.227400000000024 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/04/28,5.508731824935003 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/06,6.998050000000002 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/04/28,5.508731824935003 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/06,6.998050000000002 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/06/06,4.093772875488448 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/06/07,15.403533333405813 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/29,5.955460607026668 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/22,6.282640909999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/06/06,4.093772875488448 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/06/07,15.403533333405813 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/29,5.955460607026668 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/05/22,6.282640909999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/07/08,14.384916669351677 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/07/08,14.384916669351677 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/09,3.8851371334783273 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/02,17.13799999999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/07/24,12.35992500242 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/10,4.301713461538462 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/09,3.8851371334783273 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/02,17.13799999999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/07/24,12.35992500242 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/10,4.301713461538462 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/25,3.5124566764058285 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/11,4.3648000003599945 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/02,8.465125000624994 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/08/25,3.5124566764058285 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/11,4.3648000003599945 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/02,8.465125000624994 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/10/05,14.080250043269992 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/10/04,13.413274999554986 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/27,2.3453074875 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/10/05,14.080250043269992 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/10/04,13.413274999554986 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/09/27,2.3453074875 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/11/05,2.279867750000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/11/05,2.279867750000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/11/29,4.670097624047613 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/12/07,5.76801201487179 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/11/29,4.670097624047613 -North Lake,15510136,-74.92759527842983,43.5383416891066,2015/12/07,5.76801201487179 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/05,14.6010811319336 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/05,14.6010811319336 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/05/07,9.381770834188334 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/30,5.858847735010003 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/21,20.878375000590008 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/29,3.702450029999996 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/05/07,9.381770834188334 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/30,5.858847735010003 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/21,20.878375000590008 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/04/29,3.702450029999996 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/05/31,5.965268959462494 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/05/31,5.965268959462494 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/06/24,4.580075001132503 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/07/11,11.132300000047485 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/06/25,4.647022734999992 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/06/24,4.580075001132503 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/07/11,11.132300000047485 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/06/25,4.647022734999992 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/11,2.528284103117499 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/04,4.252643200072487 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/03,3.8212823399999927 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/07/27,4.283238599999999 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/11,2.528284103117499 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/04,4.252643200072487 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/03,3.8212823399999927 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/07/27,4.283238599999999 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/05,3.935880934871788 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/27,8.196412511379997 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/04,4.804416673333327 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/05,3.935880934871788 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/08/27,8.196412511379997 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/04,4.804416673333327 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/07,2.991959094999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/21,3.2926204899999942 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/06,2.3812227000000004 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/07,2.991959094999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/09/21,3.2926204899999942 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/06,2.3812227000000004 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/23,3.397028935333332 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/11/07,2.3043611000000004 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/10/23,3.397028935333332 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/11/07,2.3043611000000004 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/11/23,2.9015750000000025 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/11/23,2.9015750000000025 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/12/25,22.06340833333335 -North Lake,15510136,-74.92759527842983,43.5383416891066,2016/12/25,22.06340833333335 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/03/08,9.501491667451669 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/02/27,21.67155833333335 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/03/08,9.501491667451669 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/02/27,21.67155833333335 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/03/23,22.26459166666668 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/04/09,20.26455833323837 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/03/23,22.26459166666668 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/04/09,20.26455833323837 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/04/24,5.593825002757503 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/04/24,5.593825002757503 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/06/11,15.919283333333317 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/06/03,7.708533340280825 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/06/11,15.919283333333317 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/06/03,7.708533340280825 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/05,3.0466187249999974 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/05,3.0466187249999974 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/29,6.099849248454168 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/08/06,9.242309100000009 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/30,2.8321732125000008 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/29,6.099849248454168 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/08/06,9.242309100000009 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/07/30,2.8321732125000008 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/08/23,7.9342331668194 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/08/23,7.9342331668194 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/01,17.144758333273334 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/09/24,2.763399257101665 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/02,2.7182495625000023 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/09/23,5.299012505314998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/01,17.144758333273334 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/09/24,2.763399257101665 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/02,2.7182495625000023 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/09/23,5.299012505314998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/11/11,9.709887012380944 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/11/10,3.2187157115384624 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/25,9.235037727999991 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/11/11,9.709887012380944 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/11/10,3.2187157115384624 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/10/25,9.235037727999991 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/12/04,8.13163749929502 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/01/05,23.486291666666656 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/12/29,22.539900000000006 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/01/06,21.848400000000016 -North Lake,15510136,-74.92759527842983,43.5383416891066,2017/12/28,21.848400000000016 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/05/05,4.619175002299999 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/04/28,17.110014584343332 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/05/30,12.06014999999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/07/09,3.5444728000724943 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/06/30,16.379491666786635 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/07/08,12.99238333311832 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/06/22,5.348575000842499 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/08/10,3.909682164102559 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/08/09,4.53955909999999 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/09/03,3.440602250047502 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/08/25,11.58782500019998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/10/05,3.668209100072496 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/12/07,22.663366666666672 -North Lake,15510136,-74.92759527842983,43.5383416891066,2018/11/22,21.75304166666668 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/02/09,22.351800000000008 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/03/06,22.752450000000003 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/02/26,21.856800000000018 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/05/09,8.25630833333335 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/04/23,4.346850002682501 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/05/08,3.224149794999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/04/22,4.415369774999995 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/06/01,9.373904165666683 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/06/09,5.145125000047499 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/07/03,4.001424256884159 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/08/05,3.5639142073717918 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/07/27,12.728710416816648 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/09/05,4.251597789999988 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/08/29,4.319092268205123 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/09/06,3.1429251682692274 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/09/21,7.521478786666663 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/10/08,6.537034099999992 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/09/29,3.124676284999997 -North Lake,15510136,-74.92759527842983,43.5383416891066,2019/11/09,2.634536080000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/02/21,22.490608333333338 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/05/02,15.468750004600018 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/04/25,12.381991694339176 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/05/10,13.228183333118318 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/05/03,3.8467854629999993 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/06/04,4.067355000072492 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/05/26,5.814550000047502 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/07/05,3.5446636404349947 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/06/28,5.021474999999999 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/07/06,3.620737794871789 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/06,4.820475000072488 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/07,14.590583333318312 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/31,3.85533560666666 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/09/08,7.396025000714993 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/30,4.383874999999998 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/08/23,6.896068180262506 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/10/09,3.422612896666662 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/09/23,7.249012488360005 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/09/24,12.565416666976668 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/11/03,4.181493750402507 -North Lake,15510136,-74.92759527842983,43.5383416891066,2020/10/25,11.974191687834177 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/01/30,21.75304166666668 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/04/03,14.227841666666666 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/04/04,12.99661666661917 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/05/06,13.35798333331832 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/06/07,7.239883336970827 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/05/29,14.384841696614176 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/08/02,4.928772639047612 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/07/25,2.933225000000003 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/08/25,6.563925001497499 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/09/11,3.444550000000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/08/26,4.380587430841722 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/11/06,4.37548562966666 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/10/28,3.84061289666666 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/10/29,2.8528725 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/12/07,11.77186666665166 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/11/24,3.5630211923076924 -North Lake,15510136,-74.92759527842983,43.5383416891066,2021/11/21,3.257706750000003 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/01/08,21.838800000000013 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/01/24,21.675758333333352 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/09,4.612043880769225 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/08,5.246806819999994 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/01,6.534732579004167 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/04/30,2.8438666250000013 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/31,16.734574999710002 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/06/10,2.5811295000000025 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/25,2.712625000000004 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/05/24,3.112844697656669 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/07/04,8.965950003719986 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/07/11,3.525842426666665 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/07/04,20.42844166681167 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/07/03,2.648516350000002 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/06/26,20.208974999707507 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/06/25,4.36759549999999 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/08/05,2.611199999999997 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/10,6.230000002632504 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/08/29,7.305775000072504 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/08/28,2.454490665000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/10/09,11.524198147560831 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/22,22.91974166580418 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/29,12.738333333333316 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/22,3.5095650961538483 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/09/21,5.277200000265003 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/11/09,2.609203125 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/11/08,2.3859405500000004 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/12/10,2.399899850000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/12/02,12.321733333733324 -North Lake,15510136,-74.92759527842983,43.5383416891066,2022/11/24,3.878036250000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/04/02,22.274983333333346 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/03/24,10.093858333793342 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/09,9.375206253687516 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/11,4.887899999999999 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/31,9.512684090917505 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/26,4.062275000072496 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/06/04,5.290674251483336 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/28,15.71840833419082 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/05/27,14.38643333340584 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/06/22,5.550840912777499 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/07/06,4.70182500048249 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/06/21,2.656802250000004 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/07/31,10.778812503224993 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/07/23,3.9446348438461496 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/07/22,12.397516671386663 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/06,6.812341673453334 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/01,4.709739285714277 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/01,4.989218184999992 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/08/31,2.887988550000001 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/08/23,4.961199999999994 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/10/03,14.744483340375831 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/28,17.492175104354985 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/10/03,2.868362659999999 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/10/02,3.8049922549999953 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/09/25,3.899177269999994 -North Lake,15510136,-74.92759527842983,43.5383416891066,2023/11/03,3.1628304649999985 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/03/11,21.57322500000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/02/23,22.351800000000008 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/03/11,21.57322500000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/02/23,22.351800000000008 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/04/04,8.298874998855009 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/04/04,8.298874998855009 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/04/28,3.416349266666661 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/06,3.4201409099999984 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/04/28,3.416349266666661 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/06,3.4201409099999984 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/06/06,26.38397500028502 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/30,20.901556668039184 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/29,5.7775356070491695 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/22,2.914916899999997 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/06/06,26.38397500028502 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/30,20.901556668039184 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/29,5.7775356070491695 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/05/22,2.914916899999997 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/07/08,18.4376125 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/06/22,5.147889656816069 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/07/08,18.4376125 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/06/22,5.147889656816069 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/09,3.230579203388276 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/02,13.847666666451646 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/09,3.230579203388276 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/02,13.847666666451646 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/03,8.755109670647501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/25,20.388324998279995 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/11,2.509911250000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/02,7.436850000265012 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/03,8.755109670647501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/08/25,20.388324998279995 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/11,2.509911250000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/02,7.436850000265012 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/10/05,5.42095909 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/26,5.247187505367501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/10/04,5.455799249925825 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/27,2.856914197664834 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/10/05,5.42095909 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/26,5.247187505367501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/10/04,5.455799249925825 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/09/27,2.856914197664834 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/05,2.52400655 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/05,2.52400655 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/29,5.368720352380946 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/22,4.545077470440236 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/12/07,2.8036856490384605 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/30,5.105492417380187 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/29,5.368720352380946 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/22,4.545077470440236 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/12/07,2.8036856490384605 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2015/11/30,5.105492417380187 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/01/08,21.66638333333335 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/01/08,21.66638333333335 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/02/02,12.54454999985751 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/02/02,12.54454999985751 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/02/26,15.118649999999995 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/02/26,15.118649999999995 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/05,10.208727782472758 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/03/29,10.564457519387492 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/05,10.208727782472758 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/03/29,10.564457519387492 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/30,5.868812148405828 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/21,4.9935481114808296 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/08,3.084249999999999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/29,2.7764654 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/30,5.868812148405828 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/21,4.9935481114808296 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/08,3.084249999999999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/04/29,2.7764654 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/23,3.090183332688337 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/31,6.221258718836666 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/23,3.090183332688337 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/05/31,6.221258718836666 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/03,3.250754570434998 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/02,3.792279500047501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/06/25,2.9047292500000026 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/03,3.250754570434998 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/02,3.792279500047501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/06/25,2.9047292500000026 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/04,3.343075099999996 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/03,10.394675000312493 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/27,2.5170245400000013 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/04,3.343075099999996 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/03,10.394675000312493 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/07/27,2.5170245400000013 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/05,3.473227749999994 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/27,9.561100021059998 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/04,4.567968199999994 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/28,4.600238630119994 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/05,3.473227749999994 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/27,9.561100021059998 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/04,4.567968199999994 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/08/28,4.600238630119994 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/07,4.778986999666662 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/21,3.202937409999995 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/06,2.6930054557692307 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/29,2.537482480769232 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/07,4.778986999666662 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/21,3.202937409999995 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/06,2.6930054557692307 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/09/29,2.537482480769232 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/08,3.7843354649999927 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/23,3.9096218199999937 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/07,2.781391293269229 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/08,3.7843354649999927 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/10/23,3.9096218199999937 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/07,2.781391293269229 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/10,9.856575021207505 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/09,3.115175000000008 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/23,3.381513461538459 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/10,9.856575021207505 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/09,3.115175000000008 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/11/23,3.381513461538459 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/26,24.44116666666665 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/25,14.471199999952503 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/26,24.44116666666665 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2016/12/25,14.471199999952503 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/02/03,22.674233333333337 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/02/03,22.674233333333337 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/03/08,12.310461763076912 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/03/08,12.310461763076912 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/08,9.975166666451678 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/03/23,21.348820833285853 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/09,14.463808334673326 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/08,9.975166666451678 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/03/23,21.348820833285853 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/09,14.463808334673326 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/24,13.187025039100014 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/05/11,12.88616666806666 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/04/24,13.187025039100014 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/05/11,12.88616666806666 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/11,7.916916663299169 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/03,5.001125000072495 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/11,7.916916663299169 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/03,5.001125000072495 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/07/05,2.5738545000475 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/28,4.04064486153846 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/07/05,2.5738545000475 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/06/28,4.04064486153846 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/07,9.3371272780225 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/06,4.39972725 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/07/30,2.747226524038462 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/07,9.3371272780225 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/06,4.39972725 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/07/30,2.747226524038462 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/30,7.493850020762501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/23,16.07449999999999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/07,3.06179965153846 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/30,7.493850020762501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/08/23,16.07449999999999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/07,3.06179965153846 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/10,4.280395833488341 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/01,3.1656128599999955 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/24,2.592159858333332 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/02,3.0230165550366284 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/23,2.725781600000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/10,4.280395833488341 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/01,3.1656128599999955 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/24,2.592159858333332 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/02,3.0230165550366284 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/09/23,2.725781600000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/11/11,4.810926429999996 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/11/10,4.693459942307694 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/25,15.83125833385832 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/11/11,4.810926429999996 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/11/10,4.693459942307694 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/10/25,15.83125833385832 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2017/12/04,8.895049185225249 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/01/06,21.88613333333335 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/04/11,22.34590833333334 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/03/26,20.64578333323836 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/05/05,5.123859102299999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/04/28,3.9526477548076935 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/05/29,4.514278794210834 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/05/30,7.008816670256671 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/07/09,4.631343199999986 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/06/30,19.32117499999999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/07/08,13.26605833333332 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/06/22,5.426958342624997 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/08/10,18.787110607615844 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/08/09,3.297646213333329 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/08/25,6.969525000990006 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/10/05,3.6486113500724975 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2018/11/22,21.18264999989252 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/03/05,13.9344499997375 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/02/26,21.794191666666684 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/05/09,9.891324992557504 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/04/23,12.039650025300007 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/05/08,2.8458040000000024 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/04/22,5.370800007637495 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/06/01,6.411145828970849 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/06/09,3.01831709 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/07/03,11.770756251340002 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/06/26,7.6192250036249956 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/08/04,11.918758750712517 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/07/28,3.378175001829999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/08/05,2.3354801057692307 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/07/27,12.946791676226676 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/05,3.830557889999992 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/08/29,4.434683906666656 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/06,4.34803613076922 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/30,7.38649999820501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/21,3.735496966666661 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/10/08,3.674924999999996 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/29,3.551086349999996 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/09/22,3.067525000000007 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/11/01,9.342704165381678 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/11/09,3.038514999999998 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/10/24,2.864534994999999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/12/11,14.34277499990501 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2019/11/25,4.04625484807692 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/02/29,21.750616666666684 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/04/01,14.33445833912584 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/02,7.763037894039167 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/04/25,7.551016292735836 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/10,3.1673340000000008 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/03,4.828634139999994 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/27,2.9669340908699966 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/06/04,6.099450005055004 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/05/26,3.5384750549999984 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/07/06,2.723527680000002 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/08/06,3.2093431800724948 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/07/30,3.533071966666662 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/08/07,10.585260715293204 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/08/31,4.017616673706668 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/08/22,7.898608343008326 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/10/09,5.097268249999988 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/09/23,12.451091673614169 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/10/10,11.375963461610953 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/09/24,13.980449999999983 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/11/10,4.616762281999993 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/11/03,4.360156815119999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/10/25,9.223675002442487 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2020/12/29,21.848400000000016 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/01/22,24.02516666666665 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/03/02,22.34590833333334 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/04/04,15.073337501150013 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/05/06,3.4456862499999987 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/06/06,15.933658372505828 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/06/07,3.841174999999999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/06/23,4.020775000000004 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/08/02,3.0307318799999967 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/07/24,7.86551212669916 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/08/10,8.488225000864992 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/07/25,3.294097481538462 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/09/10,3.946802875876786 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/09/03,4.19847738675988 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/08/25,7.846211366569999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/09/11,4.92817500057999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/08/26,7.671093180572509 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/09/26,6.675262143478335 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/06,8.518690049047622 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/10/28,7.481878028333325 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/09,5.626596972439167 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/05,3.1234192307692323 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/10/29,3.050501524038461 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/24,2.600628180769227 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/11/21,5.040987513812495 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2021/12/23,9.921456827787503 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/02/01,22.35679166666668 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/02/26,22.274983333333346 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/03/30,9.522083333118344 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/09,4.159495459999993 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/09,2.8407344500000016 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/08,4.999268567483329 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/01,4.6051568254574935 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/04/30,4.777156828712496 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/04/23,4.650075000144995 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/26,12.282100000000012 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/05/24,8.68707500009498 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/07/04,16.78700833350332 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/06/29,4.424950000264993 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/07/11,5.109756179365714 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/07/04,12.729983333118316 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/07/03,2.9583045 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/06/26,4.985534100072495 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/06/25,3.5778144283333284 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/07,2.868224580873336 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/05,3.146330250000004 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/04,4.500075000094997 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/09/10,8.223102545085958 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/29,3.131261200000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/08/28,4.482275000144994 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/10/09,6.907344067806658 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/10/08,2.7465405000000023 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/09/30,18.212975000369998 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/09/29,2.2625179500000003 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/09/21,4.295800000000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/10/31,7.111441659991675 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/11/09,2.9474509592032967 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/11/08,3.494268169999996 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/10/24,13.941308333333328 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/12/10,2.551283650000001 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/12/02,12.33248333311832 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2022/11/24,6.194904169111659 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/01/11,10.69658333333334 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/02/04,22.27605833328585 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/02/21,11.328266666571674 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/02/20,11.754979923210833 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/04/10,11.623258333238326 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/04/09,15.81944999995249 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/04/02,11.66484167232166 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/04/01,14.423058338123328 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/03/24,22.428574999737503 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/09,9.502345836628342 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/11,9.20070833563332 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/31,6.860000001107507 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/26,3.730319696811662 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/06/05,14.448908336063337 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/06/04,8.360277500072504 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/28,23.550758335683348 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/05/27,14.617533335203332 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/06/22,8.764958336739166 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/07,5.180275000072488 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/06,3.4403330307692244 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/06/21,4.947074256956663 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/08/05,2.796929541304999 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/31,3.122325010797498 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/31,7.649375000144997 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/30,9.7715750002875 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/23,4.107164142307688 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/07/22,5.987913655038326 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/09/01,2.1597295602650024 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/09/08,3.670143011538457 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/09/01,2.5613097307692323 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/08/31,4.407172724999993 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/08/23,3.759709099999995 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/10/03,4.421791884999992 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/10/02,3.3892385 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/09/25,2.7722961057692306 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/11/11,2.440443918269229 -Fawn Lake,22294884,-74.45496770565597,43.48921300819978,2023/11/03,3.365302752499996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/02/23,22.326100000000007 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/02/23,22.326100000000007 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/04/28,5.854846327272735 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/06,5.071850002299996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/04/28,5.854846327272735 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/06,5.071850002299996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/06/06,8.154991660621668 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/30,9.311385664520843 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/29,3.806631223333323 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/22,4.782825000359995 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/06/06,8.154991660621668 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/30,9.311385664520843 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/29,3.806631223333323 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/05/22,4.782825000359995 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/07/08,14.982270842820828 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/06/22,10.24205000386999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/07/08,14.982270842820828 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/06/22,10.24205000386999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/09,3.773306061666657 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/02,21.738899998890005 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/10,3.743126095769227 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/01,2.453952250000005 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/09,3.773306061666657 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/02,21.738899998890005 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/10,3.743126095769227 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/01,2.453952250000005 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/03,3.813092426811661 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/25,11.08103336393083 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/11,2.7904065000000027 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/02,14.55590833340584 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/26,2.5449384999999998 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/03,3.813092426811661 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/25,11.08103336393083 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/11,2.7904065000000027 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/02,14.55590833340584 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/08/26,2.5449384999999998 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/10/05,6.392595836418334 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/26,21.607254168679187 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/10/04,6.429987504214989 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/27,2.556597216895604 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/10/05,6.392595836418334 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/26,21.607254168679187 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/10/04,6.429987504214989 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/09/27,2.556597216895604 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/05,2.4250201500000004 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/05,2.4250201500000004 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/29,4.417503181999995 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/22,3.832989151538458 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/12/07,2.2807483625 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/30,3.712217467307689 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/29,4.417503181999995 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/22,3.832989151538458 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/12/07,2.2807483625 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2015/11/30,3.712217467307689 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/02/02,13.545278320816708 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/02/02,13.545278320816708 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/02/26,14.227633333333328 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/02/26,14.227633333333328 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/05,13.6013000233125 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/03/29,6.820399992125009 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/05,13.6013000233125 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/03/29,6.820399992125009 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/30,4.172829935759166 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/21,4.736467148593567 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/29,3.763254549999998 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/30,4.172829935759166 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/21,4.736467148593567 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/04/29,3.763254549999998 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/05/23,4.447329581833339 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/05/31,7.6380439408266705 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/05/23,4.447329581833339 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/05/31,7.6380439408266705 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/03,3.8527977349999913 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/06/24,18.2365875023 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/02,4.193502250000002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/06/25,3.30134285 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/03,3.8527977349999913 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/06/24,18.2365875023 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/02,4.193502250000002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/06/25,3.30134285 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/11,6.109403789200838 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/04,3.316375099999996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/26,7.455366295623329 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/03,2.621502250000002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/27,2.646765250000001 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/11,6.109403789200838 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/04,3.316375099999996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/26,7.455366295623329 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/03,2.621502250000002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/07/27,2.646765250000001 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/05,4.28021364999999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/27,3.753413654999993 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/04,3.721702249999999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/28,4.364875000072491 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/05,4.28021364999999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/27,3.753413654999993 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/04,3.721702249999999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/08/28,4.364875000072491 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/07,4.069904554999996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/21,3.029059657999997 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/06,2.436277061538459 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/29,3.917875000144997 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/07,4.069904554999996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/21,3.029059657999997 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/06,2.436277061538459 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/09/29,3.917875000144997 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/08,4.638752136333327 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/23,4.471058490333325 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/07,2.8136154057692293 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/08,4.638752136333327 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/10/23,4.471058490333325 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/07,2.8136154057692293 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/10,11.916374999324994 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/23,3.0725260507692296 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/10,11.916374999324994 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/11/23,3.0725260507692296 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/26,24.44116666666665 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/25,21.30071666666669 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/26,24.44116666666665 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2016/12/25,21.30071666666669 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/02/27,14.4518750034025 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/02/20,20.50210833788586 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/02/27,14.4518750034025 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/02/20,20.50210833788586 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/08,22.29679999935501 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/03/23,23.677016666666656 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/09,14.241749999952493 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/08,22.29679999935501 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/03/23,23.677016666666656 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/09,14.241749999952493 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/05/03,10.968629164914187 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/24,15.503333354033357 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/05/03,10.968629164914187 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/04/24,15.503333354033357 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/11,26.143412500285013 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/03,21.498699999755004 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/11,26.143412500285013 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/03,21.498699999755004 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/07/05,2.4717295000000004 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/28,3.613399999999991 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/07/05,2.4717295000000004 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/06/28,3.613399999999991 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/08/06,4.262475000819992 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/07/30,3.2122864723076883 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/08/06,4.262475000819992 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/07/30,3.2122864723076883 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/08,7.631518969236668 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/08/30,9.840066667104166 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/07,5.288499999999995 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/08,7.631518969236668 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/08/30,9.840066667104166 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/07,5.288499999999995 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/10,2.4350280683333327 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/01,4.272740206666657 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/24,2.750310601739165 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/02,2.6254648418956053 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/23,2.736410350000002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/10,2.4350280683333327 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/01,4.272740206666657 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/24,2.750310601739165 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/02,2.6254648418956053 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/09/23,2.736410350000002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/11/11,4.263665853333325 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/11/10,3.54278185 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/25,17.01351666685165 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/11/11,4.263665853333325 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/11/10,3.54278185 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/10/25,17.01351666685165 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2017/12/04,24.298416667199163 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/01/06,21.66638333333335 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/03/26,20.789133333238357 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/05/05,10.503166692066658 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/04/28,5.787280907692299 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/05/29,14.14245834497833 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/05/30,6.922950000144999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/07/09,4.798588654999985 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/06/30,13.312679165136664 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/07/08,15.2994000000725 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/06/22,8.43910000112748 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/08/10,10.151087501102502 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/08/09,8.585675009247485 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/09/03,4.590850003454996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/08/25,11.665883338005823 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/09/27,6.468208320773344 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/10/05,2.9627499500000023 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2018/12/24,21.84966666666668 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/01/25,21.867666666666683 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/03/05,21.88613333333335 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/02/26,21.867666666666683 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/05/09,8.25923332760084 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/04/23,7.779416665401668 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/05/08,6.144000009199998 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/04/22,13.993430607619278 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/06/01,6.970787497012512 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/06/09,10.81485833266334 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/07/03,1.7842778751491692 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/06/26,3.8401681999999937 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/07/28,4.392994700090834 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/08/05,2.9049181749999984 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/07/27,5.863500000072494 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/05,3.366412876666661 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/08/29,4.993760706666654 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/06,2.6545904750000004 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/30,5.058710608645831 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/21,3.762346966666661 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/10/08,4.241460000072494 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/29,13.29088333340583 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/09/22,3.373802250000008 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/11/09,2.68649 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/10/24,4.603675000167493 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/12/11,12.963500000100003 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2019/11/25,11.781941666851669 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/02/05,22.308074999785003 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/02/29,21.981250000000014 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/04/01,12.884549705970956 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/05/02,7.853468187372499 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/04/25,7.650148488536669 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/05/03,8.035391675866656 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/05/27,7.560634090530001 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/06/04,3.828833199999992 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/05/26,3.578485499999993 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/06/28,2.6175219724641665 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/07/06,2.849658055769233 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/08/06,12.446725001015002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/07/30,7.176881241772502 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/08/07,3.3901356216666643 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/08/31,2.986878699999996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/09/08,11.852849999999982 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/08/23,2.9488045000000045 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/10/09,4.299685666666656 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/09/23,15.33999791901418 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/10/10,6.754734615384618 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/09/24,13.819124999999987 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/11/10,4.421963532380945 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/11/03,4.474422725119997 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/10/25,8.653041671266665 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2020/12/29,21.66638333333335 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/01/22,11.185191666451669 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/01/30,21.66638333333335 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/03/02,22.26459166666668 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/04/04,6.885124997190012 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/05/06,2.254113970000002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/06/06,12.556866685211672 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/06/07,5.244956066884162 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/06/23,3.0311324049999984 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/08/02,6.846125003212502 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/08/10,3.388025000095006 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/09/03,7.186762502724999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/08/25,7.57078636628 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/09/11,3.550744099999994 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/08/26,7.8431681805025075 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/11/06,6.473859863550829 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/10/28,6.27109291834857 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/11/09,2.629425 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/10/29,2.3506528625 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/11/24,2.511767911538459 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2021/11/21,4.410999999999999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/01/08,21.791766666666685 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/02/01,22.34590833333334 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/02/01,21.961558333333347 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/02/26,9.779150000000014 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/02/26,21.88446666666668 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/03/30,10.630341666666675 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/03/29,21.59175833311836 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/09,3.8225606067391618 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/09,2.5188294000000018 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/08,7.587083339438323 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/01,3.9563903433333287 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/04/30,7.33658333924832 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/04/23,12.548425001399997 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/06/10,7.210300000964995 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/25,5.748450000047496 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/05/24,5.2571000004575055 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/07/04,16.255408332688322 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/07/11,9.73655000237249 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/07/04,12.24327499983248 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/07/03,7.417062121044169 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/06/26,2.597634000000001 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/06/25,3.0169300899999985 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/08/05,4.872044230841722 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/09/10,4.39794698700416 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/08/29,2.811524870000003 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/08/28,2.405763590000003 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/10/09,6.496224994735012 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/10/08,2.462982249999999 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/09/29,3.0714158750000053 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/09/21,4.662384099999996 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/10/31,4.5036318269991655 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/11/09,2.493396230769232 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/11/08,3.3512550999999986 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/10/24,23.651808333333328 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/12/10,2.477154300000002 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/12/02,16.418316666421653 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/11/24,4.057981134615386 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2022/12/26,21.88613333333335 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/02/04,22.070833333333347 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/02/21,9.406366666666678 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/02/20,12.31205492361833 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/04/10,11.244116666619158 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/04/02,13.335799999857503 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/04/01,13.855408333285828 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/03/24,14.042591667931683 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/09,8.123699999677518 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/11,7.466100002772488 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/04/26,2.405375000000001 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/31,9.069668180965 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/26,3.277120460072497 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/06/05,13.65627992672249 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/06/04,4.963700000264993 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/28,9.657816669566678 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/05/27,15.247983336253338 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/06/22,8.110896967076663 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/06,6.143625000167499 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/06/21,3.9812522500475 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/08/05,2.8962522713049976 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/31,7.152562493185001 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/30,14.43772500031249 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/23,4.394528033333321 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/07/22,6.267299246238337 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/09/01,4.025284100289992 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/09/01,2.168652725000001 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/08/31,3.7125628966666615 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/08/23,3.710486369999994 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/09/28,6.472433331215841 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/10/03,3.816727309999992 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/10/02,4.951869373333333 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/09/25,3.7682877549999927 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/11/11,2.32786535 -Oxbow Lake,22294980,-74.48156220815359,43.44282515773836,2023/11/03,2.8089496024999976 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/02/23,22.674233333333337 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/02/23,22.674233333333337 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/04/04,10.866300000000004 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/04/04,10.866300000000004 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/06,4.298452269999997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/06,4.298452269999997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/06/06,9.020983326570835 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/30,2.863043749985004 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/29,4.912245093456663 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/22,3.2073981999999965 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/06/06,9.020983326570835 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/30,2.863043749985004 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/29,4.912245093456663 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/05/22,3.2073981999999965 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/07/08,17.44489583170585 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/06/22,12.938737502099997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/07/08,17.44489583170585 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/06/22,12.938737502099997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/09,2.9727943783882766 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/02,14.289058333333315 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/07/24,4.267104173626668 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/01,5.010765849999999 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/09,2.9727943783882766 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/02,14.289058333333315 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/07/24,4.267104173626668 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/01,5.010765849999999 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/03,8.107037498977515 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/25,15.652425013920013 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/11,2.5496355625 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/02,3.719675000000006 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/26,3.421364812499994 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/03,8.107037498977515 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/25,15.652425013920013 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/11,2.5496355625 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/02,3.719675000000006 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/08/26,3.421364812499994 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/10/05,13.587930039668574 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/26,5.610853415155003 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/27,3.580972939102565 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/10/05,13.587930039668574 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/26,5.610853415155003 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/09/27,3.580972939102565 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/05,2.953236250000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/05,2.953236250000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/29,4.800688686047612 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/22,4.180580082746906 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/12/07,3.0909952884615355 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/30,5.197750000144997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/29,4.800688686047612 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/22,4.180580082746906 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/12/07,3.0909952884615355 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2015/11/30,5.197750000144997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/02/10,22.64890000000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/02/02,8.725824998275014 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/02/10,22.64890000000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/02/02,8.725824998275014 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/05,12.84000334713583 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/03/29,10.135750000877527 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/05,12.84000334713583 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/03/29,10.135750000877527 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/30,11.038500017782498 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/21,14.10249583927334 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/05/08,3.0923692307692345 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/29,6.308183345042489 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/30,11.038500017782498 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/21,14.10249583927334 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/05/08,3.0923692307692345 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/04/29,6.308183345042489 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/05/31,6.910768196002496 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/05/31,6.910768196002496 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/03,18.365070832183356 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/06/24,11.815329166666675 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/11,13.83875833333332 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/02,3.308750000000007 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/06/25,3.062969032307691 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/03,18.365070832183356 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/06/24,11.815329166666675 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/11,13.83875833333332 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/02,3.308750000000007 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/06/25,3.062969032307691 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/11,8.555545836038329 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/04,2.174944700000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/26,10.33468542836667 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/03,3.3600891298076925 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/27,3.006922105448717 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/11,8.555545836038329 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/04,2.174944700000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/26,10.33468542836667 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/03,3.3600891298076925 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/07/27,3.006922105448717 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/05,4.098224236666658 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/27,2.975709861666662 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/04,2.730635894102565 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/28,3.645949999999994 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/05,4.098224236666658 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/27,2.975709861666662 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/04,2.730635894102565 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/08/28,3.645949999999994 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/07,5.551028827714276 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/21,3.3842560616666595 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/06,2.882350868269229 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/29,4.9373295000475 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/07,5.551028827714276 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/21,3.3842560616666595 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/06,2.882350868269229 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/09/29,4.9373295000475 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/08,8.587545456666668 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/23,4.876760662714278 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/07,3.5764251682692323 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/08,8.587545456666668 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/10/23,4.876760662714278 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/07,3.5764251682692323 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/10,9.44722437022026 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/09,3.146287075 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/23,2.2101795000000024 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/10,9.44722437022026 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/09,3.146287075 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/11/23,2.2101795000000024 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/26,24.44116666666665 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/25,21.675758333333352 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/26,24.44116666666665 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2016/12/25,21.675758333333352 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/02/03,22.76205 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/02/04,21.838800000000013 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/02/03,22.76205 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/02/04,21.838800000000013 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/03/08,10.157058333023343 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/03/08,10.157058333023343 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/04/08,13.3345274999525 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/04/08,13.3345274999525 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/04/24,13.573637539100014 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/04/24,13.573637539100014 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/11,21.90164166704668 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/03,4.190100005292497 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/11,21.90164166704668 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/03,4.190100005292497 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/28,3.667037242307691 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/06/28,3.667037242307691 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/06,5.193563227884611 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/07/30,3.0979462932692297 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/06,5.193563227884611 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/07/30,3.0979462932692297 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/08,7.942512499762512 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/30,3.4113454505799945 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/23,2.970920306333332 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/07,3.570529693846153 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/31,4.787744100119993 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/08,7.942512499762512 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/30,3.4113454505799945 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/23,2.970920306333332 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/07,3.570529693846153 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/08/31,4.787744100119993 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/10,8.435004161744157 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/01,4.535552329999992 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/24,2.7338998513333324 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/02,2.6989780432692303 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/23,2.2941863249999987 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/10,8.435004161744157 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/01,4.535552329999992 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/24,2.7338998513333324 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/02,2.6989780432692303 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/09/23,2.2941863249999987 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/11/11,5.352197027714278 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/11/10,3.31569981153846 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/25,3.1703500001450053 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/11/11,5.352197027714278 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/11/10,3.31569981153846 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/10/25,3.1703500001450053 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/12/04,13.418170735089168 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2017/12/29,22.47810000000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/01/06,21.77555833328585 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/02/06,11.86009166666667 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/05/05,7.23039167476416 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/05/29,6.377433333620838 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/05/30,3.4192750000000047 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/07/09,7.4205992467391715 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/06/30,21.42529583237584 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/07/08,7.0050000003124975 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/07/01,4.930325000072491 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/06/22,14.707525000189992 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/08/10,2.564046999999998 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/08/09,3.673375000072494 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/09/03,3.8259232167932113 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/08/25,12.046783333405822 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/10/05,2.4086340182692285 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/12/07,5.606509976038616 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/11/22,3.79971475384615 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2018/12/24,21.838800000000013 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/02/10,12.597524999999996 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/05/09,5.691338185358335 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/04/23,11.724000011382488 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/05/08,4.745209099999999 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/04/22,11.89842575731667 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/06/09,2.6698203900000017 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/07/03,5.5801742483808345 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/06/26,2.7208106 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/07/28,4.262486368256664 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/08/05,2.467480813333336 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/07/27,17.663258348403346 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/05,4.997342737435891 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/08/29,4.359659862124165 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/06,3.048104950000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/30,15.454083333043329 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/21,8.291781819999997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/10/08,7.70375 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/29,5.363327279052495 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/09/22,2.679102250000005 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/11/08,8.671526711901668 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/11/01,3.75948630242833 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/11/09,1.9895178999999987 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/10/24,3.405892724999995 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/12/03,14.809291265377494 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2019/12/11,3.81277194230769 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/02/05,12.75458333268833 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/02/29,21.981250000000014 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/04/01,12.24457575706916 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/02,4.277936704189996 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/04/25,13.125341705766685 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/10,12.653449999999989 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/03,2.9357731749999965 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/27,7.46185605681167 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/06/11,3.670775000385 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/06/04,3.498955024999993 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/05/26,2.5900045000000027 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/07/06,3.164484980769229 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/06,13.8670500069475 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/07/30,3.1777931750724964 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/07,2.9079863250000013 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/31,3.121481849999997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/22,9.815820844665838 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/30,4.8767981999999925 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/08/23,2.8559158200000017 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/10/09,5.584524142380945 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/09/23,15.25167500464751 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/10/10,9.449591792380184 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/10/01,2.746516210000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/11/10,10.903566559047611 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/11/03,5.938882578380836 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/10/25,9.191666673614163 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2020/12/29,3.6287105384615352 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/01/29,24.163949999999986 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/04/04,12.457883333638344 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/05/06,3.350769230769231 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/06/06,16.968912499617502 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/06/07,3.406619230769229 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/06/23,2.6807385000000004 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/08/02,4.203437956666658 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/07/24,17.104325000404984 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/08/10,8.551619230914222 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/07/25,4.681037201025634 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/10,3.5445841050724924 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/03,3.424725424679484 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/08/25,15.41229167390418 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/11,2.687788320000004 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/02,2.610236250000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/08/26,3.6877250000000017 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/09/26,7.660954165999166 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/11/06,8.473878672380946 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/10/28,8.040874986666658 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/11/09,6.765056750000008 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/10/29,2.83933323076923 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/11/24,2.755463705769229 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/11/21,3.27401575 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2021/12/23,3.259865711538461 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/02/01,22.34590833333334 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/02/02,22.144008333285846 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/01/25,23.25183333333333 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/03/30,22.451158333333343 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/04/06,8.478937496992499 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/03/29,16.329808333333336 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/09,2.522561999666665 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/09,2.193782 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/08,5.883558338918325 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/01,3.1890610383333318 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/04/30,10.7416750023 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/25,4.612763461705961 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/05/24,2.96788091 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/07/04,20.308933333888323 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/06/29,17.05879166609416 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/07/11,5.321199633429168 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/07/04,9.256550000942504 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/07/03,5.177785612575831 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/06/26,2.5089762500000026 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/06/25,2.4646293500000014 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/08/05,6.930609047236547 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/09/10,10.991679171529164 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/08/24,3.168617299999998 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/08/29,6.083005769230771 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/08/28,3.180450000000004 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/09,3.7267575835008313 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/08,3.479146713333329 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/09/29,5.070679250000001 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/09/22,4.158157365384612 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/09/21,2.77008545 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/31,4.687539997442507 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/11/09,3.2018506538461544 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/11/08,2.7611995500000006 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/31,18.22542499974 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/10/24,23.375025 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/12/10,2.4131762249999995 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/12/02,20.836116665291676 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/11/24,4.642284942307693 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2022/12/26,4.067770504807694 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/02/04,22.274983333333346 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/03/09,21.675758333333352 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/02/20,11.07114166705167 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/04/10,12.755733333238329 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/04/09,12.259249999904991 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/04/02,11.492791666476672 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/04/01,21.30071666666669 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/09,9.07821249964252 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/11,7.414859850091664 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/31,6.969411360265005 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/26,3.5819824248116623 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/06/05,4.48312500007249 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/06/04,9.36603420700524 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/28,15.261875000120002 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/05/27,2.982559091232496 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/06/22,3.470252270144994 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/07,4.183485607951666 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/06,3.1985863999999964 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/06/21,4.674827988461536 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/08/05,2.064225763405834 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/30,7.595875000144985 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/23,2.4916975900000016 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/07/22,2.6967022500000053 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/06,7.109348493333336 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/01,3.726163639999993 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/01,4.610086399999995 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/08/31,7.38236667126666 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/08/23,2.734568100000002 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/28,10.668129167864176 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/10/03,2.518281840000003 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/10/02,3.834615423076924 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/09/25,3.6712196499999936 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/11/11,4.195031820119997 -Piseco Lake,22294994,-74.54652487622336,43.41110260749924,2023/11/03,2.428936175 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/03/11,22.32207499935501 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/03/11,22.32207499935501 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/04/28,9.122400011070006 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/06,5.954506819999999 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/04/28,9.122400011070006 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/06,5.954506819999999 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/30,6.9018749980825085 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/22,2.968620375000005 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/30,6.9018749980825085 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/05/22,2.968620375000005 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/02,4.058746218405826 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/10,4.229425000482497 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/07/25,11.10565833357082 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/02,4.058746218405826 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/10,4.229425000482497 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/07/25,11.10565833357082 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/03,13.415291672039178 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/11,13.37377499999999 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/26,4.871684858333328 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/03,13.415291672039178 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/11,13.37377499999999 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/08/26,4.871684858333328 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/27,2.3165362499999973 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/09/27,2.3165362499999973 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/11/22,4.182287607492737 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/11/30,2.4601073125 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/11/22,4.182287607492737 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2015/11/30,2.4601073125 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/02/02,27.581216666999147 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/02/02,27.581216666999147 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/02/26,14.93502708408584 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/02/26,14.93502708408584 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/03/29,22.46331666922668 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/03/29,22.46331666922668 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/04/30,12.669241717339183 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/05/08,2.9310470749999986 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/04/30,12.669241717339183 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/05/08,2.9310470749999986 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/03,7.3024704600725 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/11,13.105908333118323 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/06/25,4.348839403333326 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/03,7.3024704600725 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/11,13.105908333118323 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/06/25,4.348839403333326 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/08/04,3.669273498405829 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/27,3.419656930769228 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/08/04,3.669273498405829 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/07/27,3.419656930769228 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/05,3.268113639999996 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/08/28,3.808381820627496 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/05,3.268113639999996 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/08/28,3.808381820627496 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/10/07,3.005358346666664 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/21,4.21447957999999 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/29,4.672897729999993 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/10/07,3.005358346666664 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/21,4.21447957999999 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/09/29,4.672897729999993 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/11/08,4.556759991999994 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/10/23,8.068243189999999 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/11/08,4.556759991999994 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/10/23,8.068243189999999 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/12/10,12.97753333319083 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2016/12/10,12.97753333319083 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/02/04,21.75304166666668 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/02/04,21.75304166666668 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/02/28,13.098249999905 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/03/08,13.376858333238328 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/02/28,13.098249999905 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/03/08,13.376858333238328 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/03,10.22394583556334 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/11,13.495316667141664 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/03,10.22394583556334 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/11,13.495316667141664 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/27,8.707825001367485 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/05/27,8.707825001367485 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/07,10.575879173566664 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/07/30,4.403365099999993 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/07,10.575879173566664 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/07/30,4.403365099999993 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/23,5.356646222719167 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/31,19.17699166666668 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/23,5.356646222719167 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/08/31,19.17699166666668 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/09/24,7.891024236666673 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/10/02,2.742052611538459 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/09/24,7.891024236666673 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/10/02,2.742052611538459 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/11/11,3.658990186666663 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2017/11/11,3.658990186666663 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/04/28,15.041800016015 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/05/30,14.096912512892509 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/07/09,3.3202091001449987 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/07/01,13.62090833340582 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/09/03,5.097875000072495 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/10/05,2.502634005357141 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2018/11/22,4.613024999999998 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/02/10,11.083833333118337 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/05/09,4.663431880832731 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/04/23,6.205969706714164 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/06/26,4.534638699999988 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/07/28,6.715878790048334 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/08/05,3.527213930769228 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/08/29,17.202874999522496 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/09/06,15.008024999784984 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/09/22,12.85660833333332 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/11/09,3.2982885000000004 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/10/24,4.825300019999996 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/12/11,14.611199999857508 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2019/11/25,3.0333192307692296 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/04/01,19.659856251917503 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/04/25,7.147796228333331 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/05/03,3.3250227499999987 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/05/27,8.068484090647503 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/06/04,4.495210606834168 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/07/06,3.4018112200000004 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/07/30,3.531695480144995 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/08/31,4.156299999999991 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/09/08,11.402250000144994 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/08/23,7.929744696714169 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/10/10,18.2273750000475 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2020/11/03,9.828370830820852 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/03/03,21.750616666666684 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/05/06,4.1062091299999945 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/06/07,3.0651568250000008 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/06/23,3.879393184999992 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/08/02,3.543450000144995 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/08/10,3.017652250000005 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/07/25,2.640952250000006 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/09/03,6.681243183430006 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/09/11,3.00325675 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/08/26,6.668925000720006 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/11/06,8.13163095904762 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/11/09,6.882786395144994 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2021/10/29,2.4123612678571407 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/03/30,7.530350000155006 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/05/09,3.75333259333333 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/05/09,3.963306829999997 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/05/01,2.786171300000001 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/05/25,5.580125000119994 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/06/29,14.883766678454156 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/07/04,6.9388234933333335 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/06/26,4.705875000094997 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/08/02,17.16225416666666 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/07/28,2.6678610400000013 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/08/29,4.972550001424997 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/10/09,3.825029549999994 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/10/08,3.7541610674999952 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/09/22,2.7866000000000004 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/10/26,5.569233333533338 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2022/11/09,2.4927675749999985 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/04/10,18.529342423333347 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/05/26,7.745027270192497 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/05/28,7.811925001130005 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/06/22,2.9626500050724984 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/07/07,11.967058333333316 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/06/21,4.518145349999998 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/08/05,5.9725204564725 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/07/31,5.596725001205003 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/07/31,13.837858338100832 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/07/23,4.45742425173916 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/09/01,3.2725689584058286 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/08/22,3.134190018072498 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/09/09,2.9394022500000005 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/09/01,2.7339295000474992 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/09/28,19.723104187534176 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/10/03,3.4403704599999942 -Ireland Vly,22295456,-74.01739503488298,43.1532891563039,2023/10/27,2.9903115 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/03/11,22.29259999935501 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/03/11,22.29259999935501 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/04/04,11.986425000000004 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/04/04,11.986425000000004 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/04/28,8.313383330363337 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/05/06,7.734885012649991 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/04/28,8.313383330363337 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/05/06,7.734885012649991 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/05/22,4.3049709789494 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/05/22,4.3049709789494 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/02,5.093672726884169 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/10,7.305871213333336 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/07/25,6.805150001325003 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/02,5.093672726884169 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/10,7.305871213333336 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/07/25,6.805150001325003 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/03,9.201075014357505 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/11,7.161101370769224 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/26,3.677129564999997 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/03,9.201075014357505 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/11,7.161101370769224 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/08/26,3.677129564999997 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/10/05,20.75927499918501 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/27,5.406799256413328 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/10/05,20.75927499918501 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/09/27,5.406799256413328 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/11/22,4.856991664921667 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/11/30,6.931910867435892 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/11/22,4.856991664921667 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2015/11/30,6.931910867435892 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/02/02,2.577654500000003 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/02/02,2.577654500000003 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/02/26,4.24478333265334 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/02/26,4.24478333265334 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/03/29,5.211554574685835 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/03/29,5.211554574685835 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/04/30,4.832608333475833 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/05/08,2.7921750002150043 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/04/30,4.832608333475833 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/05/08,2.7921750002150043 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/06/09,4.955650003564997 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/06/09,4.955650003564997 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/03,6.000414589083333 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/11,12.12206666690416 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/06/25,8.220113620000006 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/03,6.000414589083333 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/11,12.12206666690416 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/06/25,8.220113620000006 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/08/04,3.8738142448116624 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/27,4.93154774999999 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/08/04,3.8738142448116624 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/07/27,4.93154774999999 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/05,4.220638630144996 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/08/28,7.0754000006000055 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/05,4.220638630144996 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/08/28,7.0754000006000055 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/07,8.555399889047614 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/21,3.7917310616666633 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/29,3.092928330769229 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/07,8.555399889047614 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/21,3.7917310616666633 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/09/29,3.092928330769229 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/11/08,13.801461249047588 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/23,5.031906065800834 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/31,11.402016666851653 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/11/08,13.801461249047588 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/23,5.031906065800834 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/10/31,11.402016666851653 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/12/10,9.010192942031674 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/12/10,9.010192942031674 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/12/26,24.44116666666665 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2016/12/26,24.44116666666665 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/01/27,10.088891666451678 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/01/27,10.088891666451678 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/04/09,6.30090980666666 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/04/09,6.30090980666666 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/05/11,14.490508333333327 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/05/11,14.490508333333327 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/06/28,7.876535020769243 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/06/28,7.876535020769243 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/07,18.548308335633337 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/07/30,4.299718765888276 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/07,18.548308335633337 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/07/30,4.299718765888276 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/09/08,5.924641670000004 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/23,18.07056667586668 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/31,3.2938522500000023 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/09/08,5.924641670000004 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/23,18.07056667586668 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/08/31,3.2938522500000023 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/09/24,7.084185220000003 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/10/02,4.541050897435895 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/09/24,7.084185220000003 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/10/02,4.541050897435895 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2017/11/11,16.129095615280818 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/04/28,3.507702250000007 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/06/07,13.490197500000027 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/05/30,7.603951909496663 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/07/09,3.458973500652497 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/07/01,8.537326149403341 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/09/03,3.113618189999998 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/10/05,4.7675948365384615 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/12/08,21.43182500033752 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2018/11/22,5.543964226282043 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/05/09,7.72617083716083 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/04/23,7.684568195072495 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/06/26,4.044948490434992 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/07/28,9.26902499988499 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/08/05,5.724143180000002 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/08/29,5.941031820000007 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/09/06,3.9887250001675096 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/10/08,8.463175005797487 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/09/22,19.386124999999986 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/11/09,9.849002270047482 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2019/10/24,8.582209701380819 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/04/01,5.684192196153836 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/04/25,12.481925000000013 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/05/03,7.263651370372488 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/05/27,6.466826513623334 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/06/04,3.94145000058 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/07/06,4.891912026602555 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/07/30,4.805019693570833 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/08/31,3.686108326666664 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/09/08,15.496116666929163 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/08/23,5.152500000362493 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2020/10/10,16.96983333280833 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/01/22,10.453300000000011 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/03/03,8.40240624868751 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/04/04,6.207946970068328 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/04/28,6.636187492507514 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/05/06,13.186683395433342 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/06/07,3.858256949999996 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/06/23,3.151959000000001 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/08/02,22.673508332855853 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/08/10,9.214325000145 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/09/03,3.2466547136666635 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/09/11,5.233625064999995 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/08/26,15.402650000332502 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/11/06,15.900350002347498 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/11/09,5.405883333453331 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/11/04,2.7987755 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2021/10/29,6.156060853269223 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/02/02,21.75304166666668 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/01/25,22.304175000000008 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/02/26,23.02285 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/03/22,13.084693750819993 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/09,7.550603033333334 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/09,2.7795400649999995 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/01,5.214939398333334 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/04/23,21.45119999931002 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/31,17.006684999762502 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/06/10,3.100986249999999 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/05/25,6.429841667049179 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/06/29,4.229758334058325 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/07/04,4.136034095507497 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/06/26,4.05878228814102 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/08/02,7.1194208339883405 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/07/28,9.797950000217504 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/08/29,8.099375756809183 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/10/09,7.679024997145007 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/10/08,3.870239398333328 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/09/22,16.338899999739997 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/10/26,7.320108333333342 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/11/09,5.131577753205119 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/11/01,2.993275000000005 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2022/10/24,14.314983333333348 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/04/07,8.187849993475007 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/04/10,6.00076000199999 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/04/02,14.99068958393335 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/05/26,8.298195450287501 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/05/28,12.940141669466673 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/06/22,7.466343180072498 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/07/07,9.127750001015 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/06/21,3.5910568201449915 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/08/05,10.854320696069442 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/07/31,6.891629167389172 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/07/31,3.250850000000005 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/07/23,7.136270835775841 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/09/01,7.174754540144996 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/08/22,4.042396966739159 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/09/09,8.573108333803338 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/09/01,12.938583333733323 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/09/28,3.352503724166664 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/10/03,3.4448069249999964 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/10/25,10.39305913829167 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/10/27,3.347518809999998 -Galway Lake,22739367,-74.07449867958414,43.03072227569086,2023/11/28,2.91406378 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/03/10,21.66638333333335 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/02/22,21.75304166666668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/03/10,21.66638333333335 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/02/22,21.75304166666668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/06,2.436945700000004 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/06,2.436945700000004 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/06,6.631341130984998 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/30,10.246387568995017 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/07,18.416258333333317 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/29,12.658249999999985 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/22,12.295258333733324 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/06,6.631341130984998 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/30,10.246387568995017 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/07,18.416258333333317 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/29,12.658249999999985 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/05/22,12.295258333733324 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/22,9.665729186681666 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/06/22,9.665729186681666 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/09,3.1555378816666626 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/02,10.326775016695 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/07/24,3.9430447167391582 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/01,3.533861530769226 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/09,3.1555378816666626 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/02,10.326775016695 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/07/24,3.9430447167391582 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/01,3.533861530769226 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/03,7.468679168346679 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/25,3.747497744999996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/11,2.540052250000002 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/03,7.468679168346679 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/08/25,3.747497744999996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/11,2.540052250000002 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/26,4.130354931836668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/10/04,10.887874999999998 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/27,3.390359961666663 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/26,4.130354931836668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/10/04,10.887874999999998 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/09/27,3.390359961666663 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/05,2.4444983750000016 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/05,2.4444983750000016 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/29,10.924031075507507 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/30,2.759109010576923 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/29,10.924031075507507 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2015/11/30,2.759109010576923 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/03/05,11.960725000184992 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/03/05,11.960725000184992 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/05,14.17972666792915 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/03/29,9.273260433236668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/05,14.17972666792915 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/03/29,9.273260433236668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/07,8.344416686936675 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/30,9.338503033333325 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/21,13.521975016100011 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/08,5.04490834488082 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/29,3.0615249999999974 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/07,8.344416686936675 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/30,9.338503033333325 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/21,13.521975016100011 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/08,5.04490834488082 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/04/29,3.0615249999999974 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/23,12.151414698638344 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/31,7.863116672976652 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/24,15.594016679316676 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/23,12.151414698638344 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/31,7.863116672976652 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/05/24,15.594016679316676 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/03,3.865992446666658 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/06/24,15.653075000189997 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/02,7.159950002114981 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/03,3.865992446666658 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/06/24,15.653075000189997 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/02,7.159950002114981 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/11,3.9302500003575016 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/04,4.172352299999988 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/26,4.181016584855123 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/03,4.929100000072499 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/11,3.9302500003575016 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/04,4.172352299999988 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/07/26,4.181016584855123 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/03,4.929100000072499 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/05,3.1468522899999964 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/27,2.442134100000001 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/04,2.1448476250000024 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/05,3.1468522899999964 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/08/27,2.442134100000001 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/04,2.1448476250000024 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/07,7.587484843333337 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/21,3.627187886666661 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/06,3.607044449999996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/07,7.587484843333337 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/09/21,3.627187886666661 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/06,3.607044449999996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/08,5.159137881666657 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/23,22.27765078760002 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/07,2.0608702249999964 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/08,5.159137881666657 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/10/23,22.27765078760002 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/07,2.0608702249999964 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/10,8.563921250420023 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/09,17.856308333788323 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/23,3.173950000000004 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/10,8.563921250420023 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/09,17.856308333788323 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/11/23,3.173950000000004 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/26,24.44116666666665 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/25,14.499808333238336 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/26,24.44116666666665 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2016/12/25,14.499808333238336 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/02/03,22.957816666666663 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/02/03,22.957816666666663 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/03/08,15.00007499990501 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/03/08,15.00007499990501 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/05/10,11.075950003487511 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/04/24,5.677952275072499 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/05/10,11.075950003487511 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/04/24,5.677952275072499 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/06/11,4.654860970947614 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/06/03,6.975092045675 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/06/11,4.654860970947614 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/06/03,6.975092045675 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/07/05,2.4585575740384606 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/07/05,2.4585575740384606 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/07,11.856733332903325 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/07/29,13.67190834720584 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/06,3.173625000000008 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/07,11.856733332903325 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/07/29,13.67190834720584 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/06,3.173625000000008 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/30,4.360013639999993 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/23,4.221801516666662 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/07,3.909994463076921 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/30,4.360013639999993 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/08/23,4.221801516666662 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/07,3.909994463076921 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/10,8.95264952571463 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/01,7.483988671739159 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/24,5.92216970166667 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/02,3.453547428205123 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/23,4.551782439666664 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/10,8.95264952571463 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/01,7.483988671739159 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/24,5.92216970166667 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/02,3.453547428205123 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/09/23,4.551782439666664 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/11/11,6.089031857714276 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/26,9.7259036672675 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/11/10,2.4736994600000024 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/10/25,5.797591743333328 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/12/04,13.683706134948329 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2017/12/29,21.914608333333344 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/05/05,2.5854645000000005 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/04/28,2.7405500000000043 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/05/29,7.649025005710002 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/05/30,5.722075773106671 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/07/09,4.034309179999992 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/06/30,21.52779999815001 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/07/08,10.092300000917502 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/08/10,3.890341678333327 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/08/09,13.94330835087584 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/08/25,8.616366669774152 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/09/27,6.199533336133335 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/12/07,10.734573333000853 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2018/11/22,3.37154023730769 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/02/09,23.67154166666665 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/02/01,21.75304166666668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/04/23,13.56285910307584 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/05/08,3.980499979999997 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/04/22,3.972052299999999 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/06/01,11.766833337495832 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/06/09,4.746897739029163 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/07/03,12.122970842365833 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/06/26,7.281418182487506 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/08/04,8.652624988797495 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/07/27,15.405350004745014 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/09/05,3.238887876666661 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/08/29,3.4434425066666616 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/09/21,3.091360616666665 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/10/08,2.906480886538459 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/09/29,4.667025000120007 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/11/09,6.2469249999999965 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2019/12/03,7.925245849810828 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/02/20,21.66638333333335 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/04/01,7.667493754289994 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/05/02,19.59478336323337 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/04/25,7.282427896333328 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/05/03,5.63858419999999 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/05/27,13.09435003224751 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/05/26,4.040990954999995 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/07/05,11.7213500000725 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/06/28,10.118464231044165 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/08/06,15.641191687366677 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/07/30,3.350002295217493 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/08/31,3.923178945333332 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/10/09,8.546569701666662 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/09/23,8.270574996510005 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/10/10,8.036850000239996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/10/01,3.5787250000000057 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/11/10,5.923866678333331 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/11/03,9.52690210607583 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2020/10/25,13.98459500034749 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/02/06,21.92995833328585 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/04/03,13.252925026215006 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/04/04,3.18881923076923 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/05/06,2.534736570000001 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/06/06,8.692625000074997 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/06/07,2.6524357500000013 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/06/23,3.691948444999996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/08/09,21.236708334503334 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/08/02,3.348292909871791 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/07/24,8.314842423595831 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/09/10,11.873483365675847 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/08/25,13.755433361078344 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/09/26,6.551760832428338 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/11/06,4.799400816047611 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/10/28,7.29392881340583 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/11/05,2.522343 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/10/29,3.084801923076922 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/11/24,3.2718317548076925 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/11/21,7.457577249999999 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2021/12/23,3.1134000000000084 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/02/26,22.30544166666668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/03/29,12.994049999570002 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/03/22,12.451699999760006 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/09,2.293504875000001 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/08,11.556496213333332 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/01,13.313366667221658 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/04/30,14.481813625 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/31,20.419720833235843 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/06/10,2.6064692307692314 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/05/24,4.776362614258211 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/06/29,10.290975002849978 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/07/11,2.9869730133333303 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/07/04,14.408574999784983 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/07/03,5.484637507634158 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/06/26,2.731556705 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/06/25,2.8212833133333355 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/08/05,13.364625000032484 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/10,11.564425000869996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/08/29,8.40780000000001 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/08/28,5.525640323333323 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/22,8.528553033333337 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/10/08,3.292975000000011 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/29,2.793552250000005 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/22,3.0812940323076923 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/09/21,4.420275000072507 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/10/31,6.615999993015013 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/10/26,3.9587378573076895 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/11/09,3.194701337499996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/11/08,6.723826013333333 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/10/24,5.738115916230004 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/12/10,2.0073862499999966 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2022/11/24,3.247900000000006 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/02/04,22.14189166666668 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/04/10,16.444250000167507 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/04/09,16.48105000000001 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/04/02,12.12222499990499 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/04/01,14.0473999999525 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/09,9.650604166309186 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/11,3.764830773333328 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/31,11.314109091207502 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/26,4.112900000072493 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/06/04,8.156127276397507 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/05/27,25.377208333165832 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/06/22,3.072349087999996 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/07/06,3.513887123405827 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/06/29,5.583080761610956 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/06/21,4.65660402179487 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/08/05,7.957231248017518 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/07/31,9.750624999999992 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/07/30,3.1721772500475023 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/07/22,4.494204171914165 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/09/06,7.9750886399999965 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/09/01,4.41030747071428 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/08/31,3.834235616666663 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/08/23,12.580083333733326 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/03,7.449666658546672 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/09/28,7.790195829233345 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/10,19.74760416688415 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/03,11.922508347228336 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/02,12.349719710914162 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/10/25,8.430204166741676 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/11/03,5.290971421999995 -Hinckley Reservoir,22741995,-75.07337582455574,43.33241092798149,2023/11/27,3.982749357307688 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/03/10,21.791766666666685 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/03/10,21.791766666666685 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/05,7.792216665194169 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/06,3.924152300072496 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/05,7.792216665194169 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/06,3.924152300072496 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/06/06,6.645149193885232 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/29,2.759197600000003 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/06/06,6.645149193885232 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/05/29,2.759197600000003 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/07/08,15.85567916772166 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/06/22,4.087850401679173 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/07/08,15.85567916772166 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/06/22,4.087850401679173 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/09,2.1630538 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/07/24,18.928308333118316 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/01,5.431100000192492 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/09,2.1630538 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/07/24,18.928308333118316 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/01,5.431100000192492 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/25,3.5819333364308323 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/08/25,3.5819333364308323 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/09/26,3.3655931899999967 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/10/04,3.987410718208214 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/09/26,3.3655931899999967 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/10/04,3.987410718208214 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/11/05,2.7635750000000034 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/11/05,2.7635750000000034 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/11/29,3.985408979999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/11/29,3.985408979999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/01/08,10.605483333118343 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/12/23,12.98222082994333 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/01/08,10.605483333118343 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2015/12/23,12.98222082994333 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/01/24,21.750616666666684 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/01/24,21.750616666666684 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/05,9.456408971333326 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/05,9.456408971333326 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/07,5.232113741564402 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/30,3.4918218299999944 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/21,4.064927314999995 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/07,5.232113741564402 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/30,3.4918218299999944 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/04/21,4.064927314999995 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/23,7.453272179955003 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/31,3.908238641114996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/23,7.453272179955003 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/05/31,3.908238641114996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/06/24,3.406217431666661 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/06/24,3.406217431666661 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/11,6.170672726884174 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/03,2.7397672500000017 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/11,6.170672726884174 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/03,2.7397672500000017 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/05,4.256410563974357 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/27,5.128460981410256 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/04,2.826234049999999 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/05,4.256410563974357 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/08/27,5.128460981410256 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/04,2.826234049999999 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/07,7.432386989666663 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/28,14.58610666718919 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/21,3.278038674999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/06,2.7396156874999997 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/07,7.432386989666663 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/28,14.58610666718919 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/09/21,3.278038674999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/06,2.7396156874999997 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/11/08,5.621917434159168 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/23,8.53913861999999 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/11/07,2.7566621682692287 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/11/08,5.621917434159168 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/10/23,8.53913861999999 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/11/07,2.7566621682692287 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/12/10,10.136766688984164 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/12/09,4.099082692307694 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/12/10,10.136766688984164 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2016/12/09,4.099082692307694 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/01/11,12.155800001819996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/01/11,12.155800001819996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/02/19,6.361716666666673 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/03/08,12.046500000332498 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/02/19,6.361716666666673 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/03/08,12.046500000332498 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/04/24,14.50263337933335 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/04/24,14.50263337933335 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/06/11,4.794084070360115 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/06/11,4.794084070360115 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/07/05,2.86045541826923 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/07/05,2.86045541826923 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/07/29,10.74765000229998 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/06,3.929724999999999 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/07/29,10.74765000229998 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/06,3.929724999999999 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/30,3.137531091666663 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/23,4.363677275452503 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/30,3.137531091666663 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/08/23,4.363677275452503 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/10,3.912799824179166 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/01,4.580236419999992 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/09/24,3.175226521666665 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/09/23,3.633024999999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/10,3.912799824179166 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/01,4.580236419999992 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/09/24,3.175226521666665 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/09/23,3.633024999999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/11/11,7.860857459047618 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/11/10,9.723225000167488 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/10/25,5.978162460769224 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2017/12/04,12.478511752711672 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/05/05,10.883325000000005 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/04/28,8.135473602380188 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/05/29,9.1838625022775 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/05/30,4.378143199999993 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/07/09,3.9543053134058312 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/06/30,4.593171067629164 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/07/08,4.669979926577495 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/06/22,3.45058954326923 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/08/10,3.7664762383699593 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/08/25,4.8519750000475 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2018/12/07,14.647791666666658 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/03/06,11.242224999325002 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/04/30,7.257016660976676 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/04/23,10.45889792012168 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/05/08,6.718334100000003 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/04/22,3.0541715 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/06/10,7.756300003117502 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/06/01,13.95923333331834 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/06/09,2.670870450000001 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/07/03,6.21226597085607 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/08/04,14.671675032247494 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/07/28,8.485724999145024 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/07/27,3.565446213333326 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/09/05,4.944050659047612 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/08/29,3.8019083666666593 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/09/21,7.095831056666669 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/09/29,9.342608333453317 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/11/08,5.370124997375004 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2019/10/23,10.350333357683342 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/02/20,22.689058333333342 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/04/01,5.524420599999993 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/05/02,4.16104607466666 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/04/25,3.1603274486666635 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/05/03,4.9190000999999945 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/04/24,4.744258335973333 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/05/27,3.397148498333327 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/05/26,2.667432300000002 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/08/06,7.330208340118335 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/07/30,4.920370836003333 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/08/31,3.0150431700000007 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/08/22,3.5677917083333286 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/08/30,2.654599999999998 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/10/09,4.989792477714281 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/11/10,10.205428679047612 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2020/10/25,5.292020505744401 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/01/29,22.76205 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/03/11,13.11340833333334 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/03/02,22.539900000000006 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/04/03,18.68961255299502 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/06/07,9.674241680536673 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/05/29,17.663625000400014 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/08/02,2.691336365309997 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/09/10,3.5587697122941675 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/08/25,12.772028333213328 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/09/26,5.107675000047504 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/11/06,3.5898358331858398 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/11/29,8.833875000000013 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/11/24,3.186072287728935 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/11/21,2.028929974999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2021/12/24,12.067575 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/01/25,22.18304166666668 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/02/26,23.02285 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/04/06,9.498861682491665 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/03/29,21.88613333333335 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/03/22,14.003650000237508 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/05/08,4.140886365000001 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/05/01,3.1302222649999987 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/04/30,5.9690341 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/04/22,5.327588461538463 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/05/31,22.007349999615 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/06/10,5.225494716739156 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/05/24,3.325559095362496 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/07/04,8.995625000965006 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/06/29,3.813059861160832 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/07/04,3.2113757133808365 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/07/03,4.912241666666658 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/06/26,3.695161349999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/06/25,5.579909134999995 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/08/07,6.944638640145005 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/09/10,7.415297346856675 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/08/24,7.385049998205011 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/08/28,2.9764665250000006 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/09/30,3.568580515293037 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/09/21,15.099925000524996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/11/08,2.0785816249999964 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/10/24,8.61440834035332 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/12/10,2.2522112499999976 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2022/11/24,2.791544230769229 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/02/04,22.14189166666668 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/09,14.826302092533329 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/11,5.794650000000003 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/31,3.277586974666662 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/26,3.998268189999994 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/06/05,6.982469231639228 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/06/04,6.915197362424163 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/05/27,24.885275 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/06/27,3.760132608333326 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/06/22,2.965577270144998 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/07/06,3.900854999999994 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/08/10,21.561362500069983 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/08/05,3.8721924269566608 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/07/30,6.446692426666671 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/07/22,2.4815522500000045 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/06,6.961988639999996 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/01,6.566693180845004 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/09,12.941533333333323 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/08/31,3.385515738333329 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/08/23,2.460224811538461 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/10/03,17.80806668046666 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/28,13.754600025284992 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/09/23,8.186208324523339 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/10/02,2.7586340553571422 -Stark Falls Reservoir,166766897,-74.7361556824222,44.41358046943017,2023/11/28,3.0252250000000065 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/04/04,7.938408332043335 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/04/04,7.938408332043335 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/04/28,7.941675009037517 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/04/28,7.941675009037517 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/05/30,8.310806666951684 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/06/07,5.675318679111546 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/05/30,8.310806666951684 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/06/07,5.675318679111546 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/07/01,7.793717082098352 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/07/01,7.793717082098352 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/08/02,8.657386366956667 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/07/25,3.302027589999995 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/08/02,8.657386366956667 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/07/25,3.302027589999995 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/08/26,4.106997290769226 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/08/26,4.106997290769226 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/09/27,12.460662499999998 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/09/27,12.460662499999998 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/11/30,22.77324166640668 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2015/11/30,22.77324166640668 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/02/02,24.366966673399183 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/02/02,24.366966673399183 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/02/26,11.907375019550017 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/02/26,11.907375019550017 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/03/29,7.218049999837507 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/03/29,7.218049999837507 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/05/08,9.719650000047489 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/05/08,9.719650000047489 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/06/09,6.475477757778575 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/06/09,6.475477757778575 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/07/03,4.478760177456548 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/06/25,14.277675758475825 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/07/03,4.478760177456548 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/06/25,14.277675758475825 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/08/04,2.963743189999996 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/07/27,2.2521226400000027 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/08/04,2.963743189999996 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/07/27,2.2521226400000027 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/09/05,3.80910834185916 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/08/28,3.2406545549999937 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/09/05,3.80910834185916 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/08/28,3.2406545549999937 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/07,3.349184110072496 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/09/21,3.542218185072493 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/07,3.349184110072496 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/09/21,3.542218185072493 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/11/08,8.943451392999995 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/23,22.740016712666694 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/31,3.589674903205124 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/11/08,8.943451392999995 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/23,22.740016712666694 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/10/31,3.589674903205124 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/12/02,2.7677522500000054 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/12/02,2.7677522500000054 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/12/26,24.44116666666665 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2016/12/26,24.44116666666665 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/02/28,12.03389167166666 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/03/08,5.307393986666666 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/02/20,15.395233333238334 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/02/28,12.03389167166666 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/03/08,5.307393986666666 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/02/20,15.395233333238334 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/04/09,4.625371949999996 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/04/09,4.625371949999996 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/07/06,15.11014833256833 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/06/28,3.3948250000000075 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/07/06,15.11014833256833 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/06/28,3.3948250000000075 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/07/30,2.9219570557692287 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/07/30,2.9219570557692287 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/09/08,9.653985837323338 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/08/23,12.15721876091999 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/09/08,9.653985837323338 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/08/23,12.15721876091999 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/10/10,15.175283345023352 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/09/24,2.466602131333332 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/10/02,2.3751996615384594 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/10/10,15.175283345023352 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/09/24,2.466602131333332 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/10/02,2.3751996615384594 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/11/11,9.053446842999996 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2017/11/11,9.053446842999996 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/01/06,21.66638333333335 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/03/11,5.241684817307683 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/05/30,5.453672352246671 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/07/09,4.043274999999993 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/08/10,16.071145835155825 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/08/02,3.6493749999999943 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/09/03,3.915397739999994 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/10/05,2.4427495615384585 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/12/08,8.922560618150818 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/11/22,2.667875000000003 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2018/12/24,2.9028840000000047 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/02/26,13.715074999904996 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/04/07,8.021658337278343 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/03/30,3.894325000000005 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/04/23,9.753766666714148 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/06/26,13.000066681759163 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/07/04,6.349775002657502 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/07/28,6.228950007005003 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/08/05,8.811008334053314 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/08/29,13.450283336158318 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/10/08,19.901983332428344 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/09/22,3.8733250001924966 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/11/01,3.7777106166666647 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/11/09,8.255020081944163 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/10/24,5.15176533533333 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/12/03,11.135575008414998 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/12/11,3.1706442307692297 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2019/11/25,4.859125000000003 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/03/08,8.780150779050004 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/02/21,13.578337515957497 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/03/24,6.093999995380009 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/04/01,2.743242225000003 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/05/03,4.428322729999999 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/06/04,3.404825005192502 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/07/06,5.960290161465832 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/07/22,4.114174999999995 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/09/08,4.10615909999999 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/08/23,3.754282583333329 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2020/10/10,7.851258336666665 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/01/06,11.243991665591672 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/01/22,12.768281666571673 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/03/27,5.133766246112506 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/04/04,4.045042806054164 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/05/06,6.140808728052494 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/06/07,5.164175000072508 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/06/23,4.847323515756662 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/09/11,3.46569773 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/08/26,4.546265910072494 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/09/27,15.386399999554992 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/11/06,11.00989155904761 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/11/09,5.190260611666658 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/11/04,4.468572730716662 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/10/29,15.095783333533316 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2021/11/22,5.23300416627167 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/02/26,20.74013333319086 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/03/22,4.344930283333329 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/05/09,7.149759111739164 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/05/09,5.171125000000003 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/05/01,6.763052275337485 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/05/31,8.719700010734995 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/06/10,13.800366666666656 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/06/29,3.041402269999996 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/07/04,7.237833338965824 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/06/26,4.139675000214999 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/08/02,6.571506238010005 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/08/05,3.669603033405827 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/08/29,3.205375 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/10/09,6.200512123333329 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2022/11/09,2.368639099999997 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/02/10,13.97886459762583 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/01/28,3.1875455384615377 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/03/09,2.368302250000003 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/03/26,14.345316666666696 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/04/10,2.594672625000003 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/04/02,7.32122803333334 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/05/26,3.0906507634058293 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/05/28,6.477275000000005 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/06/29,7.270200000457497 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/06/21,5.107827385394881 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/08/05,9.19972045 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/07/31,3.3235341000724943 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/07/31,6.301925000284999 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/07/23,3.210302250095005 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/09/01,3.9803613699999896 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/08/27,3.1181332179999965 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/09/01,2.5977753249999997 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/09/28,9.357049995967508 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/10/03,3.3461036999999965 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/10/25,4.976142423500837 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/10/27,2.5070816500000004 -Wanaksink Lake,4147088,-74.56552805609782,41.61913461305419,2023/11/28,2.931575000000005 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/04/04,15.046509090332512 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/04/28,7.783496465345 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/05/30,5.769131243177506 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/06/07,4.8220284143824985 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/05/22,4.839134488891662 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/07/01,11.983339664255828 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/08/02,6.984903030362505 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/07/25,3.3337981298076924 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/09/03,5.672237495125006 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/09/11,3.00645 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/08/26,2.636609105000001 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/09/27,3.849984099999992 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2015/11/30,12.501775000184988 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/02/02,10.801995000670006 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/02/26,6.730134096739171 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/03/29,17.027975071300016 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/05/08,5.147301537864158 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/06/09,6.966883814969403 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/07/03,4.373220459362503 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/06/25,6.134136369999999 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/08/04,6.50600833352584 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/07/27,2.9454021999999984 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/09/05,6.987481820747497 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/08/28,4.978009853333326 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/10/07,8.734802392254872 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/09/21,7.5695750040375 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/11/08,3.964471258333327 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/10/23,17.278433365533363 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/10/31,2.3221434624999997 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2016/12/02,5.323529084615371 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/01/11,9.290656252489995 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/02/04,12.875549999569994 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/02/28,4.1816106067141705 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/03/08,5.535305346666664 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/04/09,3.569242766666664 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/05/03,9.226200023374998 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/07/06,4.9363522795050025 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/07/30,4.412124994871792 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/08/23,10.72495000105998 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/10/10,5.200117425680836 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/09/24,3.73119832466666 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/10/02,3.4212615929487136 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2017/11/11,9.601928662999995 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/01/06,21.675758333333352 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/03/11,6.12187631538461 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/04/28,2.7935750000000024 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/05/30,5.3584852233375 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/07/09,3.971274999999992 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/08/02,4.0694045500724965 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/09/03,3.349175000000004 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/09/27,3.242816599999999 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/10/05,2.5038029557692294 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/12/08,18.59877501610002 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2018/11/22,4.880225828316722 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/01/01,7.52319582777834 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/02/10,3.583250000000008 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/03/06,22.404625000000006 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/02/26,14.542991666666667 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/04/07,6.605625004357505 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/03/30,11.080225041400007 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/04/23,16.30696138363752 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/06/26,3.4271068199999943 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/07/04,9.01384813579 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/07/28,9.536520838148329 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/08/05,13.247183333333318 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/08/29,4.066109090505003 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/09/22,5.565325000477504 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/11/01,7.9420499944 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/11/09,6.25144736078166 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/10/24,5.902206849999994 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/12/11,22.03975833333335 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2019/11/25,13.63618333311832 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/03/08,7.381760412459178 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/02/21,12.589194365300823 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/03/24,11.386983405008335 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/04/01,2.5555750000000006 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/05/03,13.654400050700012 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/05/27,6.842056658709165 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/06/04,6.3018250027525005 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/07/06,4.983464403333328 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/08/07,7.441250002990001 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/07/22,10.833800031122507 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/09/08,7.215750002704999 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/08/23,4.017343179999994 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/10/02,15.607418901945003 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/10/10,8.028900000000014 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/01/06,22.47810000000001 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2020/12/29,6.099027615384615 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/01/30,18.622514583533334 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/04/04,6.670483715283313 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/05/06,4.044675004599994 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/06/07,12.869233356333355 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/08/02,6.197112499387504 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/09/03,17.217074999999994 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/09/11,2.7387569400000005 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/08/26,3.929699999999995 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/09/27,4.587550000337492 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/11/06,3.7358236419999953 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/11/09,7.258872734999992 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/11/04,5.111900000359996 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2021/11/22,6.354374991035009 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/03/22,4.901825000000002 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/05/09,6.418427276739168 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/05/09,7.021616680466658 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/05/01,5.628529170084161 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/06/10,17.44466666692918 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/06/29,2.984566663333329 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/07/04,3.679265156739169 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/06/26,5.508450002300004 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/08/02,11.133828334663354 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/08/05,5.179175759533329 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/08/29,7.783300000144994 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/10/09,6.344643943333329 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/10/08,3.0381250000000053 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2022/11/09,2.3136980999999968 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/02/10,11.136693153599404 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/01/28,14.732083333333335 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/03/09,2.316941325000001 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/03/26,15.112441698866684 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/04/10,3.822179256666664 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/04/02,7.858571218333338 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/04/26,5.166437502337496 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/05/26,5.006213640072491 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/05/28,2.5357924250000017 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/07/07,2.863602250000003 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/06/29,6.90422916754916 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/06/21,4.292763786995947 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/08/05,7.050232573405832 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/07/31,3.784718180072491 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/08/08,3.022775000000004 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/07/31,3.705274999999998 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/07/23,3.127450000000004 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/09/01,5.100415916666657 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/08/27,3.156485917999996 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/09/01,5.172065729999999 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/09/28,8.4569562477525 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/10/03,4.230450230769225 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/10/25,22.715083351470856 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/10/27,2.324795349999998 -Yankee Lake,4147160,-74.55942419729892,41.58659831275824,2023/11/28,3.3656916923076925 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/04/04,6.572161349999996 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/04/04,6.572161349999996 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/04/28,8.057179046684162 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/04/28,8.057179046684162 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/05/30,8.22325794222417 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/06/07,6.210636481316548 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/05/22,4.790392880340828 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/05/30,8.22325794222417 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/06/07,6.210636481316548 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/05/22,4.790392880340828 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/07/01,7.966962501445016 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/07/01,7.966962501445016 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/02,4.074625000072501 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/10,6.321063461875948 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/07/25,4.262395464999995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/02,4.074625000072501 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/10,6.321063461875948 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/07/25,4.262395464999995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/26,5.221514254666662 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/08/26,5.221514254666662 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/09/27,4.031438624999995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/09/27,4.031438624999995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/11/30,5.200475000289994 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2015/11/30,5.200475000289994 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/02/10,9.73221666666668 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/02/02,12.3470500003325 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/02/10,9.73221666666668 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/02/02,12.3470500003325 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/03/29,14.226500023792504 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/03/29,14.226500023792504 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/05/08,4.641488399783565 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/05/08,4.641488399783565 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/06/09,8.45064583264084 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/06/09,8.45064583264084 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/07/03,8.069377495564991 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/06/25,4.350474999999995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/07/03,8.069377495564991 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/06/25,4.350474999999995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/08/04,6.837509850217504 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/07/27,4.485370650769221 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/08/04,6.837509850217504 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/07/27,4.485370650769221 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/09/05,9.13170000036 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/08/28,5.235500004999993 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/09/05,9.13170000036 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/08/28,5.235500004999993 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/07,3.07137803833333 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/09/21,7.736325000792502 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/07,3.07137803833333 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/09/21,7.736325000792502 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/11/08,9.798193814666664 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/23,15.570608397408355 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/31,2.9799218799999974 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/11/08,9.798193814666664 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/23,15.570608397408355 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/10/31,2.9799218799999974 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/12/02,2.793329500000004 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2016/12/02,2.793329500000004 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/02/04,5.767749999999996 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/02/04,5.767749999999996 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/02/28,3.997205303333336 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/03/08,5.368925866666663 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/02/28,3.997205303333336 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/03/08,5.368925866666663 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/04/09,4.385862153333328 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/04/09,4.385862153333328 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/06,5.306162131271666 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/06/28,6.3616119302227325 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/06,5.306162131271666 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/06/28,6.3616119302227325 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/22,18.873249999999988 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/30,3.186514748076921 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/22,18.873249999999988 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/07/30,3.186514748076921 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/09/08,6.173269163539172 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/08/23,5.9740666704616725 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/09/08,6.173269163539172 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/08/23,5.9740666704616725 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/10/10,5.000684823788578 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/09/24,2.787383946333333 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/10/02,3.58846008461538 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/10/10,5.000684823788578 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/09/24,2.787383946333333 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/10/02,3.58846008461538 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/11/11,10.93193244466666 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2017/11/11,10.93193244466666 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/01/06,21.67155833333335 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/03/11,5.096913138461531 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/04/28,2.835325000000003 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/06/07,12.563310506541663 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/05/30,19.49753333254334 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/07/09,6.7092090900725045 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/08/02,3.3528500949999995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/08/26,7.956715000080022 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/09/03,4.600958946333325 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/09/27,6.714459093815005 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/10/05,3.308521459615381 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/12/08,13.163366682766682 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/11/22,2.2860676250000007 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2018/12/24,21.66638333333335 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/03/06,13.596733333095838 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/04/07,10.71687500886749 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/03/30,4.761775002347496 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/04/23,13.206400011690013 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/05/25,8.182579159336665 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/06/26,13.908008337933332 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/07/04,7.611308349553343 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/07/28,5.843200017617502 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/08/05,13.90544999999998 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/08/29,7.431337499522499 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/09/22,3.430171213453327 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/11/01,2.643367451666667 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/11/09,5.614839783954998 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/10/24,5.95318047199999 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2019/11/25,6.746895838195827 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/03/08,13.046525039100011 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/03/24,10.113716544654174 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/04/01,3.3302134615384604 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/05/03,14.675875087400016 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/05/27,4.540423501439999 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/06/04,5.897350000480003 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/06/28,3.00387500113 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/07/06,3.173931825000001 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/08/07,12.889975000237497 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/07/22,3.011775000047501 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/09/08,6.481625000552506 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/08/23,3.644974999999992 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/10/02,6.71597499344501 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/10/10,4.484877274999995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/01/06,22.26459166666668 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2020/12/29,3.545500000000008 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/01/22,21.754608333118348 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/03/03,16.16831666666666 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/04/04,14.548150006900014 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/05/06,3.978204175866664 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/06/07,10.131786670039164 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/06/23,6.618070087849165 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/08/02,5.509816668631669 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/09/11,4.106313654999994 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/08/26,3.763605313333328 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/11/06,4.551932746999993 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/11/09,9.510935462999992 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/11/04,7.032350000442481 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2021/11/22,7.55378749995 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/03/22,5.97099621563334 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/05/09,5.935515916811664 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/05/09,6.615741673686658 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/05/01,7.952454169544163 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/05/31,4.153066629100714 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/06/10,12.99314999999999 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/06/29,3.1049181800724983 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/07/04,4.230527277799997 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/06/26,10.065175767520826 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/08/02,3.5251616677491677 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/08/05,5.380325001079996 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/08/29,4.223134099999996 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/10/09,5.985083333500833 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2022/11/09,2.2868003499999983 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/02/10,7.605764178289158 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/01/28,3.4315594865384607 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/03/26,16.861816707804188 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/04/10,3.8116500507692272 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/04/02,6.431489398333334 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/04/26,4.260950000384992 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/05/26,3.2574007684058297 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/06/05,2.849250000047498 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/05/28,6.474128786666659 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/07/07,4.627262500239998 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/06/29,9.239075000217497 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/06/21,5.003990929765003 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/08/05,8.323714770095002 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/07/31,4.403793180217495 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/08/08,3.1803250000000047 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/07/31,13.547875000384996 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/09/01,11.565918832380945 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/08/27,3.7307718079999943 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/09/01,9.635575000597488 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/09/28,9.033424992250003 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/10/03,4.647321366999996 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/10/25,22.95940004149501 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/10/27,3.139790119999997 -Wolf Lake,4147178,-74.5878963079763,41.58670133818369,2023/11/28,3.0973097823076934 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/04/04,5.201074999999992 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/04/04,5.201074999999992 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/05/30,9.934424222231668 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/06/07,19.853124999807516 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/05/22,3.047977250000004 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/05/30,9.934424222231668 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/06/07,19.853124999807516 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/05/22,3.047977250000004 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/07/01,9.73445208434334 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/07/01,9.73445208434334 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/08/02,7.7680000000225 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/07/25,3.2236250002175 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/08/02,7.7680000000225 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/07/25,3.2236250002175 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/09/11,3.262633217948716 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/08/26,2.6231466607692293 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/09/11,3.262633217948716 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/08/26,2.6231466607692293 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/10/05,6.227774996915007 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/09/27,4.915256445209163 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/10/05,6.227774996915007 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/09/27,4.915256445209163 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/11/30,23.176525000169995 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2015/11/30,23.176525000169995 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/10,14.988981250440023 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/01/25,7.698408338150841 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/02,2.973764228205127 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/10,14.988981250440023 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/01/25,7.698408338150841 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/02,2.973764228205127 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/26,9.981266669741675 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/02/26,9.981266669741675 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/03/29,7.348258199310001 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/03/29,7.348258199310001 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/04/30,3.899655681583336 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/05/08,2.546959000000003 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/04/30,3.899655681583336 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/05/08,2.546959000000003 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/06/09,8.480187500310006 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/05/24,8.26060833371582 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/06/09,8.480187500310006 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/05/24,8.26060833371582 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/07/03,11.525362501140004 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/06/25,5.170959089999997 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/07/03,11.525362501140004 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/06/25,5.170959089999997 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/08/04,3.836595449999996 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/07/27,5.1336542110805805 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/08/04,3.836595449999996 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/07/27,5.1336542110805805 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/09/05,4.611428786811661 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/08/28,6.5165590949999945 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/09/05,4.611428786811661 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/08/28,6.5165590949999945 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/07,5.198088681047611 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/09/21,3.439541514666662 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/07,5.198088681047611 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/09/21,3.439541514666662 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/11/08,3.7229304520724975 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/23,5.101550000119997 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/31,3.1280998782051257 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/11/08,3.7229304520724975 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/23,5.101550000119997 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/10/31,3.1280998782051257 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/12/10,9.005698639275012 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2016/12/10,9.005698639275012 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/01/11,12.181971356556335 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/01/11,12.181971356556335 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/04,17.543100000384992 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/04,17.543100000384992 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/28,9.057533089091946 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/03/08,3.414106487435894 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/20,5.122203813141018 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/28,9.057533089091946 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/03/08,3.414106487435894 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/02/20,5.122203813141018 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/04/09,6.5339152986666615 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/04/09,6.5339152986666615 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/05/03,13.254104168981682 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/05/03,13.254104168981682 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/07/06,13.074574996797496 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/06/28,5.035154168149163 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/07/06,13.074574996797496 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/06/28,5.035154168149163 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/07/30,7.555841685139167 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/07/30,7.555841685139167 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/09/08,3.9773483280508346 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/09/08,3.9773483280508346 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/09/24,2.5786710548116663 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/10/02,3.54551347403846 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/09/24,2.5786710548116663 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/10/02,3.54551347403846 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/11/11,8.918065156739168 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/11/11,8.918065156739168 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2017/12/29,3.532565905394999 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/01/06,3.438786250047499 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/03/11,8.709195442820505 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/04/28,8.663934850072485 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/06/07,14.025333334458349 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/05/30,19.143666663751684 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/07/09,5.298054529999991 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/07/01,8.737375000554996 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/08/02,3.3504399999999936 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/09/03,2.676225000000005 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/10/05,3.4163849211538424 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/12/08,4.8438041715641615 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/11/22,6.694489393333316 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/01/01,15.562650041959998 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2018/12/24,4.011040711658458 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/02/10,6.5150499967450095 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/04/07,11.26352868193 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/04/23,11.080426253692494 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/06/26,4.921990087623335 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/07/04,5.694321245835834 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/07/28,6.485750002014997 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/08/05,3.5590500000724963 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/08/29,12.53616668068168 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/10/08,8.956050001149984 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/09/22,3.849931854999992 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/11/01,9.181312526357502 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/11/09,6.009320459585 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/10/24,2.924412090000001 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/12/03,8.084168362870832 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/12/11,4.908275000264992 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2019/11/25,21.040516667051666 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/03/08,8.797090665711107 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/02/21,8.236643463015278 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/03/24,11.488782923579167 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/04/01,3.1679750000000046 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/05/03,9.95536668362166 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/06/04,12.560783343730838 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/07/06,4.958859917054999 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/07/22,4.371871834871786 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/09/08,4.929399999999998 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/08/23,4.921143179999996 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/10/10,2.1488181999999965 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/11/03,6.746399998190012 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/01/06,7.735618180190004 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2020/12/29,3.290675000000003 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/01/30,4.878132036923068 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/03/11,6.466599998710013 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/04/04,19.64138334483336 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/05/06,6.002654556034994 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/06/07,4.899771266284998 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/06/23,6.696740167766664 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/08/02,6.628993182925006 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/09/11,12.694275000189997 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/08/26,9.15150075671418 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/09/27,3.782346824999992 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/11/06,9.61372715904761 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/11/09,4.162878043333331 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/11/04,6.92920378705166 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2021/11/22,6.431649996255009 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/02/10,22.337341666666678 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/02/10,3.45199423076923 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/02/26,11.732828340975828 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/03/06,14.170233333518324 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/02/26,3.1798594647435885 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/03/22,8.847552269999984 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/05/09,9.555768953404158 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/05/09,4.761187283640231 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/05/01,7.721931441086665 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/06/10,3.330600000047503 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/06/29,2.8772090999999964 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/07/04,6.631691662154173 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/06/26,7.547565912372505 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/08/02,6.118583333550837 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/08/29,3.3026817499999983 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/10/09,5.679472730072501 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/10/08,4.242533376153839 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/11/09,2.4241444875 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2022/11/29,6.124299997775008 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/02/05,4.347922466756548 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/01/28,4.037930875000001 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/02/27,5.89802499427501 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/03/09,3.6904750002649966 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/03/26,8.726750000095002 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/04/10,3.2469327974358944 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/04/02,7.951625014017489 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/05/26,4.014195450072493 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/06/05,2.8265250000000024 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/05/28,6.555961389999994 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/07/07,8.089019706859165 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/06/29,13.62293750038 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/06/21,4.795354546274998 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/08/05,13.676275000094996 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/07/31,4.007675000289992 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/07/31,10.309773732239169 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/07/23,6.5190583365283326 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/09/01,3.918287887101661 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/08/27,3.047814099999996 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/08/22,14.197300022595 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/09/01,3.928149599999995 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/10/03,2.8729886 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/10/25,3.754308333118335 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/10/27,4.070569101999996 -Rondout Reservoir,6199522,-74.47185230716795,41.82604985359916,2023/11/28,4.59871923076923 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/04,21.16722500004748 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/04,21.16722500004748 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/28,4.596633016495232 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/29,3.185169850769229 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/29,3.7083661107692247 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/28,4.596633016495232 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/29,3.185169850769229 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/04/29,3.7083661107692247 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/05/30,19.709020833580848 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/06/07,10.781757953495008 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/05/22,8.471112120471675 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/05/30,19.709020833580848 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/06/07,10.781757953495008 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/05/22,8.471112120471675 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/08/02,2.970680300724997 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/07/25,4.437411536538456 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/08/02,2.970680300724997 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/07/25,4.437411536538456 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/09/03,13.20412727722749 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/09/11,4.97062833110672 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/08/26,3.3552023649999967 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/09/03,13.20412727722749 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/09/11,4.97062833110672 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/08/26,3.3552023649999967 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/10/05,3.2105826385508305 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2015/10/05,3.2105826385508305 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/02/10,6.885849997345009 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/01/25,3.798474999927507 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/02/02,3.165168326923078 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/02/10,6.885849997345009 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/01/25,3.798474999927507 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/02/02,3.165168326923078 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/03/29,14.267416733104188 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/04/06,7.235374622386672 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/03/29,14.267416733104188 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/04/06,7.235374622386672 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/05/08,2.886029500000001 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/04/22,6.0503250001674935 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/05/08,2.886029500000001 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/04/22,6.0503250001674935 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/06/09,6.97828333347834 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/06/09,6.97828333347834 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/03,16.599808333333325 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/11,4.980252250072491 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/06/25,5.248391663333328 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/03,16.599808333333325 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/11,4.980252250072491 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/06/25,5.248391663333328 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/08/04,3.11840380427583 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/27,2.933837334203297 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/08/04,3.11840380427583 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/07/27,2.933837334203297 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/08/28,3.668228033405828 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/08/28,3.668228033405828 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/07,2.910478033333331 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/07,2.910478033333331 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/11/08,4.901085001999994 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/23,5.617406825192501 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/31,2.940487041666663 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/11/08,4.901085001999994 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/23,5.617406825192501 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/10/31,2.940487041666663 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/12/02,2.4300952500000004 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/12/02,2.4300952500000004 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/01/11,4.403825034999998 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/12/26,24.44116666666665 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/01/11,4.403825034999998 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2016/12/26,24.44116666666665 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/04,2.78858925 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/04,2.78858925 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/28,8.785909858709159 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/03/08,2.747731520000002 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/20,5.340064153846156 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/28,8.785909858709159 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/03/08,2.747731520000002 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/02/20,5.340064153846156 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/04/09,2.453942000000002 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/04/09,2.453942000000002 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/06/28,3.5915250000000047 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/06/28,3.5915250000000047 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/07/22,8.66555833359332 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/07/30,5.832700000145001 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/07/22,8.66555833359332 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/07/30,5.832700000145001 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/08/31,3.2294500000000057 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/08/31,3.2294500000000057 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/09/24,3.137049088072497 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/10/02,2.9316711682692302 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/09/24,3.137049088072497 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/10/02,2.9316711682692302 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/11,8.243005305144994 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/03,9.996718350630822 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/11,8.243005305144994 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/03,9.996718350630822 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/11/27,5.905244701108336 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/01/07,13.848474999952494 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2017/12/29,5.063570832828339 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/01/06,4.485024999999999 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/03/03,9.598561279720004 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/03/11,6.878891817307682 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/06/07,6.357895827393349 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/05/30,5.271891684839164 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/07/09,4.452027911856899 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/08/10,20.26320000043249 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/08/02,6.580634090507501 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/09/04,3.800090954999992 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/09/04,3.819890954999993 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/08/26,13.592960609383326 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/09/03,10.092900000337496 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/10/05,2.4118922500000006 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/11/07,8.895178805705834 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/11/07,6.604531079159168 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/11/23,4.848011344999996 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/12/08,2.3873302375000005 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/11/22,2.5398966682692308 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/01/01,11.134940890167483 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/12/25,7.410674995825011 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/12/25,7.426999996470011 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2018/12/24,6.4438916718541535 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/01/26,3.9990681652899975 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/01/26,4.353284070289996 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/02/10,20.677915164833344 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/01/25,2.641793200000001 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/02/26,9.83164166638166 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/04/07,12.357920834893346 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/03/30,5.033460611270833 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/04/23,11.449611381242498 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/06/03,11.649275005032498 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/06/03,4.599275002482496 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/07/05,2.5415000019649976 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/07/05,2.797125002734997 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/06/26,14.209658344833349 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/07/04,7.389425000382509 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/07/28,7.948708347953341 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/08/05,14.03080833345332 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/07,3.7899681849999936 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/07,3.236252274999996 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/08/29,9.57655834964833 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/08/22,3.8321454454349935 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/08/22,4.361231053478325 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/30,6.471425000185005 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/23,3.673458326739162 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/23,3.765371208405827 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/09/22,4.353447730217493 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/11/01,9.26930456499999 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/11/09,18.10715416685666 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/10/24,2.340204800000002 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/12/03,9.538910013764992 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/11/26,3.696570593739165 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/11/26,4.0753077273375 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2019/12/11,12.812049999784984 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/01/29,7.393267312380949 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/01/29,7.726201402380946 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/03/01,5.167958342513336 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/03/01,5.967175008300004 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/02/21,7.730191668333326 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/04/02,5.211509100404999 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/04/02,5.006659100309997 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/03/24,8.79395665901916 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/04/01,2.476076565769232 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/05/04,8.70557916462416 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/05/04,8.628649998179991 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/04/25,10.06655000268501 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/05/03,5.159807954617503 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/05/27,4.55968328555488 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/06/04,13.991549999354984 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/06/28,6.775999981740001 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/06/21,5.506759094757497 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/06/21,5.7240840950225 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/07/06,3.562814003846153 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/08/08,8.648237493082501 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/08/08,8.409212490597497 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/08/24,9.142599995094992 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/08/24,9.563924995374991 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/09/08,14.155874999999982 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/09/25,16.642520833190826 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/09/25,16.736470833190825 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/10/10,4.556590909999996 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/11/28,5.924681663011665 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/11/28,5.606814724656905 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2020/12/29,2.9578772500000063 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/01/30,2.8870541432692303 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/03/03,14.099083333500856 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/04/05,9.654891675566658 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/04/05,9.619066677914162 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/03/27,9.832835414319163 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/04/04,11.414058349505831 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/04/28,11.463675003020002 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/05/06,5.29655833810083 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/08,17.781343941999154 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/08,16.34021894204665 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/05/23,6.459125616230836 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/05/23,7.984400023215004 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/07,3.9190430134615366 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/24,3.7868121234058254 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/24,3.6881621234058257 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/06/23,5.66811534852857 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/11,1.523711361957501 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/11,1.82596363203 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/09/03,2.8335651416666634 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/27,4.728556719120112 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/27,4.460256719120113 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/09/11,4.949575000989996 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/08/26,9.010634090382505 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/09/27,3.1863364049999974 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/11/06,5.5464174627142775 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/11/09,4.330768194999996 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/11/04,3.313655629807692 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/11/04,3.2912775913461547 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2021/10/29,2.5591618000000014 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/10,10.726518754614997 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/10,4.046502024038462 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/26,18.64508333549583 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/19,6.253583351643331 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/19,7.007427121703335 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/02/26,5.028252547508398 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/03/22,3.346682274999996 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/05/09,3.33367349384083 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/05/09,3.0006833402333317 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/05/01,6.021634092837487 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/04/23,7.302681446721658 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/11,3.744692433405828 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/11,3.744842433405828 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/06/29,2.7967399979999983 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/06/24,3.127727281232498 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/06/24,3.8864840952174906 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/04,4.093600004647499 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/06/26,11.306240847470834 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/02,6.4790189718541695 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/28,6.854375000200007 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/05,3.994540173076916 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/07/28,2.389775 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/31,3.2498882698717937 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/31,3.219874619871793 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/08/29,3.038675000000002 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/10/09,4.155834853333326 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/10/08,4.38796820023999 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/11/07,6.388143222670833 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/11/07,7.114516676896671 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2022/11/09,2.4022642307692297 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/02/10,18.72776670365669 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/02/06,3.1156894823076917 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/02/06,3.848360979999995 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/01/28,3.199040029999996 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/02/27,7.571774993220008 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/03/09,2.7152800750000017 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/04/10,3.1856713866666677 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/04/02,4.934650000144991 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/05/26,8.194696966931666 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/06/05,10.206429165184176 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/05/28,3.1532359441025632 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/06/29,5.156897462904045 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/08/05,3.009157429666665 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/07/31,3.0047740980724984 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/07/31,4.7409750007200016 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/07/23,6.005877270287506 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/08/27,3.738619696666659 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/08/22,9.388124997572495 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/09/01,2.952912049038462 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/10/03,5.92414319199999 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/11/11,3.100499266859165 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/12/06,3.659250000000009 -Sterling Lake,6244712,-74.25912035059063,41.20727261043623,2023/11/28,3.3629250000000046 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/04/03,10.582833334293344 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/04/03,10.582833334293344 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/05,4.296074736574045 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/06,5.056150000072495 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/05,4.296074736574045 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/06,5.056150000072495 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/06/06,7.8404562531124995 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/29,2.9189795000000043 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/06/06,7.8404562531124995 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/05/29,2.9189795000000043 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/07/08,13.851616668594165 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/06/22,3.6835697069566593 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/07/08,13.851616668594165 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/06/22,3.6835697069566593 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/09,2.551563273000001 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/01,3.2836500000000024 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/09,2.551563273000001 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/01,3.2836500000000024 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/25,11.352441684661663 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/08/25,11.352441684661663 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/09/26,2.778892421666665 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/10/04,13.469758333333328 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/09/26,2.778892421666665 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/10/04,13.469758333333328 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/11/29,3.617198710805858 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2015/11/29,3.617198710805858 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/02/01,15.782462917779192 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/01/24,21.66638333333335 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/02/01,15.782462917779192 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/01/24,21.66638333333335 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/03/04,12.007108333918332 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/03/04,12.007108333918332 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/04/05,6.177715161666665 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/04/05,6.177715161666665 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/07,15.37356673566669 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/04/21,4.146118968333327 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/07,15.37356673566669 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/04/21,4.146118968333327 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/23,13.697658333453344 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/31,6.686558336830823 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/23,13.697658333453344 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/05/31,6.686558336830823 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/06/24,3.256137728362499 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/06/24,3.256137728362499 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/11,10.31188750175 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/03,2.3947021 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/11,10.31188750175 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/03,2.3947021 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/27,4.071398486666658 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/09/04,4.360670449999993 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/08/27,4.071398486666658 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/09/04,4.360670449999993 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/09/28,4.474829179789169 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/10/06,2.39896796153846 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/09/28,4.474829179789169 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/10/06,2.39896796153846 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/11/07,2.4522509307692277 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/11/07,2.4522509307692277 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/11/23,7.784550000362498 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/11/23,7.784550000362498 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/12/25,4.280195316346155 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2016/12/25,4.280195316346155 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/02/03,24.072216666666648 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/02/03,24.072216666666648 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/02/19,12.158141666676672 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/02/19,12.158141666676672 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/03/23,22.34590833333334 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/03/23,22.34590833333334 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/04/24,10.53164166666666 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/04/24,10.53164166666666 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/06/11,5.389874628831666 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/06/11,5.389874628831666 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/07/05,2.421179449999999 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/07/05,2.421179449999999 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/07/29,12.82787500229999 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/08/06,2.7475750000000057 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/07/29,12.82787500229999 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/08/06,2.7475750000000057 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/08/30,4.045431061739162 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/08/30,4.045431061739162 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/10,6.2040249951650095 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/01,3.84760156666666 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/09/23,7.521275000577493 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/10,6.2040249951650095 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/01,3.84760156666666 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/09/23,7.521275000577493 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/11/11,5.769704260586078 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/11/10,3.8519288846153854 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/25,2.955456700000001 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/11/11,5.769704260586078 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/11/10,3.8519288846153854 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/10/25,2.955456700000001 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2017/12/04,5.085153405197501 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/01/29,12.941375000137503 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/03/26,16.73867083665083 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/05/05,3.3772658899999994 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/05/29,11.606925002300002 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/06/30,4.947343568043337 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/07/08,4.180823244102554 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/06/22,3.296436203333329 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/08/10,2.663980125000001 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/08/09,3.877757578333323 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/08/25,3.806377729999994 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/09/27,6.778949992155012 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2018/12/07,22.348225000000006 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/02/09,15.782599999999988 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/04/23,5.622547730407498 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/05/08,4.5537500023 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/04/22,2.9391250000000007 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/06/10,11.67920000335998 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/06/09,3.613499974999995 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/07/03,16.172283365700835 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/08/04,7.971775001544999 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/07/28,6.48937499582501 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/07/27,4.027569230841721 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/09/05,3.672690186666659 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/09/21,7.204613639999999 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/09/29,12.570925000072496 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/11/01,11.600718353713342 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/10/23,12.030275015912496 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2019/12/03,10.453358342135822 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/05/02,4.054605308333328 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/04/25,6.040968195 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/05/27,8.139350763623337 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/05/26,3.179159099999997 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/06/28,20.31775208379336 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/08/06,4.17302869999999 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/07/30,3.113841918269229 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/08/31,3.217454550072499 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/08/22,20.603229166596662 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/08/30,3.165875000000004 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/10/09,4.910093189999992 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/11/10,10.78370064904762 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2020/10/25,8.874924999392498 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/01/29,22.47810000000001 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/04/03,15.879583363233326 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/08/09,10.776308343093314 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/08/02,3.26735757862333 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/08/25,14.725604166189168 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/09/26,6.905455303333337 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/11/06,8.274989598173336 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/10/28,5.950074999785005 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/11/29,9.576624594185846 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/11/24,2.178072599999997 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/11/21,2.2875106250000004 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2021/12/23,11.861037499667509 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/02/01,22.373925000000007 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/02/26,23.624491666666653 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/04/06,14.490204169849182 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/04/06,3.006691815 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/03/29,10.738699999905014 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/05/08,16.17996666682166 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/04/30,4.6402841 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/04/22,3.079775000000005 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/05/31,6.659058337763335 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/05/24,4.724775000410003 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/07/04,3.134999263406665 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/06/29,6.461297732415001 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/07/03,2.7517182000000004 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/06/25,2.92226592 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/08/07,22.274999999207505 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/09/10,2.9106363615949977 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/08/24,6.383423490432501 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/08/28,2.42823635 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/09/22,7.286449990617507 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/09/21,8.573218333573308 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/10/31,6.32824999042001 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/10/26,9.879250000479992 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/11/08,2.001529449999996 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/12/10,2.3782815500000014 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2022/11/24,3.0546545000000016 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/01/11,5.205256455218327 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/02/04,22.68484166666667 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/04/09,16.829437502532496 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/04/01,4.415397754807692 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/09,17.892208358633333 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/11,3.862197593333325 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/31,3.3158468183624965 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/26,3.2412681801449965 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/06/04,5.001817821502498 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/05/27,18.193050000167503 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/06/22,3.127677270289999 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/07/06,3.463421630769225 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/08/05,3.448302807444294 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/07/30,3.4342681900724976 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/07/22,5.202750000120005 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/09/06,7.805140156666666 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/09/01,5.969084091207495 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/08/31,5.180959099999991 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/08/23,2.2364477000000003 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/10/03,16.93603336792835 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/09/28,14.618525029884989 -Blake Falls Reservoir,15465673,-74.75675385230613,44.48011544433754,2023/10/02,3.06465339 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/04/04,9.415074999810011 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/04/28,5.246485609134164 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/05/06,4.145634099999993 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/05/22,3.419352423076922 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/06/23,3.645006825337501 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/08/02,4.302374999999986 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/08/10,4.679675892307682 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/09/03,14.171899999952482 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/09/11,3.7596854864102536 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/08/26,3.0001188607692275 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/10/05,17.98744583687834 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/09/27,2.195352837499999 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/11/06,8.054824999620003 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/11/22,5.102268942296666 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2015/11/30,3.645103787435895 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/02/26,14.049706253877495 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/03/05,3.005775000000005 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/03/29,5.649353799546662 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/04/30,6.192853060778332 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/05/08,2.617299500000002 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/06/09,5.257663640747494 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/07/03,7.907383337174172 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/07/11,10.881975000427488 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/06/25,4.22378455384615 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/08/04,3.658886360362496 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/07/27,3.3992814830769227 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/09/05,3.754019701666661 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/08/28,4.168881820482495 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/10/07,7.240953786739162 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/09/21,3.603921966666661 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/09/29,3.632399999999995 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/11/08,7.136253798405826 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/10/23,5.796362878333334 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/10/31,12.70938333333332 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2016/12/10,3.570550000694999 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/02/04,13.233266666571664 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/03/08,10.347824999985002 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/04/09,2.0244157 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/05/11,12.487508333533324 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/05/27,4.121425002524997 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/08/07,7.038275005650003 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/07/30,3.4099652307692248 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/09/08,7.724679175746668 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/08/23,19.46140416693165 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/08/31,3.4496750000000067 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/10/10,6.731670827100848 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/09/24,7.46689545000001 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/10/02,2.8277480057692297 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2017/11/11,16.46344697730001 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/04/28,3.243890815384615 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/05/30,5.468425000434996 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/07/09,6.768925000360002 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/08/10,4.976381821834998 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/09/03,2.956909090482499 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/10/05,2.413256111126372 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/12/08,2.828237375000001 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2018/11/22,5.008079169691665 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/02/10,13.30045833898833 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/05/09,9.79752645064358 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/04/23,9.765054182191674 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/05/25,10.688800000115007 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/06/26,3.367999999999995 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/07/28,3.2966030334266674 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/08/05,3.816387123405828 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/09/06,3.678211730769226 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/09/30,15.876008334303322 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/10/08,18.309050000169997 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/09/22,15.082500000599987 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/11/09,6.073429539999994 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/10/24,3.879202904666661 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/12/03,13.985110437126668 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/12/11,3.237281735576924 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2019/11/25,6.847631750000004 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/02/05,8.54538333301086 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/04/01,2.4205903500000003 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/04/25,6.868827284999998 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/05/03,4.090062319999992 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/05/27,11.249333338338328 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/06/04,3.936119230769224 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/07/06,2.5615546250000016 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/07/30,2.228072721305 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/08/31,2.861571061666664 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/09/08,5.282400001715003 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/08/23,3.7577045999999945 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/10/10,18.976141666524175 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2020/12/29,3.353055011538458 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/04/04,2.3895250000000017 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/04/28,14.455718420595831 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/05/06,3.76964774 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/06/07,3.5038580307692264 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/06/23,2.597754499999998 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/08/02,3.287478330769229 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/08/10,5.126905313405823 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/07/25,7.692100000144995 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/09/03,4.588609099999991 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/09/11,3.0183371607692275 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/08/26,7.633350000357501 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/11/06,19.08155004863252 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/11/09,3.1606775783333307 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/11/04,20.79193333350332 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2021/10/29,2.5812828125000005 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/03/22,12.780189597920824 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/05/09,3.4370250199999943 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/05/09,2.615932200000002 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/05/01,2.9258958500000016 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/05/25,5.284400000959998 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/06/29,19.629966667356676 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/07/04,11.53557500019999 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/06/26,5.555025002467496 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/07/28,4.014413091538461 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/10/09,7.282810606666665 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/10/08,2.5424157249999992 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/09/22,4.756375000627492 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/10/26,6.586574995580012 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/11/09,3.2859347849999976 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2022/12/27,8.025363500000003 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/04/07,23.630906251082525 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/04/10,2.736640850000001 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/05/26,3.486784090869996 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/06/05,6.491563461538459 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/05/28,3.960661400072493 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/06/22,7.671070450844997 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/07/07,7.576842424610848 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/06/21,3.918456874999992 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/08/05,12.85145833812583 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/07/31,3.9228295466424976 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/07/31,8.649475000362493 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/07/23,3.4086318305074967 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/01,7.59420682 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/08/22,2.508850004494998 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/09,7.221175000362496 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/01,2.9864487807692277 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/28,9.684402288545002 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/10/03,3.898752744999993 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/09/25,4.636153662999991 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/10/27,16.186049999954985 -Great Sacandaga Lake,22294606,-73.96314887368061,43.29572671785103,2023/11/28,3.646525000000006 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/04/04,11.70315000009501 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/04/04,11.70315000009501 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/05/06,5.330125000000005 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/05/06,5.330125000000005 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/05/22,5.301956829294992 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/05/22,5.301956829294992 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/02,9.359175005394984 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/10,2.840925000000005 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/02,9.359175005394984 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/10,2.840925000000005 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/09/11,3.669981624999998 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/26,3.341025 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/09/11,3.669981624999998 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/08/26,3.341025 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/09/27,4.230506280769225 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2015/09/27,4.230506280769225 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/02/02,11.99222075745166 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/02/02,11.99222075745166 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/03/29,5.688085626666666 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/03/29,5.688085626666666 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/04/30,6.297204551666661 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/05/08,2.259011525000002 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/04/22,4.892708333380827 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/04/30,6.297204551666661 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/05/08,2.259011525000002 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/04/22,4.892708333380827 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/05/24,14.12544166676166 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/05/24,14.12544166676166 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/03,5.164650000312503 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/11,11.739291666856662 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/06/25,5.544290909999996 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/03,5.164650000312503 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/11,11.739291666856662 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/06/25,5.544290909999996 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/08/04,7.555542423693336 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/27,3.748754500000002 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/08/04,7.555542423693336 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/07/27,3.748754500000002 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/05,3.735700004999996 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/08/28,3.3743750025124983 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/05,3.735700004999996 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/08/28,3.3743750025124983 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/07,4.909962891666659 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/21,3.104719706666663 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/29,3.2182834807692267 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/07,4.909962891666659 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/21,3.104719706666663 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/09/29,3.2182834807692267 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/11/08,5.356512919380947 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/23,7.489112128333331 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/31,6.044760000265001 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/11/08,5.356512919380947 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/23,7.489112128333331 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/10/31,6.044760000265001 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/12/10,22.29512499935501 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2016/12/10,22.29512499935501 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/03/08,14.235362501150007 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/03/08,14.235362501150007 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/05/11,6.900788260941645 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/05/11,6.900788260941645 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/06/28,13.664141686289192 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/06/28,13.664141686289192 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/07/30,3.4886971307692263 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/07/30,3.4886971307692263 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/09/08,6.607549999887514 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/08/23,11.877293779574984 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/08/31,2.7082906400000013 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/09/08,6.607549999887514 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/08/23,11.877293779574984 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/08/31,2.7082906400000013 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/09/24,5.9618363718841705 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/10/02,3.8286344057692254 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/09/24,5.9618363718841705 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/10/02,3.8286344057692254 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/11/11,7.67019545999999 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2017/11/11,7.67019545999999 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/01/06,21.77565833333335 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/04/28,18.06614999995501 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/05/30,12.771508348330835 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/07/09,8.529271973405832 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/07/01,3.6016250002649923 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/08/10,4.562604550072498 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/08/02,4.930984100337492 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/09/27,10.36441666939168 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2018/10/05,4.396699999999998 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/01/01,8.991233333143324 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/03/06,22.34590833333334 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/02/26,21.77565833333335 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/04/23,5.958286365072497 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/06/10,16.93727499871 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/06/26,11.736208335633318 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/07/28,14.407441666786651 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/08/05,3.5561999999999943 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/08/29,3.5734545486958287 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/09/06,2.5208128000000003 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/09/30,12.245108333273349 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/10/08,6.4014204899999925 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/09/22,13.430574999999989 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/11/09,6.178025000094992 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2019/10/24,3.4042727499999983 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/02/05,20.90140833314336 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/02/29,21.867666666666683 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/04/01,15.332925000000005 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/04/25,7.655683336739165 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/05/03,6.956875 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/05/27,6.318950000645011 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/06/04,13.683349999769987 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/07/06,2.8239498000000016 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/07/30,15.441024999617484 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/08/07,2.684615600000002 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/08/31,4.008075000072492 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/09/08,3.9548500010149934 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/08/23,7.181050000382507 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/10/10,13.384608335343328 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/09/24,12.498574999999992 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2020/12/29,21.88613333333335 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/05/06,2.3633239500000034 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/06/07,5.375815711538459 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/06/23,2.9709078700000005 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/08/02,3.3191840906524974 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/07/25,3.808875000072492 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/09/03,3.86178750293 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/09/11,2.3375565000000007 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/08/26,7.576825000552507 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/11/06,4.662786365142497 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/11/09,4.428575000337492 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/11/04,4.307925000072497 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2021/10/29,2.0230043499999963 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/02/02,22.191458333333347 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/02/26,10.639041666451671 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/03/30,7.526049999985004 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/05/09,6.855090935144992 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/05/09,4.264178033333328 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/05/01,2.9310862500000017 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/04/23,10.152125000279996 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/05/26,11.8593999978475 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/06/02,13.32597500016999 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/06/29,3.3744068199999937 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/06/26,9.88092159479666 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/08/02,8.0625448370688 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/08/29,2.8652750000000067 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/10/09,6.077047732300001 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/10/08,2.681488375 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/09/22,2.9144315299999977 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/10/26,3.868742744615384 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2022/11/09,2.658735575 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/02/21,10.92659999985751 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/04/10,11.723883333285825 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/05/26,6.664856068670831 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/05/28,22.581666668776688 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/06/22,7.318618180167504 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/07/07,7.216016667484162 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/08/05,5.550952271207498 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/07/31,5.806383334828333 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/09/01,7.571518180407501 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/09/09,5.604725000434995 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/09/01,4.434231824999995 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/10/03,6.351115910095006 -Garnet Lake,22305385,-74.02304310532672,43.52510941833814,2023/09/25,2.569770464999997 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/04/28,19.15837500117002 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/04/28,19.15837500117002 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/05/30,4.620208333858341 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/06/07,5.926635608573338 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/05/22,5.897768101640836 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/05/30,4.620208333858341 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/06/07,5.926635608573338 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/05/22,5.897768101640836 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/07/01,4.597972162580008 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/07/01,4.597972162580008 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/08/02,10.922550036707497 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/07/25,13.77210833347584 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/08/02,10.922550036707497 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/07/25,13.77210833347584 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/09/03,9.954391691549164 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/09/11,4.855225003099996 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/08/26,17.016341673304165 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/09/03,9.954391691549164 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/09/11,4.855225003099996 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/08/26,17.016341673304165 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/10/05,23.803441673566684 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/10/05,23.803441673566684 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/10/29,2.3740045000000007 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2015/10/29,2.3740045000000007 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/10,7.5002766769391584 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/01/25,8.502206250420024 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/02,3.950119309615384 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/10,7.5002766769391584 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/01/25,8.502206250420024 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/02,3.950119309615384 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/26,12.617213660219994 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/02/26,12.617213660219994 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/03/29,7.981131463393336 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/06,4.783067450812497 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/03/29,7.981131463393336 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/06,4.783067450812497 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/30,6.47809999338501 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/05/08,7.451210384748341 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/22,4.51975909814916 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/30,6.47809999338501 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/05/08,7.451210384748341 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/04/22,4.51975909814916 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/06/09,14.406866666999155 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/06/09,14.406866666999155 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/03,8.954312497075001 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/11,7.644506825963318 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/06/25,14.0754250023475 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/03,8.954312497075001 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/11,7.644506825963318 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/06/25,14.0754250023475 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/08/04,24.747741668966704 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/27,8.514119862435898 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/08/04,24.747741668966704 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/07/27,8.514119862435898 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/08/28,16.28056667126667 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/08/28,16.28056667126667 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/07,15.920777277933349 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/07,15.920777277933349 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/11/08,8.743567416666654 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/23,13.364420842533344 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/31,2.811010999999999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/11/08,8.743567416666654 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/23,13.364420842533344 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/10/31,2.811010999999999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/12/02,2.687245249999998 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/12/02,2.687245249999998 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/01/11,17.12659318563334 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/12/26,24.44116666666665 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/01/11,17.12659318563334 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2016/12/26,24.44116666666665 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/04,2.644961005769232 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/04,2.644961005769232 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/28,15.341385416904153 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/03/08,16.80217500248998 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/20,5.570342526282044 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/28,15.341385416904153 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/03/08,16.80217500248998 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/02/20,5.570342526282044 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/04/09,2.348097576538462 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/04/09,2.348097576538462 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/06/28,5.833559099999995 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/06/28,5.833559099999995 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/07/22,8.011900005849999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/07/30,7.090916668281659 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/07/22,8.011900005849999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/07/30,7.090916668281659 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/09/08,7.732316657886669 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/08/31,2.8737750000000046 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/09/08,7.732316657886669 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/08/31,2.8737750000000046 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/09/24,7.270159090000002 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/10/02,2.564533999999997 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/09/24,7.270159090000002 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/10/02,2.564533999999997 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/11/11,12.326190156666655 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/11/03,14.882708333118314 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/11/11,12.326190156666655 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/11/03,14.882708333118314 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2017/12/29,8.283799997912514 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/03/11,5.624826257051276 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/04/28,4.614302699999996 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/05/30,7.539516666811673 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/07/09,13.227675003845006 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/08/10,11.564979187374163 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/08/02,9.046208333525833 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/09/03,4.032375000000003 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/09/27,6.212312494060006 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/10/05,5.723035061999996 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/12/08,5.315264571999995 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/11/22,2.563972575000002 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/01/01,3.4724942307692315 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2018/12/24,6.670705807692304 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/02/10,9.04841666793916 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/01/25,3.403500000000003 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/02/26,12.866008333095838 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/04/07,4.24939166646167 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/03/30,16.73528333390333 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/04/23,13.468829177254152 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/05/25,6.0412249938150095 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/06/26,13.61294169388666 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/07/04,4.268954623601659 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/07/28,8.849763638317505 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/08/29,10.573825007187493 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/09/30,8.278175000000017 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/09/22,14.279693189999984 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/01,21.27305834713336 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/09,17.20905000038999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/10/24,3.853379189999997 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/12/03,10.280754169931662 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/26,6.424152285332505 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/26,6.257936370262502 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2019/11/25,12.770508333318324 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/01/29,9.719252025758603 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/01/29,8.287309600220276 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/03/01,5.109906823894172 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/03/01,4.49358560795084 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/02/21,14.196786367300009 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/04/02,8.999841083156078 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/04/02,10.088127079900834 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/04/01,3.7253689466666606 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/05/04,13.657591771596676 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/05/04,15.334500119545012 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/05/03,4.59430530420417 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/05/27,5.207922572749168 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/06/04,6.369583333333347 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/06/28,11.97916583268832 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/06/21,8.169422726786673 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/06/21,10.042910603453342 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/07/06,11.634840909999998 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/08/08,8.492025013114999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/08/08,7.816392364988609 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/08/07,8.176725000434994 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/09/08,12.404133333333332 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/09/25,9.873183334188347 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/09/25,9.91881250204251 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/10/10,8.461515910000006 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/10/27,9.18558031476666 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/11/28,3.119743180095002 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/11/28,7.046120460167504 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2020/12/29,3.327668703846152 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/01/30,3.513437230769231 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/03/11,9.759474999427518 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/04/05,11.51510835693083 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/04/05,10.988500027977508 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/04/04,10.173708340233324 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/07,14.3056750116425 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/07,11.431045835848334 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/04/28,7.80256665944167 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/06,4.3914208458908295 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/23,6.071362490257509 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/05/23,6.18769999828251 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/06/07,6.403227279999995 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/06/24,10.719587120000003 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/06/24,10.715887120000003 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/06/23,6.883767444834164 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/11,16.69731916690915 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/11,10.646524999145 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/02,9.9721875049075 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/07/26,7.242145825428346 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/09/03,14.38370838393335 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/27,3.936950000499999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/27,4.207750000429997 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/09/11,11.515747729999998 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/08/26,9.72939166671417 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/09/27,7.875763640000005 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/06,8.650372619047614 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/09,5.139211399999997 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/09,4.369830549999996 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/04,3.460184853333333 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/11/04,3.3445348533333323 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2021/10/29,13.451025000599993 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/10,14.904850000905007 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/10,4.057261447115383 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/26,10.157741666451678 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/19,3.043937499915007 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/02/19,3.324099999915009 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/03/22,12.989999999999998 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/05/09,18.86060419872419 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/05/09,4.175586006570832 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/05/01,4.407790155047497 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/04/23,5.023893947061666 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/05/25,7.759200000237482 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/11,6.382615910240003 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/11,6.318265910240004 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/06/29,10.424673106714174 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/06/24,3.775387115905833 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/06/24,3.765112115905832 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/04,5.466779175189996 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/06/26,5.052484471798332 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/08/02,11.13250208352333 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/28,16.025200015572512 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/07/28,15.691650023095011 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/08/05,11.187836363190836 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/08/31,9.468786360095004 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/08/31,9.905852270000004 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/10/09,19.11401666896668 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2022/11/09,4.614478765 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/02/10,21.78981834497582 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/01/28,4.603731839999997 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/02/27,6.20357499495001 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/02/27,6.193049994950007 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/03/09,4.954490939999999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/04/10,6.912211339999995 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/04/02,6.773179545047486 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/05/26,15.684285416714168 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/06/05,5.316442059275832 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/05/28,17.09602500009497 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/07,7.598375000217499 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/06/29,9.920760608213351 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/08/05,15.263648194539437 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/31,18.787447499999995 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/31,17.01368749999999 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/31,12.276008333333325 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/07/23,15.045200000147505 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/08/27,10.67902416681416 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/08/22,8.492021249262512 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/08/22,5.674237498407504 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/09/01,12.343984089999989 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/10/03,13.395334099999982 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/11/11,3.809649889240116 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/12/06,4.004980472307684 -Greenwood Lake,6244708,-74.321966072446,41.18539756462784,2023/11/28,2.8675243846153853 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/05/05,7.871704166769172 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/06/06,5.894600005030001 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/07/08,9.501049990204994 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/06/22,2.3805500022599984 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/08/09,3.783377126333326 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/07/31,15.641575043700014 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/07/24,2.7683613605074986 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/08/01,4.05188273230769 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/09/01,12.5449250099825 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/08/25,4.455647586538459 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/09/26,3.376323483623329 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/10/04,6.537879173016665 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/11/04,6.689707573478329 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/12/06,6.036468749402507 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2015/11/29,7.113159725714279 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/01/24,21.44325833333336 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/04/05,4.833840917419998 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/03/27,3.649328793380833 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/05/07,6.648666071751073 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/04/28,10.56296250707 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/04/21,7.003912888865005 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/04/29,3.633974999999999 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/05/23,8.643895835610827 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/05/31,4.016849999999996 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/06/24,7.478850006085002 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/07/02,6.4216750010449895 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/08/11,5.59087832084173 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/08/02,3.8464121186958296 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/07/26,12.651974168671682 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/08/03,4.314024999999996 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/08/27,2.9554787867391674 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/09/04,8.726234090575005 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/09/28,3.2328059079999973 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/10/06,4.232348899999998 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/11/07,2.921004247664837 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/12/09,16.726133333278327 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/01/02,8.565456531445278 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2016/12/25,6.9947454099999895 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/02/10,24.238439583980856 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/02/26,11.438308329445828 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/02/19,12.998558333590838 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/03/30,9.231424999962504 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/05/10,4.489904656438569 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/04/24,9.22095000640001 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/06/11,4.246452281221671 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/06/03,4.605450000144997 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/06/27,6.174499994320009 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/07/05,4.129871888461537 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/07/29,3.7338841008699983 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/08/06,12.465300000072498 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/08/30,3.2430772705799966 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/10/01,2.7566977300725 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/09/23,3.939327953846152 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/11/10,2.8427018749999995 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/10/25,7.216813350000007 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2017/12/04,6.612749995825011 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/01/29,10.478074999907514 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/05/05,6.579031824599995 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/05/29,5.740925000812504 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/06/30,5.810924975415007 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/07/08,5.420016669441676 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/06/22,14.580416667166665 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/08/09,3.4805685641025583 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/08/25,2.985603063333331 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/12/07,14.64884166666667 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2018/12/23,10.48994166934916 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/02/09,12.824258333095838 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/02/01,22.68663333333334 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/05/08,4.399590166666671 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/06/01,12.393100000312508 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/06/09,3.0010978707692284 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/07/03,2.2035500014024985 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/06/25,2.836525000000006 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/08/04,4.440333335283332 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/07/27,4.116345499999994 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/09/05,2.416827279999999 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/09/21,3.0423483350291662 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2019/11/08,13.858459586958322 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/02/28,22.337341666666678 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/05/02,7.542225388702504 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/05/10,3.73507309307692 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/06/11,3.3933522500000066 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/05/26,8.067150003642498 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/07/05,15.724937499904993 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/08/06,2.58419091 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/09/07,21.70599999815001 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/08/30,3.1250045000475013 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/10/09,2.7816916686233326 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/09/23,13.320072500760013 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2020/11/10,3.7875955888116666 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/04/03,13.73484170806668 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/04/27,19.679016666254174 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/05/29,14.717358333318316 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/07/24,6.997224996370006 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/09/10,7.311584470698335 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/08/25,8.494025000189987 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/09/26,3.6134659101449977 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/11/05,13.211274999769987 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/11/29,6.409225000200005 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/12/07,11.99250000077 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/11/24,4.313346213670829 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/11/21,3.0987436249999973 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/01/08,4.271647754807693 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2021/12/23,3.069469230769232 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/04/06,7.714468751434998 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/04/06,5.34961137999999 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/03/29,6.643236132692295 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/05/08,3.1676188299999977 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/04/30,6.241633336811656 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/06/05,13.156316687414169 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/05/31,15.538987499857514 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/05/24,6.092709100652502 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/07/09,3.7849513582174943 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/07/04,3.925611359999993 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/06/22,8.322681666351674 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/07/11,11.381675000237482 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/07/03,4.567922994230764 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/06/25,4.559575000144991 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/08/07,3.5394083428991654 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/09/10,3.092140147029164 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/08/24,10.219399998684995 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/08/28,4.2318367073717935 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/09/29,4.699125356923072 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/09/21,5.180918184999991 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/11/05,8.814887508522498 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/10/31,4.239256664016668 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/11/08,3.037892228434067 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/11/22,9.136948195786932 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/12/10,2.696039124999999 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2022/11/24,3.7407000000000026 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/01/11,2.2988734750000046 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/04/09,4.0152473499999966 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/04/01,13.117541666429172 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/05/09,8.251102084213336 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/05/11,2.7382522500000066 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/04/25,8.830737415889224 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/06/05,8.346774998420008 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/05/31,3.5117068150724937 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/06/04,7.658275007832499 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/05/27,17.89530833347584 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/06/27,6.804531240635003 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/06/22,3.8528113606524936 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/07/06,5.301252270072495 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/08/10,16.714885607713324 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/07/24,19.01211666602165 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/07/30,4.053184099999993 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/07/22,3.71099999999999 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/09/06,3.327360597029164 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/09/01,3.0810681819574963 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/08/31,4.213960174038459 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/08/23,4.58122925 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/10/03,6.508095833760832 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/10/02,3.391098380769229 -Sylvia Lake,15490628,-75.41349371278999,44.25326723846501,2023/11/03,4.466033333463325 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/05/05,3.8944220904144 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/04/27,2.9215250000000066 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/05/29,6.180525000887502 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/06/22,2.92353259427583 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/07/24,11.710641669014178 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/08/25,5.315949999905 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/09/02,3.329075000095005 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/10/04,13.676000000185 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/11/29,4.096816207653393 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2015/11/21,4.391676516739162 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/04/05,7.418420841995832 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/04/21,6.212641665609161 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/05/23,9.581149999364998 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/05/31,2.581002250047502 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/06/24,2.7097780445658315 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/07/02,3.3377795 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/08/11,4.1442977403624965 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/07/26,5.202813834734172 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/08/03,2.738975000000005 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/08/27,5.608250003617501 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/09/04,5.177425000119993 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/09/28,2.800347571333332 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/10/06,3.0544219365384584 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2016/11/07,2.927298872435896 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/02/03,22.34590833333334 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/04/08,10.093492501122522 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/03/23,13.94009166661916 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/04/24,7.334615920469995 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/06/11,5.327622735458334 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/06/03,4.7781000033949965 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/06/27,19.26931666590168 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/07/05,6.3591060634783325 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/07/29,4.625891671421671 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/08/30,2.72598030174 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/09/07,3.5581864999999957 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/10/01,3.368935621811662 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/09/23,4.540363634999993 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/10/25,5.709309991999994 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/12/04,7.755987499810013 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2017/12/28,21.750616666666684 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/04/11,8.669349999477525 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/03/26,22.30449999935501 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/05/05,12.66482501495002 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/05/29,2.982070451449997 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/06/30,17.781124999999985 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/07/08,3.5393330307692263 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2018/09/02,2.005835611426664 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/01/08,10.255466666144187 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/02/01,21.838800000000013 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/05/08,3.347306819999996 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/06/01,7.7870041645916785 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/06/09,9.49537500266 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/07/03,4.503850002409997 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/08/04,8.699656250875012 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/07/27,9.242884090335 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/09/05,14.137058347323348 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/09/21,3.201667416884161 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/09/29,4.008859090435003 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2019/10/23,11.543559416196892 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/05/02,7.9995999998099965 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/05/26,5.217842423380831 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/07/05,15.594174999999998 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/08/06,2.0865431810625 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/08/22,2.479281250712498 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/10/09,5.137103256881671 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/11/10,6.069224995144992 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2020/10/25,11.038412320856072 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/01/29,23.455858333333325 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/02/06,11.791533333518334 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/03/02,22.404625000000006 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/04/03,14.085783432098337 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/06/06,7.351150001472503 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/07/08,16.34894166680916 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/06/30,4.268800000047494 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/07/24,17.59764166688164 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/09/10,4.062405305072493 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/09/02,17.689599999784974 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/09/26,3.2692886303624955 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/10/28,11.884680967567766 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/11/05,6.016803141999993 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2021/11/24,5.108429182692301 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/02/01,21.970933333333345 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/01/24,21.791766666666685 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/03/29,8.931426923076916 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/05/08,3.633358336666663 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/04/30,5.3266083356333285 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/04/22,7.186438500000003 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/06/05,3.498249257609164 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/05/31,5.064758335988332 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/05/24,3.810572739999992 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/07/04,3.484797731667494 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/07/11,3.621780318550829 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/07/03,7.297181839395827 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/06/25,2.840400099999999 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/08/07,15.880566667251657 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/09/10,20.782379166761658 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/08/24,13.153800000250005 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/08/28,7.921741650072494 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/09/29,5.328088313076913 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/09/21,5.75342273 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/10/31,11.546500000395 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/11/08,3.177837347435895 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/11/22,10.378964895454995 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/12/10,5.017797267435896 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/11/24,4.546859855747496 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/01/11,14.274800000000011 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2022/12/26,22.219083333285848 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/02/04,22.304175000000008 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/04/09,3.972464582072498 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/04/01,13.093256266919994 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/05/09,6.677174998982504 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/05/11,6.932775002562494 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/06/05,18.341666668106654 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/05/31,14.309233333930829 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/06/04,7.099985632060832 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/05/27,6.432375000672509 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/07/06,3.148949999999993 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/07/30,15.898066680566687 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/07/22,2.529825000047499 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/09/06,3.6747295405074967 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/09/01,4.898240008457496 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/08/31,11.85521818507249 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/08/23,17.426218338028317 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/10/08,7.252024995395011 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/10/03,11.9096625004275 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/09/28,8.30675746576179 -Tuscarora Lake,22026312,-75.75684256446702,42.86726805028584,2023/11/03,4.871287321999999 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/04/28,8.104415184183333 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/04/28,6.786120250184165 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/06,9.692933335825815 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/06,6.271450002827498 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/04/28,8.104415184183333 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/04/28,6.786120250184165 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/06,9.692933335825815 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/06,6.271450002827498 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/30,9.869475001330006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/30,8.474139583760842 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/30,9.869475001330006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/05/30,8.474139583760842 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/06/23,7.369375000217495 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/06/23,9.851175000289992 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/06/23,7.369375000217495 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/06/23,9.851175000289992 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/02,13.71617503105 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/02,13.3051250311225 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/02,13.71617503105 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/02,13.3051250311225 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/03,9.82088958439083 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/03,9.262266859390833 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/11,4.262575000000009 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/11,3.105100000000005 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/26,3.12681125 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/26,4.802438500000002 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/03,9.82088958439083 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/03,9.262266859390833 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/11,4.262575000000009 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/11,3.105100000000005 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/26,3.12681125 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/08/26,4.802438500000002 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/05,15.304695929848336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/05,14.707620916180831 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/27,2.52450196826923 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/27,3.367526509615386 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/05,15.304695929848336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/05,14.707620916180831 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/27,2.52450196826923 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/09/27,3.367526509615386 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/29,19.14709166701165 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/29,3.906052250192504 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/29,19.14709166701165 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/10/29,3.906052250192504 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/11/22,9.123986388142493 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/11/22,2.952622800145002 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/11/22,9.123986388142493 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2015/11/22,2.952622800145002 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/10,10.422558333118342 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/01/25,22.09894999935501 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/02,20.672387500384996 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/02,5.381900000457497 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/10,10.422558333118342 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/01/25,22.09894999935501 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/02,20.672387500384996 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/02,5.381900000457497 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/26,14.613354170924165 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/26,14.535891669494164 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/05,11.608450000385004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/05,11.608450000385004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/26,14.613354170924165 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/02/26,14.535891669494164 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/05,11.608450000385004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/05,11.608450000385004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/29,5.97591061355083 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/29,5.797160613550826 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/29,5.97591061355083 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/03/29,5.797160613550826 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/30,8.937683333333336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/30,6.782058333333338 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/08,3.9811042307692257 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/22,13.648733333405827 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/22,13.74233333378582 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/30,8.937683333333336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/30,6.782058333333338 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/08,3.9811042307692257 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/22,13.648733333405827 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/04/22,13.74233333378582 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/09,4.133700000144995 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/24,12.09355833333332 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/24,11.895924999999988 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/09,4.133700000144995 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/24,12.09355833333332 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/05/24,11.895924999999988 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/03,4.526962504372502 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/03,4.782833337340837 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/11,14.768400000572496 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/11,5.745950001294993 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/25,3.366794461538458 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/25,4.842024226923072 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/03,4.526962504372502 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/03,4.782833337340837 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/11,14.768400000572496 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/11,5.745950001294993 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/25,3.366794461538458 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/06/25,4.842024226923072 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/04,3.841046215144993 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/04,3.926596215144994 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/27,3.4553045000000027 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/27,4.246991792307691 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/04,3.841046215144993 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/04,3.926596215144994 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/27,3.4553045000000027 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/07/27,4.246991792307691 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/05,3.675975000072493 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/05,3.5384500000724937 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/28,5.5846090899999945 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/28,4.047367711538453 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/05,3.675975000072493 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/05,3.5384500000724937 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/28,5.5846090899999945 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/08/28,4.047367711538453 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/07,5.67749323104761 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/07,4.069262271999996 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/21,3.599771966666659 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/21,3.5792469666666595 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/29,12.748770833380838 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/29,14.078445833380837 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/07,5.67749323104761 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/07,4.069262271999996 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/21,3.599771966666659 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/21,3.5792469666666595 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/29,12.748770833380838 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/09/29,14.078445833380837 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/11/08,4.905458362714278 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/11/08,5.593106102714278 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/23,6.902429555072497 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/23,7.823996971739161 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/31,2.884525000000005 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/11/08,4.905458362714278 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/11/08,5.593106102714278 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/23,6.902429555072497 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/23,7.823996971739161 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/10/31,2.884525000000005 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/12/10,12.876775001880002 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/12/10,8.118312496645004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/12/10,12.876775001880002 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2016/12/10,8.118312496645004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/01/27,11.213358333118336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/04,10.554433333118345 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/04,10.559199999785008 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/01/27,11.213358333118336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/04,10.554433333118345 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/04,10.559199999785008 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/03/08,12.281791672859177 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/03/08,11.646400757241665 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/20,15.035024999905009 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/03/08,12.281791672859177 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/03/08,11.646400757241665 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/02/20,15.035024999905009 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/04/09,14.912658335968333 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/04/09,10.613431259317494 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/04/09,14.912658335968333 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/04/09,10.613431259317494 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/03,8.062484999379997 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/03,21.129273333713336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/11,4.016231819999998 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/11,3.1693203333333293 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/03,8.062484999379997 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/03,21.129273333713336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/11,4.016231819999998 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/05/11,3.1693203333333293 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/07,4.2021973472441685 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/07,4.686647347751667 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/07/30,3.2819341899999994 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/07/30,2.392505025000001 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/07,4.2021973472441685 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/07,4.686647347751667 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/07/30,3.2819341899999994 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/07/30,2.392505025000001 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/23,3.478853787464162 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/23,3.857428787174161 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/31,2.8215294999999987 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/31,2.8306294999999984 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/23,3.478853787464162 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/23,3.857428787174161 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/31,2.8215294999999987 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/08/31,2.8306294999999984 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/10,8.875296059666656 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/10,8.603564388333321 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/09/24,2.7446090802174985 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/09/24,3.090751507246663 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/02,2.8109910418956034 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/02,2.8463029182692297 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/10,8.875296059666656 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/10,8.603564388333321 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/09/24,2.7446090802174985 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/09/24,3.090751507246663 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/02,2.8109910418956034 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/10/02,2.8463029182692297 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/11,3.984199266666664 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/11,4.56990987333333 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/11,3.984199266666664 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/11,4.56990987333333 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2017/11/27,7.246141666489176 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/04/28,5.368511349999994 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/04/28,4.560053230769224 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/05/30,16.090574999540003 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/05/30,16.079958332968335 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/07/09,8.71540001181249 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/07/09,9.023900011787497 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/07/01,7.020600000072498 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/07/01,4.608278330769223 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/08/10,4.379703806666657 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/08/10,4.047353806666656 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/09/03,12.583250000142492 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/09/03,12.655200000142491 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/09/27,20.235583333903328 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/09/27,11.701474997465 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/10/05,2.503625830769229 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/10/05,2.432699343269231 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/12/08,8.754513750535006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/12/08,9.745197083448332 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/11/22,4.502244042307692 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2018/11/22,3.4805825719230734 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/01/01,6.037874996900008 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/01/01,8.045320828078339 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/03/06,11.153049999325006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/03/06,11.153049999325006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/02/26,20.98750833333336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/04/23,4.825486365214998 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/04/23,4.782761365214999 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/06/26,12.32664167605667 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/06/26,11.971533342770831 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/07/28,6.967741682981671 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/07/28,7.597466683339167 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/08/05,3.8759988307692255 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/08/05,2.917908910448718 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/08/29,3.597735614999995 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/08/29,4.009241671739159 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/09/06,3.2071647307692257 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/09/06,3.3798564941025586 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/10/08,3.106278576538461 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/10/08,3.94607267884615 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/01,6.759641657886676 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/01,7.076599985985005 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/09,2.4462000000000006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/10/24,4.590716544666661 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/10/24,7.845572729999998 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/12/03,9.784557251286104 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/12/03,9.627924866856109 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/12/11,3.689883701923071 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/12/11,2.958594961538462 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/25,5.033875000144998 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2019/11/25,16.839650000189984 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/04/01,23.096225006567508 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/04/01,22.580099245683343 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/04/25,6.484187124999997 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/04/25,6.487287124999997 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/05/03,2.625125000000001 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/05/03,2.386752250000004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/05/27,5.534400000552505 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/05/27,5.379200000457505 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/06/04,7.40040000029 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/06/04,5.297925000072485 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/07/06,3.415179649999999 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/07/06,3.2572461999999978 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/07/30,2.9686241851648374 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/07/30,3.0843639159340683 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/07,5.460361368351661 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/07,7.033075759770826 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/31,5.3032931855525 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/31,5.176777275404998 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/09/08,8.462875000455005 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/09/08,7.254775000407498 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/23,5.020709089999992 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/08/23,3.603256096153845 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/10/10,16.252099999999995 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/10/10,17.341175002037517 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/09/24,4.617000000772505 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/09/24,3.9106750015224985 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/11/03,7.199175000200006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/11/03,5.685049999495006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/12/29,2.310352575000004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2020/12/29,2.693079320000002 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/01/22,22.64890000000001 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/03/11,11.461183333143325 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/03/11,11.392158333143325 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/02/23,23.64040833333333 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/02/23,24.02516666666665 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/03/27,9.41303333304833 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/03/27,9.57428333304833 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/04/04,8.7958772703375 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/04/04,11.251500000337511 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/05/06,3.852924913333324 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/05/06,4.516776521666659 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/06/07,3.0065635 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/06/07,3.975847204615381 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/06/23,4.674325000047497 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/06/23,2.634279500047501 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/02,2.80810249858 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/02,3.400669165069166 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/10,3.2859795000000003 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/10,3.0705045000000006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/07/25,14.248550002515016 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/07/25,4.008174999999992 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/09/03,4.892128035198328 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/09/03,5.027489774795828 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/09/11,4.016443199999997 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/09/11,2.909602250000004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/26,8.49788333398084 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/08/26,4.6952076134058265 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/06,6.902440802428453 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/06,7.016730198014288 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/09,4.48101125 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/09,2.5477385000000004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/04,4.122710013461535 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/10/29,2.474891380769229 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/10/29,2.797100641895603 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/22,25.46649375005001 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/11/22,9.970318750402503 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2021/12/24,9.984483333333362 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/02/02,21.967658333333347 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/02/02,21.967658333333347 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/01/25,23.457008333333327 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/02/26,22.539900000000006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/03/30,6.632300001355005 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/03/22,16.278450000405 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/03/22,12.575320833933343 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/09,3.4175089463333266 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/09,2.6828550250000025 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/09,2.6063665750000022 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/01,3.1853100049999994 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/01,4.734108209999991 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/04/23,12.204708333405817 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/26,15.681424999999996 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/26,17.191075 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/25,7.3108318301841635 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/05/25,7.413611757364162 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/11,3.529369694105828 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/06/29,2.789089997999998 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/06/29,2.712614997999998 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/04,2.980879500000001 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/04,5.317249544295057 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/06/26,19.15209166640418 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/06/26,19.181291666404174 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/08/02,11.440273333343336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/28,2.524790158986666 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/28,2.9897045000000024 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/07/28,2.4794295 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/08/31,2.8704177698717945 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/08/29,3.5228295000474983 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/08/29,3.2407545000475 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/08,2.713271974999999 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/08,2.4675704803571428 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/09/30,13.543149999999985 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/09/30,14.372474999999984 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/09/22,7.368702250047502 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/09/22,4.660700000047497 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/26,14.896558333333315 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/26,10.037704996584994 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/11/09,2.5064004124999983 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/11/09,2.550077625000001 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/10/24,22.070200000752514 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/12/27,3.4933750000000083 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2022/12/27,2.8896750000000027 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/02/21,9.722050001185004 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/04/07,9.11592499947753 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/04/10,12.398083333285827 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/04/26,6.81320682 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/04/26,4.468999999999991 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/05/26,8.173377270360001 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/05/26,8.742930303525831 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/05/28,3.170450001232494 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/05/28,16.020233338150838 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/04,10.71404875334501 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/07,4.171875001087495 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/07,4.865285608889164 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/08/05,6.659074987365006 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/08/05,6.354224993415008 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/31,4.402002271569999 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/23,4.058873463333336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/07/23,3.209525713333335 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/01,3.5005454604349944 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/08/27,5.574633333318336 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/08/22,3.102001919871794 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/01,5.888959090119991 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/01,3.8122682999999937 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/28,8.443341664986669 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/10/03,4.306336364999994 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/10/03,4.496117585769226 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/25,7.8843590900000065 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/09/25,3.6461181799999935 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/11/28,3.5080705384615385 -Eagle Lake,22303741,-73.57925642079555,43.88246099419065,2023/11/28,3.078696517857143 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/04/28,14.789916761689168 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/06,4.205589254666664 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/04/28,14.789916761689168 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/06,4.205589254666664 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/06/06,6.680044999522505 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/30,5.51233145381167 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/29,4.303815909999999 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/22,2.778533725000002 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/06/06,6.680044999522505 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/30,5.51233145381167 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/29,4.303815909999999 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/05/22,2.778533725000002 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/07/08,13.894633333285828 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/06/22,9.955608340665814 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/07/08,13.894633333285828 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/06/22,9.955608340665814 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/09,4.231608337294168 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/02,21.652350000155 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/07/24,17.425283333118326 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/09,4.231608337294168 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/02,21.652350000155 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/07/24,17.425283333118326 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/25,2.792753791666663 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/11,3.0535490000000003 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/02,4.272886216346154 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/08/25,2.792753791666663 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/11,3.0535490000000003 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/02,4.272886216346154 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/05,10.915322501235018 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/26,4.191245838418334 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/04,3.764260716270712 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/27,2.9674644182692287 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/05,10.915322501235018 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/26,4.191245838418334 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/04,3.764260716270712 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/09/27,2.9674644182692287 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/05,2.091218705357141 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/29,2.8638750000000037 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/05,2.091218705357141 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/10/29,2.8638750000000037 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/29,4.5408242977142805 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/22,4.576319083567738 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/12/07,3.683797709615379 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/30,3.924734992427689 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/29,4.5408242977142805 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/22,4.576319083567738 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/12/07,3.683797709615379 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2015/11/30,3.924734992427689 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/01/08,10.060033333718344 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/01/08,10.060033333718344 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/02/02,5.819322842307685 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/02/02,5.819322842307685 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/05,7.696239583930834 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/03/29,5.1035727849794 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/05,7.696239583930834 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/03/29,5.1035727849794 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/30,9.090764398333336 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/21,8.656091669174169 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/08,4.171950000262496 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/29,2.844885025 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/30,9.090764398333336 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/21,8.656091669174169 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/08,4.171950000262496 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/04/29,2.844885025 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/23,6.679645011970833 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/31,6.274331444474159 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/24,10.70587500066999 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/23,6.679645011970833 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/31,6.274331444474159 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/05/24,10.70587500066999 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/03,13.130966717266688 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/06/24,10.562868943586668 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/02,2.866650000000003 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/06/25,3.446386721153845 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/03,13.130966717266688 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/06/24,10.562868943586668 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/02,2.866650000000003 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/06/25,3.446386721153845 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/11,9.514458750570014 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/04,3.0287628967391638 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/26,5.468483332735835 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/03,2.6409213365384625 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/27,3.01764105 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/11,9.514458750570014 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/04,3.0287628967391638 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/26,5.468483332735835 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/03,2.6409213365384625 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/07/27,3.01764105 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/05,3.2596606066666625 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/27,5.178915001912504 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/04,3.0081113649999973 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/28,4.9600999999999935 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/05,3.2596606066666625 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/27,5.178915001912504 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/04,3.0081113649999973 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/08/28,4.9600999999999935 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/07,5.3170076243809445 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/21,2.996571971666662 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/06,2.823296268269229 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/29,2.709347980769231 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/07,5.3170076243809445 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/21,2.996571971666662 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/06,2.823296268269229 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/09/29,2.709347980769231 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/08,4.4674069937391625 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/23,7.894715141666661 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/07,3.339680254807692 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/08,4.4674069937391625 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/10/23,7.894715141666661 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/07,3.339680254807692 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/12/10,3.575734100262502 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/23,3.52529756153846 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/12/10,3.575734100262502 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/11/23,3.52529756153846 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/12/26,24.44116666666665 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2016/12/26,24.44116666666665 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/03/08,4.464225 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/02/20,20.93988333788586 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/03/08,4.464225 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/02/20,20.93988333788586 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/08,13.377691666381672 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/09,14.241749999952493 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/08,13.377691666381672 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/09,14.241749999952493 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/24,10.710266666666652 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/05/11,7.585503413417501 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/04/24,10.710266666666652 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/05/11,7.585503413417501 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/06/11,7.756944165521671 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/06/11,7.756944165521671 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/07/05,2.3833295000000008 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/07/05,2.3833295000000008 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/07,16.577912511547503 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/06,3.852400000000007 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/07/30,2.9317181682692297 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/07,16.577912511547503 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/06,3.852400000000007 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/07/30,2.9317181682692297 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/08,2.4551979164391686 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/30,3.9333818099999935 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/23,5.367814165696785 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/08,2.4551979164391686 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/30,3.9333818099999935 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/08/23,5.367814165696785 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/01,5.569898020769225 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/24,2.7694369696666654 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/02,3.1170272242673964 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/23,2.424892125000001 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/01,5.569898020769225 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/24,2.7694369696666654 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/02,3.1170272242673964 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/09/23,2.424892125000001 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/11/11,4.037109981999997 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/11/10,2.679977200000002 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/10/25,4.257316056666664 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2017/12/04,19.89678123273335 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/01/06,21.88613333333335 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/02/06,9.95794166645168 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/05/05,4.0630250000949975 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/04/28,3.410675000000002 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/05/29,5.5534985275644 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/05/30,3.866187123405828 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/07/09,3.2239810967391644 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/06/30,20.371537499952492 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/07/08,13.723599999784987 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/06/22,5.129950000842496 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/08/10,3.032826532536665 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/08/09,6.803800002419985 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/09/03,4.40841666666666 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/08/25,6.339491669299151 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/10/05,4.288725000144998 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/12/08,21.83489999973752 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2018/11/22,2.256552250000002 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/01/01,24.44116666666665 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/02/10,11.435050000385 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/01/25,13.0016249997375 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/02/26,21.88613333333335 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/05/09,3.1599583332483387 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/04/23,8.008620882585836 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/05/08,3.539700006554995 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/04/22,11.913946544101677 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/06/01,6.896864579105848 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/06/09,6.135357587131661 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/07/03,7.975977778015274 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/06/26,6.269337886739171 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/08/04,11.327433751472514 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/08/05,2.621205923076924 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/07/27,3.0426074807692287 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/09/05,4.996334404102558 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/08/29,2.749428802439167 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/09/06,6.246700000624997 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/09/21,8.324234090072503 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/10/08,3.3494131999999945 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/09/29,4.783225000072507 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/11/09,3.173398493333331 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/10/24,3.3678873399999985 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/12/03,15.736264584133345 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/12/11,3.243375865384611 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2019/11/25,5.052428192307685 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/02/05,22.49097500000001 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/02,4.492216682869164 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/04/25,8.817003795880844 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/10,3.4420500000000014 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/03,14.666025062100012 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/27,4.6819333367283305 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/06/04,3.6024280333333367 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/05/26,4.521513040769222 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/06/28,3.981603796666657 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/07/06,3.3631051971153845 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/08/06,14.863983347180833 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/08/07,12.98324999999999 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/08/31,3.415390414102562 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/08/22,7.567554166199169 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/09/08,8.685827661540001 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/10/09,4.82133337771428 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/09/23,11.101129177881674 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/10/10,9.454525000217496 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/10/01,2.935175000000007 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/11/10,10.160666562380946 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/11/03,7.546974999807508 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/10/25,16.155962520794997 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2020/12/29,21.75304166666668 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/01/22,22.30574166666668 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/02/06,21.848400000000016 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/04/04,10.877224999570007 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/05/06,3.0492827499999957 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/06/06,12.736454182766662 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/06/07,2.8312595200000032 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/06/23,7.70802501847249 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/08/02,3.5522682051449936 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/07/24,15.132831666189151 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/08/10,10.003625000000005 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/07/25,4.903019230769231 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/10,9.233433351638334 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/03,2.8769807425366314 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/08/25,10.352470450000006 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/11,2.2603906000000045 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/02,2.9430000000000023 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/08/26,4.018950000072494 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/09/26,8.798041671314174 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/06,6.277117439109169 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/10/28,6.913893165072491 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/09,3.152253072307692 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/05,3.420158332307689 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/10/29,2.97667573076923 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/12/07,6.604262504197496 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/24,3.6973453736263737 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/11/21,6.33249166695165 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2021/12/23,2.275213224999997 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/02/01,22.26459166666668 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/01/25,22.304175000000008 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/01/24,21.75304166666668 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/02/26,22.24565000000001 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/03/30,9.354041666451677 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/03/29,3.841550000000004 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/09,4.049762886666661 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/09,2.9190481750000017 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/08,7.115918944766659 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/01,3.026046354999997 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/04/30,3.6976526681241615 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/26,6.394000000200006 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/25,3.136125000000005 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/05/24,3.969685054999992 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/07/04,9.723624997814992 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/06/29,3.939195454999992 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/07/11,5.925526143400833 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/07/03,24.59660833456334 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/06/26,2.4975750000474983 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/06/25,12.948814592538342 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/09/10,7.418636360192503 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/08/24,8.268699993480006 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/08/28,3.510735009999993 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/10/09,7.63349999256001 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/10/08,2.8451150849999998 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/09/30,19.62108333487834 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/09/29,2.999050713380834 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/09/21,3.2979345649999967 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/10/31,6.660749992125009 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/11/09,3.638680573076922 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/11/08,2.1932452499999964 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/12/10,4.926392737435895 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/12/02,8.340600001352485 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/11/24,4.272787947115386 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2022/12/27,22.13946666666668 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/02/04,21.970933333333345 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/01/28,22.60213333333334 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/03/09,21.75304166666668 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/02/21,10.304083332808348 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/02/20,12.903635416666678 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/04/10,11.454108333238327 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/04/09,14.318808333285828 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/09,9.174379169761677 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/11,7.008575000167484 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/31,5.672584090357503 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/26,3.5703824248116622 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/06/05,5.630575000552502 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/06/04,6.89398856436084 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/28,7.867825000480004 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/05/27,10.333218187163338 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/06/22,8.679112876739165 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/07,18.36934166602165 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/06,4.310152279999995 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/06/21,2.097059100000001 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/08/05,2.8147545401449974 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/31,2.498474242899168 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/31,5.073650000047492 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/30,6.343800000144992 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/23,4.0815124507692255 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/07/22,13.360575000072489 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/01,3.250626521739162 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/08,3.446350000000007 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/01,3.3663431999999958 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/08/31,6.814876516666669 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/08/23,3.711909069999996 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/28,7.840395833368352 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/10/11,12.215508333333323 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/10/03,5.326439599999991 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/10/02,3.9791000000000047 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/09/25,3.258185419999995 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/11/11,4.405747754807692 -Sacandaga Lake,120053722,-74.42348430799503,43.48648879755833,2023/11/03,4.863381096666663 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/05/05,8.400516664446666 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/05/05,8.400516664446666 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/06/06,14.321208349698336 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/05/29,13.383791667214162 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/06/06,14.321208349698336 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/05/29,13.383791667214162 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/06/22,9.098520846965837 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/06/22,9.098520846965837 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/09,15.384099999999988 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/01,11.236741701166668 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/09,15.384099999999988 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/01,11.236741701166668 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/09/10,12.160274998162503 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/25,2.2727750121975 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/09/10,12.160274998162503 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/08/25,2.2727750121975 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/09/26,2.821774251666665 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/10/04,13.817612500095 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/09/26,2.821774251666665 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/10/04,13.817612500095 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/11/05,18.68352500040001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/11/05,18.68352500040001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/11/29,3.2281615641025634 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2015/11/29,3.2281615641025634 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/01/24,21.77555833328585 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/01/24,21.77555833328585 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/05,8.104375012444997 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/05,8.104375012444997 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/07,8.529724995950007 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/21,7.638298498005833 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/29,17.38734166723666 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/07,8.529724995950007 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/21,7.638298498005833 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/04/29,17.38734166723666 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/23,15.250475050600013 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/31,7.001781928325241 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/23,15.250475050600013 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/05/31,7.001781928325241 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/06/24,7.067911366400002 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/06/24,7.067911366400002 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/11,6.310272730625001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/07/26,6.353074995110006 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/03,2.7182437932692305 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/11,6.310272730625001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/07/26,6.353074995110006 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/03,2.7182437932692305 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/27,6.592614773333335 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/09/04,8.421777270119996 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/08/27,6.592614773333335 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/09/04,8.421777270119996 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/09/28,8.175687500070001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/10/06,2.1582976249999986 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/09/28,8.175687500070001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/10/06,2.1582976249999986 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/11/07,2.3804041249999983 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/11/07,2.3804041249999983 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/12/09,3.0977500000000022 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/12/09,3.0977500000000022 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/12/25,21.88613333333335 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2016/12/25,21.88613333333335 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/02/03,12.266124999324994 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/02/03,12.266124999324994 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/02/27,3.019375000000005 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/02/27,3.019375000000005 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/04/24,13.316400029900016 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/04/24,13.316400029900016 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/06/11,5.016000602983334 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/06/11,5.016000602983334 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/07/05,2.5509339932692323 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/07/05,2.5509339932692323 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/07/29,10.701125002444972 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/08/06,3.5845750000000067 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/07/29,10.701125002444972 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/08/06,3.5845750000000067 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/08/30,3.781275000072495 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/08/30,3.781275000072495 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/10/01,3.605903796666659 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/09/23,7.491150000334986 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/10/01,3.605903796666659 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/09/23,7.491150000334986 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/11/11,3.9549598750433392 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/11/10,4.480625 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/10/25,3.138273149999999 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/12/04,3.03572916663917 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2017/12/28,21.794191666666684 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/01/29,12.817266666619169 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/05/05,5.0861091023 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/05/29,6.5983742469066655 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/06/30,15.439162499952497 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/07/08,7.439950000429979 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/06/22,7.2465666690391535 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/08/09,6.670300000047506 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/08/25,3.2813959299999955 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/12/07,22.47810000000001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2018/12/23,9.687033333333346 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/02/01,21.794191666666684 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/04/23,8.252258354180846 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/05/08,4.290175000192498 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/04/22,3.484528540384612 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/06/10,16.944400000569996 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/06/09,2.8416954049999994 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/07/03,9.956237509152505 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/06/26,16.758102274569982 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/08/04,7.038725003990004 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/07/28,13.17118958589833 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/07/27,4.507721213790827 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/09/05,3.941754579999993 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/08/29,7.339250002925 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/09/21,4.336968943333327 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/09/29,13.238449999999986 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2019/10/23,5.205985832098337 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/02/21,22.451158333333343 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/05/02,13.510475027600004 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/04/25,6.967720460072502 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/04/24,10.958625000000008 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/05/27,3.8187295506274928 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/05/26,5.820473868917486 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/08/06,7.03083560673917 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/07/30,3.4932688121794864 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/08/31,9.545225001155 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/08/30,2.638915415000002 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/10/09,4.23178789666666 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/10/01,2.910775000000005 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/11/10,5.092468948405829 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2020/10/25,7.210956665334167 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/03/02,22.47810000000001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/04/03,8.81783335020584 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/05/29,5.3681026748724925 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/08/02,3.9320136503624936 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/09/10,9.420199993915002 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/08/25,16.194716666951663 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/09/26,12.772008333518311 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/11/06,14.382212892580842 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/10/28,7.155208333103342 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/11/29,8.024008331108346 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/11/24,2.5336816000000018 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/11/21,4.483975000499999 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/12/24,23.085375 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/01/08,21.867666666666683 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2021/12/23,11.087425 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/01/25,22.348225000000006 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/04/06,5.0979191664741705 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/04/06,4.954725019999993 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/03/29,4.940052270000001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/05/08,2.985098408333333 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/04/30,4.306875000145 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/04/22,3.1091817500000047 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/05/31,9.793183333953328 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/05/24,4.290399999999996 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/07/04,3.387560622246665 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/07/03,4.591900000407501 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/06/25,3.891079644999993 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/08/07,3.99796819014499 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/09/10,6.7670219677041725 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/08/24,3.650566650144994 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/08/28,2.6850022150000017 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/09/21,5.127750000889998 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/10/26,8.27978407012 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/11/08,2.170306574999997 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/10/23,13.09149166706666 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/12/10,2.4269749500000013 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2022/11/24,4.512272754807693 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/01/11,21.77565833333335 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/02/04,22.304175000000008 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/04/09,2.672088640000001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/09,14.402757499044982 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/11,4.081376516666662 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/31,3.1969303037683328 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/26,3.091843180144998 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/06/04,5.672475009554998 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/05/27,12.779150004672491 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/06/27,3.873401536956661 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/06/22,3.1724431809425 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/07/06,8.705752270120003 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/08/05,4.172766667174164 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/07/30,10.07987500709249 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/07/22,5.324558340115825 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/09/06,7.335050000892503 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/09/01,8.985075000890003 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/08/31,4.216534089999993 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/08/23,2.220202200000001 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/10/03,16.93603336792835 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/09/28,11.85660208474585 -Rainbow Falls Reservoir,166766896,-74.78994624873364,44.50871460397969,2023/10/02,3.3340565749999977 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/06/06,15.686325029297498 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/05/29,23.360968941569173 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/06/06,15.686325029297498 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/05/29,23.360968941569173 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/07/08,8.257899999742495 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/06/22,12.257704168966676 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/07/08,8.257899999742495 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/06/22,12.257704168966676 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/09,11.570165146666666 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/07/24,5.6585878834058345 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/01,3.847850000000004 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/09,11.570165146666666 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/07/24,5.6585878834058345 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/01,3.847850000000004 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/25,22.50537291666667 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/08/25,22.50537291666667 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/09/26,11.362624991875 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/10/04,5.5604348554166725 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/09/26,11.362624991875 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2015/10/04,5.5604348554166725 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/05,10.707635416594174 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/05,10.707635416594174 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/21,6.3224330317425 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/29,4.463718946666663 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/21,6.3224330317425 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/04/29,4.463718946666663 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/05/23,13.354520001565003 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/05/31,7.071341666666678 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/05/23,13.354520001565003 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/05/31,7.071341666666678 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/06/24,5.911743328215835 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/07/02,9.719989585226685 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/06/24,5.911743328215835 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/07/02,9.719989585226685 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/11,14.311899999909992 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/07/26,20.01571250231501 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/03,6.806506819999994 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/11,14.311899999909992 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/07/26,20.01571250231501 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/03,6.806506819999994 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/27,18.205877777967768 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/09/04,24.6262583337133 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/08/27,18.205877777967768 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/09/04,24.6262583337133 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/09/28,14.762666697014158 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/10/06,8.055711745464993 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/09/28,14.762666697014158 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/10/06,8.055711745464993 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/11/07,11.662317423333311 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/11/07,11.662317423333311 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/01/02,22.348225000000006 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/12/25,17.19664583578334 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/01/02,22.348225000000006 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2016/12/25,17.19664583578334 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/02/03,22.451158333333343 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/02/03,22.451158333333343 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/02/27,13.495725002917505 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/02/27,13.495725002917505 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/03/23,19.018137502162503 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/03/23,19.018137502162503 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/04/24,6.311103757374996 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/04/24,6.311103757374996 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/06/03,2.4763020750000044 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/06/03,2.4763020750000044 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/06/27,7.479966655506673 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/07/05,14.978525057500022 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/06/27,7.479966655506673 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/07/05,14.978525057500022 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/07/29,11.639441666666666 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/08/06,2.369675000000001 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/07/29,11.639441666666666 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/08/06,2.369675000000001 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/08/30,21.451493333333342 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/08/30,21.451493333333342 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/10/01,21.64720153242529 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/09/23,7.049462281999991 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/10/01,21.64720153242529 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/09/23,7.049462281999991 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/11/10,18.664708335585825 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/10/25,3.5764500000000083 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2017/12/04,7.199284465665835 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/01/05,11.25039166725167 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/02/06,22.76205 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/05/05,11.603468753412498 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/05/29,5.926192423690835 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/06/30,7.216225000095001 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/07/08,14.652066666714134 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/08/09,18.34569166666669 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2018/08/25,9.756858342358337 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/03/05,21.77565833333335 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/05/08,11.661970836450829 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/04/22,14.761706250190008 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/06/01,9.769716669446655 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/06/09,18.342233340233324 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/07/03,8.689559846714175 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/08/04,5.631041670009174 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/07/27,12.080700000094994 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/09/05,27.531892500000016 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/09/21,15.264716666714165 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/09/29,9.199848107500834 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2019/11/08,13.43660000018999 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/03/07,15.682712500000012 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/02/20,21.750616666666684 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/05/02,9.757084129470002 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/05/10,21.68097499926252 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/05/26,19.522041667094165 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/07/05,12.882916671324171 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/08/06,21.330520833428317 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/08/22,7.531249989100008 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/08/30,17.805958333333322 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/10/09,10.726556667404177 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/10/01,14.987150002185016 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/11/10,20.95017500048501 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2020/10/25,15.314000002540013 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/04/03,9.061030447111664 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/06/06,23.56930833333333 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/07/24,14.85300416666667 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/09/10,10.3174562672675 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/08/25,16.665205833285853 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/09/26,14.829490043979996 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/10/28,14.228583334143323 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/11/05,11.99683333285833 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/11/24,21.628641671456684 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2021/11/21,24.942575002632477 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/02/09,21.75304166666668 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/01/24,21.867666666666683 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/03/29,17.07552575934668 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/05/08,18.813975000189988 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/04/30,10.334775005530016 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/04/22,11.330931254607504 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/05/31,14.70684583256834 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/05/24,6.310396209164165 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/07/11,9.556445450000014 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/07/03,17.21185456602583 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/06/25,13.627358335633316 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/08/07,10.96171458471084 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/09/10,5.709557202562504 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/08/28,7.596172888739156 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/09/29,3.689450000000007 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/09/21,21.96073749961753 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/11/08,19.89341742577583 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/12/10,11.765675004599997 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2022/11/24,4.311847754807694 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/04/09,12.432006250000011 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/04/01,15.84770833516082 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/03/24,7.644600000985005 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/05/11,16.59046364063333 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/04/25,2.9225750000000037 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/05/31,17.1584375 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/05/26,4.915136360144992 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/06/04,16.576700013135017 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/05/27,12.423533333570814 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/06/22,6.970504547026671 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/07/06,12.167527655728332 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/08/05,6.66899999452001 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/07/30,25.067391675866677 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/07/22,4.62807801207083 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/09/06,3.7679878736958297 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/09/01,2.672402875246666 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/08/31,6.338907721999991 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/08/23,10.57116742338084 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/10/03,15.94199167586668 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/11/11,2.983175000000007 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/11/03,14.233762119061655 -Delta Reservoir,22742027,-75.43069638605539,43.29257781223142,2023/11/27,17.043867425728322 From 726f93c074a72190ce03d6b701f3b0a8afec47e7 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 01:04:51 -0400 Subject: [PATCH 07/13] Add chlorophyll example for WaterSciCon --- ...chlorophyll_a_estimates_with_landsat.ipynb | 2639 +++++++++++++++++ 1 file changed, 2639 insertions(+) create mode 100644 docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb diff --git a/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb b/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb new file mode 100644 index 0000000..ff75eae --- /dev/null +++ b/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb @@ -0,0 +1,2639 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "[![Open in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/dkedar7/fast_dash/blob/docs/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This notebook is optimized to run in Google Colab." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "import datetime\n", + "import pandas as pd\n", + "import plotly.express as px\n", + "\n", + "from fast_dash import fastdash, Graph" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
gnis_namecomidcentroid_longitudecentroid_latitudedate_acquiredpredictions
29937Allegheny Reservoir166899002-78.93641141.9427802014-12-264.542550
29938Allegheny Reservoir166899002-78.93641141.9427802014-12-264.542550
22473Canadice Lake15538847-77.56884942.7183442014-12-266.810975
10694Chautauqua Lake15444647-79.40432142.1696672014-12-2611.286547
5793Cuba Lake8968334-78.29247842.2491372014-12-269.676264
.....................
7788Georgica Pond9495486-72.22912840.9392672023-12-0715.486617
7789Georgica Pond9495486-72.22912840.9392672023-12-0710.054060
7787Georgica Pond9495486-72.22912840.9392672023-12-088.188354
7173Lake Montauk9494728-71.92278341.0604542023-12-088.116833
7174Lake Montauk9494728-71.92278341.0604542023-12-085.247392
\n", + "

45297 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " gnis_name comid centroid_longitude centroid_latitude \\\n", + "29937 Allegheny Reservoir 166899002 -78.936411 41.942780 \n", + "29938 Allegheny Reservoir 166899002 -78.936411 41.942780 \n", + "22473 Canadice Lake 15538847 -77.568849 42.718344 \n", + "10694 Chautauqua Lake 15444647 -79.404321 42.169667 \n", + "5793 Cuba Lake 8968334 -78.292478 42.249137 \n", + "... ... ... ... ... \n", + "7788 Georgica Pond 9495486 -72.229128 40.939267 \n", + "7789 Georgica Pond 9495486 -72.229128 40.939267 \n", + "7787 Georgica Pond 9495486 -72.229128 40.939267 \n", + "7173 Lake Montauk 9494728 -71.922783 41.060454 \n", + "7174 Lake Montauk 9494728 -71.922783 41.060454 \n", + "\n", + " date_acquired predictions \n", + "29937 2014-12-26 4.542550 \n", + "29938 2014-12-26 4.542550 \n", + "22473 2014-12-26 6.810975 \n", + "10694 2014-12-26 11.286547 \n", + "5793 2014-12-26 9.676264 \n", + "... ... ... \n", + "7788 2023-12-07 15.486617 \n", + "7789 2023-12-07 10.054060 \n", + "7787 2023-12-08 8.188354 \n", + "7173 2023-12-08 8.116833 \n", + "7174 2023-12-08 5.247392 \n", + "\n", + "[45297 rows x 6 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# If you get a ConnectionError, please retry. \n", + "data = pd.read_csv(\"https://raw.githubusercontent.com/dkedar7/fast_dash/docs/docs/Examples/assets/chla_subset.csv\")\n", + "data['date_acquired'] = pd.to_datetime(data[\"date_acquired\"])\n", + "data = data.sort_values([\"date_acquired\", \"gnis_name\"])\n", + "data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Let's build a simple function to display trends" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "#@fastdash(mode=\"external\", port=5000)\n", + "def plot_chlorophyll_estimates(lake_name: str = data.gnis_name.unique().tolist()) -> Graph:\n", + " \"\"\"\n", + " Plot Landsat-driven estimation of Chlorophyll-a values in island waters of NY state.\n", + " \"\"\"\n", + " \n", + " filtered_data = data[data.gnis_name == lake_name]\n", + " trend = px.line(data_frame=filtered_data, x=\"date_acquired\", y=\"predictions\", template=\"simple_white\")\n", + " \n", + " return trend" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "text/html": [ + " \n", + " " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertemplate": "date_acquired=%{x}
predictions=%{y}", + "legendgroup": "", + "line": { + "color": "#1F77B4", + "dash": "solid" + }, + "marker": { + "symbol": "circle" + }, + "mode": "lines", + "name": "", + "orientation": "v", + "showlegend": false, + "type": "scatter", + "x": [ + "2014-12-31T00:00:00", + "2015-01-07T00:00:00", + "2015-01-07T00:00:00", + "2015-01-08T00:00:00", + "2015-01-23T00:00:00", + "2015-01-23T00:00:00", + "2015-01-23T00:00:00", + "2015-01-23T00:00:00", + "2015-01-31T00:00:00", + "2015-01-31T00:00:00", + "2015-01-31T00:00:00", + "2015-01-31T00:00:00", + "2015-02-01T00:00:00", + "2015-02-01T00:00:00", + "2015-03-29T00:00:00", + "2015-03-29T00:00:00", + "2015-04-05T00:00:00", + "2015-04-05T00:00:00", + "2015-04-05T00:00:00", + "2015-04-05T00:00:00", + "2015-04-22T00:00:00", + "2015-04-22T00:00:00", + "2015-04-29T00:00:00", + "2015-04-29T00:00:00", + "2015-04-29T00:00:00", + "2015-04-29T00:00:00", + "2015-04-30T00:00:00", + "2015-04-30T00:00:00", + "2015-05-07T00:00:00", + "2015-05-07T00:00:00", + "2015-05-07T00:00:00", + "2015-05-07T00:00:00", + "2015-05-08T00:00:00", + "2015-05-08T00:00:00", + "2015-05-23T00:00:00", + "2015-05-23T00:00:00", + "2015-05-23T00:00:00", + "2015-05-23T00:00:00", + "2015-05-24T00:00:00", + "2015-05-24T00:00:00", + "2015-06-24T00:00:00", + "2015-06-24T00:00:00", + "2015-06-24T00:00:00", + "2015-06-24T00:00:00", + "2015-06-25T00:00:00", + "2015-06-25T00:00:00", + "2015-07-03T00:00:00", + "2015-07-03T00:00:00", + "2015-07-11T00:00:00", + "2015-07-11T00:00:00", + "2015-08-03T00:00:00", + "2015-08-03T00:00:00", + "2015-08-03T00:00:00", + "2015-08-03T00:00:00", + "2015-08-04T00:00:00", + "2015-08-04T00:00:00", + "2015-08-27T00:00:00", + "2015-08-27T00:00:00", + "2015-08-27T00:00:00", + "2015-08-27T00:00:00", + "2015-08-28T00:00:00", + "2015-08-28T00:00:00", + "2015-09-04T00:00:00", + "2015-09-04T00:00:00", + "2015-09-04T00:00:00", + "2015-09-04T00:00:00", + "2015-09-05T00:00:00", + "2015-09-05T00:00:00", + "2015-09-21T00:00:00", + "2015-09-21T00:00:00", + "2015-09-29T00:00:00", + "2015-09-29T00:00:00", + "2015-10-06T00:00:00", + "2015-10-06T00:00:00", + "2015-10-06T00:00:00", + "2015-10-06T00:00:00", + "2015-10-07T00:00:00", + "2015-10-07T00:00:00", + "2015-10-22T00:00:00", + "2015-10-22T00:00:00", + "2015-10-22T00:00:00", + "2015-10-22T00:00:00", + "2015-10-23T00:00:00", + "2015-10-23T00:00:00", + "2015-10-30T00:00:00", + "2015-10-30T00:00:00", + "2015-10-30T00:00:00", + "2015-10-30T00:00:00", + "2015-10-31T00:00:00", + "2015-10-31T00:00:00", + "2015-11-08T00:00:00", + "2015-11-08T00:00:00", + "2015-11-23T00:00:00", + "2015-11-23T00:00:00", + "2015-11-23T00:00:00", + "2015-11-23T00:00:00", + "2015-11-24T00:00:00", + "2015-11-24T00:00:00", + "2015-12-09T00:00:00", + "2015-12-09T00:00:00", + "2015-12-09T00:00:00", + "2015-12-09T00:00:00", + "2015-12-10T00:00:00", + "2015-12-10T00:00:00", + "2016-01-02T00:00:00", + "2016-01-02T00:00:00", + "2016-01-02T00:00:00", + "2016-01-02T00:00:00", + "2016-01-03T00:00:00", + "2016-01-03T00:00:00", + "2016-01-11T00:00:00", + "2016-01-11T00:00:00", + "2016-02-11T00:00:00", + "2016-02-11T00:00:00", + "2016-02-11T00:00:00", + "2016-02-11T00:00:00", + "2016-02-20T00:00:00", + "2016-02-20T00:00:00", + "2016-02-27T00:00:00", + "2016-02-27T00:00:00", + "2016-02-27T00:00:00", + "2016-02-27T00:00:00", + "2016-02-28T00:00:00", + "2016-02-28T00:00:00", + "2016-03-06T00:00:00", + "2016-03-06T00:00:00", + "2016-03-06T00:00:00", + "2016-03-06T00:00:00", + "2016-03-22T00:00:00", + "2016-03-22T00:00:00", + "2016-03-22T00:00:00", + "2016-03-22T00:00:00", + "2016-03-23T00:00:00", + "2016-03-23T00:00:00", + "2016-03-30T00:00:00", + "2016-03-30T00:00:00", + "2016-03-30T00:00:00", + "2016-03-30T00:00:00", + "2016-04-08T00:00:00", + "2016-04-08T00:00:00", + "2016-04-24T00:00:00", + "2016-04-24T00:00:00", + "2016-05-09T00:00:00", + "2016-05-09T00:00:00", + "2016-05-09T00:00:00", + "2016-05-09T00:00:00", + "2016-05-10T00:00:00", + "2016-05-10T00:00:00", + "2016-05-25T00:00:00", + "2016-05-25T00:00:00", + "2016-05-25T00:00:00", + "2016-05-25T00:00:00", + "2016-05-26T00:00:00", + "2016-05-26T00:00:00", + "2016-06-26T00:00:00", + "2016-06-26T00:00:00", + "2016-06-26T00:00:00", + "2016-06-26T00:00:00", + "2016-07-04T00:00:00", + "2016-07-04T00:00:00", + "2016-07-04T00:00:00", + "2016-07-04T00:00:00", + "2016-08-05T00:00:00", + "2016-08-05T00:00:00", + "2016-08-05T00:00:00", + "2016-08-05T00:00:00", + "2016-08-06T00:00:00", + "2016-08-06T00:00:00", + "2016-08-22T00:00:00", + "2016-08-22T00:00:00", + "2016-08-30T00:00:00", + "2016-08-30T00:00:00", + "2016-09-22T00:00:00", + "2016-09-22T00:00:00", + "2016-09-22T00:00:00", + "2016-09-22T00:00:00", + "2016-09-23T00:00:00", + "2016-09-23T00:00:00", + "2016-10-24T00:00:00", + "2016-10-24T00:00:00", + "2016-10-24T00:00:00", + "2016-10-24T00:00:00", + "2016-10-25T00:00:00", + "2016-10-25T00:00:00", + "2016-11-01T00:00:00", + "2016-11-01T00:00:00", + "2016-11-01T00:00:00", + "2016-11-01T00:00:00", + "2016-11-02T00:00:00", + "2016-11-02T00:00:00", + "2016-11-10T00:00:00", + "2016-11-10T00:00:00", + "2016-12-03T00:00:00", + "2016-12-03T00:00:00", + "2016-12-03T00:00:00", + "2016-12-03T00:00:00", + "2016-12-04T00:00:00", + "2016-12-04T00:00:00", + "2016-12-11T00:00:00", + "2016-12-11T00:00:00", + "2017-01-28T00:00:00", + "2017-01-28T00:00:00", + "2017-01-28T00:00:00", + "2017-01-28T00:00:00", + "2017-01-29T00:00:00", + "2017-01-29T00:00:00", + "2017-02-06T00:00:00", + "2017-02-06T00:00:00", + "2017-02-21T00:00:00", + "2017-02-21T00:00:00", + "2017-02-21T00:00:00", + "2017-02-21T00:00:00", + "2017-03-02T00:00:00", + "2017-03-02T00:00:00", + "2017-03-09T00:00:00", + "2017-03-09T00:00:00", + "2017-03-09T00:00:00", + "2017-03-09T00:00:00", + "2017-04-02T00:00:00", + "2017-04-02T00:00:00", + "2017-04-02T00:00:00", + "2017-04-02T00:00:00", + "2017-04-10T00:00:00", + "2017-04-10T00:00:00", + "2017-04-10T00:00:00", + "2017-04-10T00:00:00", + "2017-04-11T00:00:00", + "2017-04-11T00:00:00", + "2017-05-04T00:00:00", + "2017-05-04T00:00:00", + "2017-06-21T00:00:00", + "2017-06-21T00:00:00", + "2017-06-21T00:00:00", + "2017-06-21T00:00:00", + "2017-06-22T00:00:00", + "2017-06-22T00:00:00", + "2017-07-31T00:00:00", + "2017-07-31T00:00:00", + "2017-07-31T00:00:00", + "2017-07-31T00:00:00", + "2017-08-01T00:00:00", + "2017-08-01T00:00:00", + "2017-08-09T00:00:00", + "2017-08-09T00:00:00", + "2017-08-24T00:00:00", + "2017-08-24T00:00:00", + "2017-08-24T00:00:00", + "2017-08-24T00:00:00", + "2017-08-25T00:00:00", + "2017-08-25T00:00:00", + "2017-09-01T00:00:00", + "2017-09-01T00:00:00", + "2017-09-01T00:00:00", + "2017-09-01T00:00:00", + "2017-09-09T00:00:00", + "2017-09-09T00:00:00", + "2017-09-09T00:00:00", + "2017-09-09T00:00:00", + "2017-09-10T00:00:00", + "2017-09-10T00:00:00", + "2017-09-25T00:00:00", + "2017-09-25T00:00:00", + "2017-09-25T00:00:00", + "2017-09-25T00:00:00", + "2017-09-26T00:00:00", + "2017-09-26T00:00:00", + "2017-10-03T00:00:00", + "2017-10-03T00:00:00", + "2017-10-03T00:00:00", + "2017-10-03T00:00:00", + "2017-10-04T00:00:00", + "2017-10-04T00:00:00", + "2017-10-27T00:00:00", + "2017-10-27T00:00:00", + "2017-10-27T00:00:00", + "2017-10-27T00:00:00", + "2017-10-28T00:00:00", + "2017-10-28T00:00:00", + "2017-11-04T00:00:00", + "2017-11-04T00:00:00", + "2017-11-04T00:00:00", + "2017-11-04T00:00:00", + "2017-11-21T00:00:00", + "2017-11-28T00:00:00", + "2017-11-28T00:00:00", + "2017-12-07T00:00:00", + "2018-01-24T00:00:00", + "2018-01-31T00:00:00", + "2018-01-31T00:00:00", + "2018-02-08T00:00:00", + "2018-02-08T00:00:00", + "2018-02-24T00:00:00", + "2018-02-24T00:00:00", + "2018-04-05T00:00:00", + "2018-04-05T00:00:00", + "2018-04-21T00:00:00", + "2018-04-21T00:00:00", + "2018-04-22T00:00:00", + "2018-05-08T00:00:00", + "2018-05-23T00:00:00", + "2018-05-23T00:00:00", + "2018-05-24T00:00:00", + "2018-06-09T00:00:00", + "2018-06-25T00:00:00", + "2018-07-02T00:00:00", + "2018-07-02T00:00:00", + "2018-07-10T00:00:00", + "2018-07-10T00:00:00", + "2018-07-11T00:00:00", + "2018-07-27T00:00:00", + "2018-08-03T00:00:00", + "2018-08-03T00:00:00", + "2018-08-27T00:00:00", + "2018-08-27T00:00:00", + "2018-09-04T00:00:00", + "2018-09-04T00:00:00", + "2018-09-05T00:00:00", + "2018-09-21T00:00:00", + "2018-09-29T00:00:00", + "2018-10-06T00:00:00", + "2018-10-06T00:00:00", + "2018-11-07T00:00:00", + "2018-11-07T00:00:00", + "2018-11-08T00:00:00", + "2018-11-23T00:00:00", + "2018-11-24T00:00:00", + "2018-12-01T00:00:00", + "2018-12-01T00:00:00", + "2018-12-10T00:00:00", + "2018-12-25T00:00:00", + "2018-12-25T00:00:00", + "2018-12-26T00:00:00", + "2019-01-10T00:00:00", + "2019-01-10T00:00:00", + "2019-01-11T00:00:00", + "2019-01-26T00:00:00", + "2019-01-26T00:00:00", + "2019-01-27T00:00:00", + "2019-02-03T00:00:00", + "2019-02-03T00:00:00", + "2019-03-07T00:00:00", + "2019-03-07T00:00:00", + "2019-03-08T00:00:00", + "2019-03-24T00:00:00", + "2019-04-01T00:00:00", + "2019-04-24T00:00:00", + "2019-04-24T00:00:00", + "2019-04-25T00:00:00", + "2019-05-02T00:00:00", + "2019-05-11T00:00:00", + "2019-05-26T00:00:00", + "2019-05-26T00:00:00", + "2019-05-27T00:00:00", + "2019-06-03T00:00:00", + "2019-06-03T00:00:00", + "2019-06-04T00:00:00", + "2019-06-27T00:00:00", + "2019-06-27T00:00:00", + "2019-06-28T00:00:00", + "2019-07-22T00:00:00", + "2019-07-29T00:00:00", + "2019-07-29T00:00:00", + "2019-07-30T00:00:00", + "2019-08-22T00:00:00", + "2019-08-22T00:00:00", + "2019-08-30T00:00:00", + "2019-08-30T00:00:00", + "2019-08-31T00:00:00", + "2019-09-07T00:00:00", + "2019-09-07T00:00:00", + "2019-09-08T00:00:00", + "2019-09-23T00:00:00", + "2019-09-23T00:00:00", + "2019-09-24T00:00:00", + "2019-10-02T00:00:00", + "2019-10-26T00:00:00", + "2019-11-02T00:00:00", + "2019-11-02T00:00:00", + "2019-11-03T00:00:00", + "2019-11-10T00:00:00", + "2019-11-11T00:00:00", + "2019-11-26T00:00:00", + "2019-11-26T00:00:00", + "2019-12-05T00:00:00", + "2019-12-28T00:00:00", + "2019-12-28T00:00:00", + "2020-01-22T00:00:00", + "2020-01-30T00:00:00", + "2020-02-22T00:00:00", + "2020-02-22T00:00:00", + "2020-02-23T00:00:00", + "2020-03-01T00:00:00", + "2020-03-01T00:00:00", + "2020-03-02T00:00:00", + "2020-03-09T00:00:00", + "2020-03-09T00:00:00", + "2020-03-26T00:00:00", + "2020-04-02T00:00:00", + "2020-04-02T00:00:00", + "2020-04-11T00:00:00", + "2020-05-04T00:00:00", + "2020-05-04T00:00:00", + "2020-05-05T00:00:00", + "2020-06-21T00:00:00", + "2020-06-21T00:00:00", + "2020-06-22T00:00:00", + "2020-06-29T00:00:00", + "2020-06-29T00:00:00", + "2020-07-08T00:00:00", + "2020-08-01T00:00:00", + "2020-08-09T00:00:00", + "2020-08-24T00:00:00", + "2020-08-24T00:00:00", + "2020-09-01T00:00:00", + "2020-09-01T00:00:00", + "2020-09-26T00:00:00", + "2020-10-03T00:00:00", + "2020-10-03T00:00:00", + "2020-10-04T00:00:00", + "2020-10-11T00:00:00", + "2020-10-11T00:00:00", + "2020-11-05T00:00:00", + "2020-11-21T00:00:00", + "2020-11-29T00:00:00", + "2020-12-06T00:00:00", + "2020-12-06T00:00:00", + "2020-12-22T00:00:00", + "2020-12-22T00:00:00", + "2020-12-23T00:00:00", + "2021-01-07T00:00:00", + "2021-01-07T00:00:00", + "2021-01-08T00:00:00", + "2021-01-23T00:00:00", + "2021-01-23T00:00:00", + "2021-01-24T00:00:00", + "2021-02-08T00:00:00", + "2021-02-08T00:00:00", + "2021-02-24T00:00:00", + "2021-02-24T00:00:00", + "2021-02-25T00:00:00", + "2021-03-05T00:00:00", + "2021-03-29T00:00:00", + "2021-04-05T00:00:00", + "2021-04-05T00:00:00", + "2021-04-06T00:00:00", + "2021-04-21T00:00:00", + "2021-04-21T00:00:00", + "2021-04-30T00:00:00", + "2021-05-07T00:00:00", + "2021-05-07T00:00:00", + "2021-05-23T00:00:00", + "2021-05-23T00:00:00", + "2021-06-08T00:00:00", + "2021-06-09T00:00:00", + "2021-06-24T00:00:00", + "2021-06-24T00:00:00", + "2021-07-26T00:00:00", + "2021-07-27T00:00:00", + "2021-08-27T00:00:00", + "2021-08-27T00:00:00", + "2021-09-04T00:00:00", + "2021-09-04T00:00:00", + "2021-09-28T00:00:00", + "2021-09-28T00:00:00", + "2021-09-29T00:00:00", + "2021-10-07T00:00:00", + "2021-10-22T00:00:00", + "2021-10-22T00:00:00", + "2021-10-23T00:00:00", + "2021-10-31T00:00:00", + "2021-11-07T00:00:00", + "2021-11-07T00:00:00", + "2021-11-08T00:00:00", + "2021-11-23T00:00:00", + "2021-11-23T00:00:00", + "2021-11-24T00:00:00", + "2021-12-01T00:00:00", + "2021-12-02T00:00:00", + "2021-12-26T00:00:00", + "2021-12-26T00:00:00", + "2022-01-10T00:00:00", + "2022-01-10T00:00:00", + "2022-01-11T00:00:00", + "2022-01-11T00:00:00", + "2022-01-26T00:00:00", + "2022-01-26T00:00:00", + "2022-01-27T00:00:00", + "2022-01-27T00:00:00", + "2022-02-11T00:00:00", + "2022-02-11T00:00:00", + "2022-02-19T00:00:00", + "2022-02-19T00:00:00", + "2022-02-19T00:00:00", + "2022-02-20T00:00:00", + "2022-02-27T00:00:00", + "2022-02-27T00:00:00", + "2022-02-28T00:00:00", + "2022-02-28T00:00:00", + "2022-03-07T00:00:00", + "2022-03-07T00:00:00", + "2022-03-08T00:00:00", + "2022-03-23T00:00:00", + "2022-04-01T00:00:00", + "2022-04-08T00:00:00", + "2022-04-08T00:00:00", + "2022-04-09T00:00:00", + "2022-04-24T00:00:00", + "2022-04-24T00:00:00", + "2022-05-10T00:00:00", + "2022-05-10T00:00:00", + "2022-06-04T00:00:00", + "2022-06-07T00:00:00", + "2022-06-07T00:00:00", + "2022-06-28T00:00:00", + "2022-07-06T00:00:00", + "2022-07-11T00:00:00", + "2022-07-11T00:00:00", + "2022-07-22T00:00:00", + "2022-07-23T00:00:00", + "2022-07-29T00:00:00", + "2022-07-30T00:00:00", + "2022-08-06T00:00:00", + "2022-08-06T00:00:00", + "2022-08-07T00:00:00", + "2022-08-09T00:00:00", + "2022-08-26T00:00:00", + "2022-08-31T00:00:00", + "2022-09-08T00:00:00", + "2022-09-23T00:00:00", + "2022-09-23T00:00:00", + "2022-09-29T00:00:00", + "2022-10-09T00:00:00", + "2022-10-09T00:00:00", + "2022-10-25T00:00:00", + "2022-10-25T00:00:00", + "2022-11-02T00:00:00", + "2022-11-02T00:00:00", + "2022-11-02T00:00:00", + "2022-11-03T00:00:00", + "2022-11-10T00:00:00", + "2022-11-10T00:00:00", + "2022-11-24T00:00:00", + "2022-11-24T00:00:00", + "2022-11-26T00:00:00", + "2022-11-26T00:00:00", + "2022-12-04T00:00:00", + "2022-12-04T00:00:00", + "2022-12-05T00:00:00", + "2022-12-28T00:00:00", + "2022-12-28T00:00:00", + "2023-02-05T00:00:00", + "2023-02-05T00:00:00", + "2023-02-07T00:00:00", + "2023-02-22T00:00:00", + "2023-02-22T00:00:00", + "2023-03-10T00:00:00", + "2023-03-10T00:00:00", + "2023-03-26T00:00:00", + "2023-03-26T00:00:00", + "2023-03-27T00:00:00", + "2023-04-02T00:00:00", + "2023-04-03T00:00:00", + "2023-04-03T00:00:00", + "2023-05-06T00:00:00", + "2023-05-11T00:00:00", + "2023-05-22T00:00:00", + "2023-05-29T00:00:00", + "2023-05-29T00:00:00", + "2023-05-30T00:00:00", + "2023-06-02T00:00:00", + "2023-06-06T00:00:00", + "2023-06-06T00:00:00", + "2023-06-07T00:00:00", + "2023-06-07T00:00:00", + "2023-06-07T00:00:00", + "2023-06-29T00:00:00", + "2023-06-30T00:00:00", + "2023-06-30T00:00:00", + "2023-07-01T00:00:00", + "2023-07-08T00:00:00", + "2023-07-08T00:00:00", + "2023-07-25T00:00:00", + "2023-07-26T00:00:00", + "2023-07-26T00:00:00", + "2023-08-01T00:00:00", + "2023-08-01T00:00:00", + "2023-08-02T00:00:00", + "2023-08-09T00:00:00", + "2023-08-09T00:00:00", + "2023-08-10T00:00:00", + "2023-09-02T00:00:00", + "2023-09-02T00:00:00", + "2023-09-03T00:00:00", + "2023-09-10T00:00:00", + "2023-09-10T00:00:00", + "2023-09-11T00:00:00", + "2023-09-27T00:00:00", + "2023-10-04T00:00:00", + "2023-10-04T00:00:00", + "2023-10-05T00:00:00", + "2023-10-05T00:00:00", + "2023-10-10T00:00:00", + "2023-10-10T00:00:00", + "2023-10-28T00:00:00", + "2023-10-28T00:00:00", + "2023-11-05T00:00:00", + "2023-11-05T00:00:00", + "2023-11-06T00:00:00", + "2023-11-06T00:00:00", + "2023-11-06T00:00:00", + "2023-11-29T00:00:00", + "2023-11-29T00:00:00", + "2023-11-30T00:00:00", + "2023-12-07T00:00:00", + "2023-12-07T00:00:00", + "2023-12-08T00:00:00" + ], + "xaxis": "x", + "y": [ + 6.827380798276074, + 16.025166697089183, + 18.40036670973917, + 23.241562501877528, + 12.237015384615384, + 10.242635430426663, + 12.237015384615384, + 10.242635430426663, + 9.79657293917416, + 9.797697933999162, + 9.79657293917416, + 9.797697933999162, + 12.73119999985751, + 12.73119999985751, + 6.212512962307695, + 6.212512962307695, + 6.361048372833334, + 6.786898370335833, + 6.361048372833334, + 6.786898370335833, + 8.2861550012925, + 8.2861550012925, + 12.488089780238347, + 13.285935613571684, + 12.488089780238347, + 13.285935613571684, + 8.548234217174171, + 8.548234217174171, + 6.117824999855012, + 6.942624999855014, + 6.117824999855012, + 6.942624999855014, + 17.562091676531644, + 17.562091676531644, + 15.266820836540854, + 15.478420837173353, + 15.266820836540854, + 15.478420837173353, + 8.728423361115839, + 8.728423361115839, + 7.750708331853344, + 7.618683331453344, + 7.750708331853344, + 7.618683331453344, + 11.623326531004157, + 11.623326531004157, + 17.34248334442834, + 17.34248334442834, + 12.68805333535832, + 12.68805333535832, + 12.4334721664575, + 12.608284667027494, + 12.4334721664575, + 12.608284667027494, + 8.773489172656655, + 8.773489172656655, + 17.787533337265867, + 17.6607666661517, + 17.787533337265867, + 17.6607666661517, + 18.974316666666667, + 18.974316666666667, + 19.594762498860028, + 18.91359583238336, + 19.594762498860028, + 18.91359583238336, + 10.83343333887083, + 10.83343333887083, + 19.07229999995249, + 19.07229999995249, + 10.829593350915822, + 10.829593350915822, + 24.415970416666664, + 24.330246166666665, + 24.415970416666664, + 24.330246166666665, + 14.080140913333311, + 14.080140913333311, + 13.256233335740855, + 5.348875000745014, + 13.256233335740855, + 5.348875000745014, + 14.326887504984988, + 14.326887504984988, + 9.975489583100831, + 9.84473958323833, + 9.975489583100831, + 9.84473958323833, + 10.847778391208331, + 10.847778391208331, + 10.793995836350836, + 10.793995836350836, + 20.59224168343164, + 20.40517502150747, + 20.59224168343164, + 20.40517502150747, + 11.5835187524025, + 11.5835187524025, + 10.32129887007334, + 5.296008757883328, + 10.32129887007334, + 5.296008757883328, + 9.694074174424172, + 9.694074174424172, + 11.572887502955002, + 12.680304926763329, + 11.572887502955002, + 12.680304926763329, + 10.92946308461538, + 10.92946308461538, + 12.513305618875274, + 12.513305618875274, + 10.979717424425823, + 10.271317424568329, + 10.979717424425823, + 10.271317424568329, + 9.52977701427917, + 9.52977701427917, + 14.100986740423336, + 14.118461741278333, + 14.100986740423336, + 14.118461741278333, + 10.864783380945834, + 10.864783380945834, + 6.311949994735008, + 6.39832499495001, + 6.311949994735008, + 6.39832499495001, + 12.41048839021584, + 14.449002963544167, + 12.41048839021584, + 14.449002963544167, + 10.780513248643336, + 10.780513248643336, + 9.235308333475828, + 8.27250000004749, + 9.235308333475828, + 8.27250000004749, + 7.019741822307693, + 7.019741822307693, + 4.037281979999996, + 4.037281979999996, + 4.711450000095009, + 4.725500000202509, + 4.711450000095009, + 4.725500000202509, + 9.918908331375842, + 9.918908331375842, + 3.266500000095008, + 3.265000000095007, + 3.266500000095008, + 3.265000000095007, + 5.6760992692175, + 5.6760992692175, + 6.509524995260012, + 7.089887497075012, + 6.509524995260012, + 7.089887497075012, + 15.458075000199996, + 12.522750000400013, + 15.458075000199996, + 12.522750000400013, + 11.352893415904996, + 13.144414810985834, + 11.352893415904996, + 13.144414810985834, + 9.150536707039162, + 9.150536707039162, + 16.701100022985017, + 16.701100022985017, + 30.920845838123327, + 30.920845838123327, + 24.99856667356672, + 10.734786369999988, + 24.99856667356672, + 10.734786369999988, + 6.613575000384986, + 6.613575000384986, + 16.541143949109152, + 11.428036369999989, + 16.541143949109152, + 11.428036369999989, + 10.067888660162506, + 10.067888660162506, + 11.9189062531275, + 11.6209437537075, + 11.9189062531275, + 11.6209437537075, + 13.717062157942491, + 13.717062157942491, + 21.808370845023315, + 21.808370845023315, + 5.235149998732501, + 6.695168330870835, + 5.235149998732501, + 6.695168330870835, + 8.05186646507692, + 8.05186646507692, + 9.054824997724984, + 9.054824997724984, + 16.877150000427488, + 16.323383333808327, + 16.877150000427488, + 16.323383333808327, + 6.340749995150008, + 6.340749995150008, + 10.42876250151999, + 10.42876250151999, + 6.725774993015008, + 6.832149993415007, + 6.725774993015008, + 6.832149993415007, + 9.316350012637509, + 9.316350012637509, + 5.425200000259996, + 5.696325001865001, + 5.425200000259996, + 5.696325001865001, + 8.274274999995004, + 20.84420834272332, + 8.274274999995004, + 20.84420834272332, + 10.022200012392515, + 10.784875020132509, + 10.022200012392515, + 10.784875020132509, + 9.295708333225846, + 9.295708333225846, + 11.951820834703335, + 11.951820834703335, + 15.52785416972168, + 15.992804170936688, + 15.52785416972168, + 15.992804170936688, + 7.548502896333332, + 7.548502896333332, + 6.963190223530233, + 6.922883972190236, + 6.963190223530233, + 6.922883972190236, + 12.880502083805824, + 12.880502083805824, + 8.226866678333336, + 8.226866678333336, + 23.96410834262836, + 24.56987500920001, + 23.96410834262836, + 24.56987500920001, + 15.017059850000008, + 15.017059850000008, + 15.383150000100011, + 14.947966666766678, + 15.383150000100011, + 14.947966666766678, + 21.97768334023333, + 10.712591666666656, + 21.97768334023333, + 10.712591666666656, + 8.247246213380835, + 8.247246213380835, + 14.821908343700832, + 14.894908343558336, + 14.821908343700832, + 14.894908343558336, + 6.299174997100007, + 6.299174997100007, + 12.23097257799998, + 12.597859093333314, + 12.23097257799998, + 12.597859093333314, + 34.586412516289954, + 34.586412516289954, + 25.437478338123352, + 16.064177279999978, + 25.437478338123352, + 16.064177279999978, + 13.137541668146664, + 13.137541668146664, + 7.788149997197513, + 7.7972374993475135, + 7.788149997197513, + 7.7972374993475135, + 8.668009645076921, + 14.740909090047472, + 15.9556555708167, + 14.01588741081671, + 17.058175000332483, + 11.16914341128204, + 11.444130699743576, + 8.9499636407475, + 8.200862501092502, + 12.795766667954148, + 13.01589791790665, + 14.661325011417494, + 13.022445492410831, + 7.239681088375835, + 5.614782713888332, + 10.01349999996751, + 8.924688653062505, + 9.785950000072516, + 9.059000000072515, + 9.430825005240006, + 15.289833338028329, + 6.584853293019994, + 13.748902087630846, + 13.748902087630842, + 7.994916666521678, + 8.005991666521677, + 12.989534167557494, + 16.25235000067001, + 10.668975002880003, + 19.565837500637503, + 10.565555026332492, + 11.178088364123322, + 16.176808337563347, + 16.00968333756335, + 3.460263461538458, + 11.396175001604991, + 20.32736136563332, + 23.63325, + 23.893808333333325, + 8.173020000552503, + 8.364245002735, + 9.648448107080844, + 10.621494183976672, + 11.817326542658328, + 18.40607500301248, + 16.915641674326647, + 14.759612410816707, + 10.06033126519251, + 9.83180001298751, + 13.429262410816715, + 7.875180450881657, + 7.574811696016659, + 7.829550013247513, + 9.03188750046252, + 9.134320833723352, + 13.114059583260833, + 14.332258334190849, + 13.422333333590844, + 14.323025002917491, + 12.52502291772666, + 9.009465043100008, + 5.883508328478342, + 12.475095469807505, + 10.660689581385848, + 8.196539580513345, + 11.49597500020001, + 6.345420828145849, + 11.79697339645084, + 11.2150999999, + 12.329424998089994, + 11.71803333357084, + 9.717319166736669, + 9.958535833403332, + 4.989615546551665, + 6.954774995165005, + 6.900774995165005, + 15.837625021742502, + 22.99856666439417, + 10.194382074890836, + 11.783740426901648, + 11.572925000362495, + 11.372350000295006, + 13.48974166686667, + 19.42420000714252, + 17.74571667596169, + 5.258670832695839, + 18.40090628988252, + 16.570472945951675, + 11.99590228999999, + 12.064310471701669, + 11.680468796662506, + 5.161193179999994, + 18.659440153966656, + 23.9204278011578, + 22.941056250190023, + 23.009056250190024, + 9.804183760010009, + 6.488274994090008, + 11.891041666809178, + 7.386072917619167, + 8.048652086303337, + 7.111281253065003, + 9.667049588400836, + 9.766960004672503, + 9.68158750085751, + 18.95225000296498, + 15.583768947189151, + 20.28034166972665, + 12.677968754127503, + 9.239525794064171, + 9.643612165271676, + 9.458646690366674, + 11.03831319662944, + 17.475919454119424, + 8.81157670674, + 10.734131249415013, + 10.652956249605014, + 9.775615044300013, + 10.905390093167505, + 11.507790100042508, + 14.449990929232492, + 9.359035240524172, + 13.311777661011677, + 10.047926521354167, + 23.322425000677505, + 5.707879169161656, + 8.497173512802496, + 18.0607848523, + 14.715031251279996, + 21.95115000953748, + 21.95267500953748, + 11.611949998194998, + 8.381174999755, + 4.403975767454996, + 14.20641819004748, + 16.526245440047468, + 27.888655000000025, + 7.81410208356335, + 7.475702081240849, + 8.18840833796834, + 8.52884586336084, + 11.652867823076908, + 14.885259092869994, + 14.976909092965, + 10.638332721999996, + 15.690243180047467, + 9.43090833975834, + 7.154249996410005, + 7.016049995395005, + 11.798442426230828, + 9.069875003039996, + 9.286875002902496, + 9.79151875147249, + 9.603086531027763, + 8.575667782030271, + 15.080542426060816, + 15.282817426060817, + 9.466881263357507, + 12.903489583475825, + 7.219375019837503, + 10.81472916602418, + 10.908629166024182, + 11.236400005502494, + 10.581402082265846, + 10.556895832170849, + 6.525947913764169, + 7.406870262094171, + 7.406870262094171, + 17.394550002157526, + 20.414433335688383, + 5.990445821263341, + 11.567228414080832, + 11.620549999177513, + 11.493649999430009, + 6.187595826378347, + 9.481478361278326, + 11.445449168556658, + 11.417270002654996, + 17.468722916589158, + 14.14611458561832, + 24.73964166810168, + 11.307158337675844, + 16.555264583533322, + 11.661796963333328, + 5.379083334968329, + 10.120159091856658, + 11.22321462635333, + 15.929565280647765, + 16.120075757094142, + 18.72537500301248, + 9.611522287346942, + 21.12880833582332, + 24.63584166967913, + 11.31265902997777, + 6.008199994490009, + 13.432474999970005, + 10.033950007039998, + 12.775486280585303, + 7.243449998680002, + 7.111465148380834, + 6.572848359418334, + 18.2775958362508, + 16.193941671789148, + 16.789941674041653, + 10.179549586088344, + 12.301112502452495, + 17.516636667284157, + 17.15405333395082, + 10.001806677629174, + 9.658481677149174, + 24.27742499999998, + 14.196309090474982, + 20.301878334045817, + 11.65922708406083, + 9.801663644435004, + 16.165045453760825, + 7.1325700200175, + 6.983946267255004, + 17.149005217576672, + 5.98574999384501, + 7.676470834055848, + 9.844425001147496, + 9.041020005770006, + 22.17366250056002, + 21.136885417431667, + 16.196850000764993, + 12.654299998795, + 13.856099999129995, + 7.452900000217496, + 8.463012512889172, + 8.341130322967503, + 13.821518756214989, + 20.23572500460001, + 28.539149592533374, + 27.89934126150001, + 11.834624166734166, + 9.14042500000001, + 8.372374998999994, + 20.62955837952335, + 10.347153146382505, + 11.839696683948336, + 12.8732750068375, + 18.05923333358084, + 17.947069027872786, + 28.020740285485232, + 8.13296061166666, + 20.13031002597502, + 18.87231003057501, + 23.93335075709917, + 13.042064586393328, + 18.015150759109147, + 11.14652500043751, + 10.611720833865846, + 9.14398959123583, + 14.467879543380809, + 18.25653712014248, + 11.580226430512802, + 11.452312502129994, + 15.453425757094156, + 10.749166669089178, + 9.33653333358334, + 12.181450000427494, + 12.729175000379996, + 15.45200909268, + 10.296874999909996, + 8.735699996624998, + 11.722970834768336, + 12.210929168101664, + 8.978197916886696, + 8.337058332963359, + 11.026712413211731, + 8.294641666069182, + 7.703595833520851, + 8.77161249978, + 8.789987499577501, + 20.06055833371331, + 20.06410833371331, + 11.03940000134999, + 8.42227086030833, + 10.72739000677, + 17.788859203789162, + 16.557325016527496, + 13.815608334483338, + 9.547257501562523, + 10.290058338353342, + 10.427108339613344, + 9.656900010222492, + 9.518521555454152, + 7.406199999985002, + 9.309124999969995, + 9.85039999981, + 10.430906253345016, + 8.970724999050026, + 13.385080416784165, + 14.168343749020009, + 12.62761874915, + 11.308558348148324, + 21.24715000125003, + 19.96103750103252, + 8.705683342555824, + 14.079062930326677, + 14.069637931709176, + 10.321177273855014, + 10.885356440521685, + 13.802583333390828, + 9.56209999965251, + 10.703149999472508, + 15.594965013590013, + 21.45374169886668, + 17.56275000218001, + 12.017006259414996, + 17.591025000200013, + 16.918700000200012, + 7.231368196295829, + 5.948875000192496, + 18.65635001143249, + 13.735625006932487, + 7.139165136666662, + 16.567529033280277, + 3.599396946739166, + 10.966395842428334, + 21.19034166977416, + 12.807508334568327, + 21.33658750196001, + 21.219908336003343, + 9.709151511739158, + 15.022811558741653, + 8.396212272000003, + 5.348161359999991, + 3.426626650769228, + 13.15505453990498, + 15.486616669156644, + 10.054060159816087, + 8.188354371585959 + ], + "yaxis": "y" + } + ], + "layout": { + "autosize": true, + "legend": { + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "rgb(36,36,36)" + }, + "error_y": { + "color": "rgb(36,36,36)" + }, + "marker": { + "line": { + "color": "white", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "white", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "rgb(36,36,36)", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "rgb(36,36,36)" + }, + "baxis": { + "endlinecolor": "rgb(36,36,36)", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "rgb(36,36,36)" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "line": { + "color": "white", + "width": 0.6 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "rgb(237,237,237)" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "rgb(217,217,217)" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 1, + "tickcolor": "rgb(36,36,36)", + "ticks": "outside" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "rgb(103,0,31)" + ], + [ + 0.1, + "rgb(178,24,43)" + ], + [ + 0.2, + "rgb(214,96,77)" + ], + [ + 0.3, + "rgb(244,165,130)" + ], + [ + 0.4, + "rgb(253,219,199)" + ], + [ + 0.5, + "rgb(247,247,247)" + ], + [ + 0.6, + "rgb(209,229,240)" + ], + [ + 0.7, + "rgb(146,197,222)" + ], + [ + 0.8, + "rgb(67,147,195)" + ], + [ + 0.9, + "rgb(33,102,172)" + ], + [ + 1, + "rgb(5,48,97)" + ] + ], + "sequential": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "sequentialminus": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ] + }, + "colorway": [ + "#1F77B4", + "#FF7F0E", + "#2CA02C", + "#D62728", + "#9467BD", + "#8C564B", + "#E377C2", + "#7F7F7F", + "#BCBD22", + "#17BECF" + ], + "font": { + "color": "rgb(36,36,36)" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "white", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "white", + "polar": { + "angularaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "bgcolor": "white", + "radialaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "yaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "zaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + } + }, + "shapedefaults": { + "fillcolor": "black", + "line": { + "width": 0 + }, + "opacity": 0.3 + }, + "ternary": { + "aaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "baxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "bgcolor": "white", + "caxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside", + "title": { + "standoff": 15 + }, + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "yaxis": { + "automargin": true, + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside", + "title": { + "standoff": 15 + }, + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + } + } + }, + "xaxis": { + "anchor": "y", + "autorange": true, + "domain": [ + 0, + 1 + ], + "range": [ + "2014-12-31", + "2023-12-08" + ], + "title": { + "text": "date_acquired" + }, + "type": "date" + }, + "yaxis": { + "anchor": "x", + "autorange": true, + "domain": [ + 0, + 1 + ], + "range": [ + 1.5249215269730652, + 36.326490989411894 + ], + "title": { + "text": "predictions" + }, + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABWUAAAFoCAYAAAA/wpnnAAAAAXNSR0IArs4c6QAAIABJREFUeF7snXWAVNX7xl+6u7sWlu7uThFFURRMBPErKgYhS3dYWCiKgaIgNtLdsHTX0i2dS/P7PWc562WZnZ2Ze2fmzszz/kPsPeee87l3Z+59znueN9Hdu3fvCoMESIAESIAESIAESIAESIAESIAESIAESIAESIAESMAnBBJRlPUJZ56EBEiABEiABEiABEiABEiABEiABEiABEiABEiABBQBirK8EUiABEiABEiABEiABEiABEiABEiABEiABEiABEjAhwQoyvoQNk9FAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRleQ+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgA8JUJT1IWyeigRIgARIgARIgARIgARIgARIgARIgARIgARIgAQoyvIeIAESIAESIAESIAESIAESIAESIAESIAESIAESIAEfEqAo60PYPBUJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJTlPUACJEACJEACJEACJEACJEACJEACJEACJEACJEACPiRAUdaHsHkqEiABEiABEiABEiABEiABEiABEiABEiABEiABEqAoy3uABEiABEiABEiABEiABEiABEiABEiABEiABEiABHxIgKKsD2HzVCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAUZb3AAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAn4kABFWR/C5qlIgARIgARIgARIgARIgARIgARIgARIgARIgARIgKIs7wESIAESIAESIAESIAESIAESIAESIAESIAESIAES8CEBirI+hM1TkQAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkABFWd4DJEACJEACJEACJEACJEACJEACJEACJEACJEACJOBDAhRlfQibpyIBEiABEiABEiABEiABEiABEiABEiABEiABEiABirK8B0iABEiABEiABEiABEiABEiABEiABEiABEiABEjAhwQoyvoQNk9FAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRleQ+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgA8JUJT1IWyeigRIgARIgARIgARIgARIgARIgARIgARIgARIgAQoyvIeIAESIAESIAESIAESIAESIAESIAESIAESIAESIAEfEqAo60PYPBUJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJTlPUACJEACJEACJEACJEACJEACJEACJEACJEACJEACPiRAUdaHsHkqEiABEiABEiABEiABEiABEiABEiABEiABEiABEqAoy3uABEiABEiABEiABEiABEiABEiABEiABEiABEiABHxIgKKsD2HzVCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAUZb3AAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAn4kABFWR/C5qlIgARIgARIgARIgARIgARIgARIgARIgARIgARIgKIs7wESIAESIAESIAESIAESIAESIAESIAESIAESIAES8CEBirI+hM1TkQAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkABFWd4DJEACJEACJEACJEACJEACJEACJEACJEACJEACJOBDAhRlfQibpyIBEiABEiABEiABEiABEiABEiABEiABEiABEiABirK8B0iABEiABEiABEiABEiABEiABEiABEiABEiABEjAhwQoyvoQNk9FAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRleQ+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgA8JUJT1IWyeigRIgARIgARIgARIgARIgARIgARIgARIgARIgAQoyvIeIAESIAESIAESIAESIAESIAESIAESIAESIAESIAEfEqAo60PYPBUJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJTlPUACJEACJEACJEACJEACJEACJEACJEACJEACJEACPiRAUdaHsHkqEiABEiABEiABEiABEiABEiABEiABEiABEiABEqAoy3uABEiABEiABEiABEiABEiABEiABEiABEiABEiABHxIgKKsD2HzVCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAUZb3AAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAn4kABFWR/C5qlIgARIgARIgARIgARIgARIgARIgARIgARIgARIgKIs7wESIAESIAESIAESIAESIAESIAESIAESIAESIAES8CEBirI+hM1TkQAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkABFWd4DJEACJEACJEACJEACJEACJEACJEACJEACJEACJOBDAhRlfQibpyIBEiABEiABEiABEiABEiABEiABEiABEiABEiABirK8B0iABEiABEiABEiABEiABEiABEiABEiABEiABEjAhwQoyvoQNk9FAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRleQ+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgA8JUJT1IWyeigRIgARIgARIgARIgARIgARIgARIgARIgARIgAQoyvIeIAESIAESIAESIAESIAESIAESIAESIAESIAESIAEfEqAo60PYPBUJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJTlPUACJEACJEACJEACJEACJEACJEACJEACJEACJEACPiRAUdaHsHkqEiABEiABEiABEiABEiABEiABEiABEiABEiABEqAoy3uABEiABEiABEiABEiABEiABEiABEiABEiABEiABHxIgKKsD2HzVCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAUdbEPVC0aFHZs2ePiR7YlARIgARIgARIgARIgARIgARIgARIgARIgARIINQIUJQ1ccUpypqAx6YkQAIkQAIkQAIkQAIkQAIkQAIkQAIkQAIkEKIEKMqauPAUZU3AY1MSIAESIAESIAESIAESIAESIAESIAESIAESCFECFGVNXHiKsibgsSkJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJhCgBirImLjxFWRPw2JQESIAESIAESIAESIAESIAESIAESIAESIAEQpQARVkTF56irAl4bEoCJEACJEACJEACJEACJEACJEACJEACJEACIUqAoqyJC09R1gQ8NiUBEiABEiABEiABEiABEiABEiABEiABEiCBECVAUdbEhacoawIem5IACZAACZAACZAACZAACZAACZAACZAACZBAiBKgKGviwlOUNQGPTUmABEiABEiABEiABEiABEiABEiABEiABEggRAlQlDVx4SnKmoDHpiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiQQogQoypq48BRlTcBjUxIgARKwOYFL127J4XNXpWSu9DYfKYdHAiRAAiRAAiRAAiRAAiRAAiQQaAQoypq4YhRlTcBjUxIgARKwOYFyg+bIheibMufNulIsRzqbj5bDIwESIAESIAESIAESIAESIAESCCQCFGVNXC2KsibgsSkJkAAJ2JxAmYGzBdmyXzxTSZqXymnz0XJ4JEACJEACJEACJEACJEACJEACgUSAoqyJq0VR1gQ8NiUBEiABmxPQomyv5sXllfpFbD5aDo8ESIAESIAESIAESIAESIAESCCQCFCUNXG1KMqagMemJEACJGBzAqUHzJbL12/JE5XzyejHy9p8tBweCZAACZAACZAACZAACZAACZBAIBGgKGvialGUNQGPTUmABEjA5gRK9Z8lV27clsoFM8mvXWvafLQcHgmQAAmQAAmQAAmQAAmQAAmQQCARoChr4mpRlDUBj01JgARIwOYEtCibJU1yWdevic1Hy+GRAAmQAAmQAAmQAAmQAAmQAAkEEgGKsiauFkVZE/DYlARIgARsTqBk/1ly9cZtNcqtg5pJ2hRJbT5iDo8ESIAESIAESIAESIAESIAESCBQCFCUNXGlKMqagMemJEACJGBzAiX6zZLomzGi7F/dakm5vBltPmIOjwRIgARIgARIgARIgARIgARIIFAIUJQ1caUoypqAx6YkQAIkYHMCRlH2oyfLyyMV8th8xBweCZAACZAACZAACZAACZAACZBAoBCgKGviSlGUNQGPTUmABEjA5gSK95sp127eUaN8vVFReatJMZuPmMMjARIgARIgARIgARIgARIgARIIFAIUZU1cKYqyJuCxKQmQAAnYnEB435ly/VaMKNu6XG755KkKNh8xh0cCJEACJEACJEACJEACJEACJBAoBCjKmrhSFGVNwGNTEiABErA5AaMoWyp3epn+eh2bj5jDIwESIAESIAESIAESIAESIAESCBQCFGVNXCmKsibgsSkJkAAJ2JyAUZRNniSx7B7WwuYj5vBIgARIgARIgARIgARIgARIgAQChQBFWRNXiqKsCXhsSgIkQAI2J1AsYqbcuB1jX4CIjGgs2dOlsPmoOTwSIAESIAESIAESIAESIAESIIFAIEBR1sRVoihrAh6bkgAJkIDNCehM2eI508nOE5dkyss1pFqhzDYfNYdHAiRAAiRAAiRAAiRAAiRAAiQQCAQoypq4ShRlTcBjUxIgARKwOYGCvaerEbYsk0tmbDkuI9uWlfZV89l81BweCZAACZAACZAACZAACZAACZBAIBCgKGviKlGUNQGPTUmABEjA5gS0KPtaw6LyyYI90qVuYenTsoTNR83hkQAJkAAJkAAJkAAJkAAJkAAJBAIBirImrhJFWRPw2JQESIAEbE5Ai7IfPlle3pyyUZqUzCFfPVvZ5qPm8EiABEiABEiABEiABEiABEiABAKBAEVZE1eJoqwJeGxKAiRAAjYnoEXZv7rVkjafLpewbGll3tv1bD5qDo8ESIAESIAESIAESIAESIAESCAQCFCUNXGVKMqagMemJEACJGBzAlqU3TywmZQdOFuN9sDIVjYfNYdHAiRAAiRAAiRAAiRAAiRAAiQQCAQoypq4ShRlTcBjUxIgARKwOQEtykKIrTJ0npy6fF0W92ggBbKktvnIOTwSIAESIAESIAESIAESIAESIAG7E6Aoa+IKUZQ1AY9NSYAESMDmBAq9O13u3hXZN6KVtB+/UiL3n5VvX6gqDcKz2XzkHB4JkAAJkAAJkAAJkAAJkAAJkIDdCVCUNXGFKMqagMemJEACJGBzAjpTdv+IVvLuH5tlcuRh6d+6pLxYq5DNR87hkQAJkAAJkAAJkAAJkAAJkAAJ2J0ARVkTV4iirAl4bEoCFhL4auk++WbZfnmsYl55p1m4hT2zq1AmYBRlcY8Nn7FDnqleQIY8UjqUsXDuJEACJEACJEACJEACJEACJEACFhAICVE2KipKOnXqJMeOHVPIWrduLcOGDZNUqVKpf0dHR0tERIRMmzZN/Xv48OHSrl27BPFSlE0QEQ8gAZ8Q6P17TBZjlYKZZWrXGj45J08S/ASMnrJzt5+UzhPXSq2wrDLppWrBP3nOkARIgARIgARIgARIgARIgARIwKsEQkKUnTp1qhQoUECqVq2qYI4ZM0b92aNHjwf+ffbsWenSpYv07Nkz9vj4rgBFWa/em+ycBFwm0H3KRvlzw1FJkTSxbBvcXJImTuRyWx5IAvERMIqyUacuS+P3F0vujCllRe9GhEYCJEACJEACJEACJEACJEACJEACpgiEhCgblxBE2pUrV6psWWTJQoDt3bu3hIWFORRtKcqausfYmAS8TuCVH9fJzK0n1Hl+/18tqZg/o9fPyRMEPwGjKHv7zl0pGjFD7twV2TW0hVoAYJAACZAACZAACZAACZAACZAACZCApwRCTpTVVgW5cuVSmbKwNujVq5eMGjUqVpQ1irba4sARYGbKenrbsR0JWEvghe/WyMKd/6pOI1qVkM51Clt7AvYWcgTu3hUp9O50Ne8DI1upP+uOXiiHzl6VWd3rSvGc6UKOCSdMAiRAAiRAAiRAAiRAAiRAAiRgHYGQEmVhWzB+/Pj7PGUhyo4cOVJGjx4tmTNnVmQdibLffffdA9SRabtnzx7rrgZ7IgES8IjA01+tkhV7z6i2zUvllC+eqeRRP2xEApoAMmILvztdEiUS2T8iRpR94dtIWbjrlIzrWElalM5JWCRAAiRAAiRAAiRAAiRAAiRAAiTgMYGQEmU1JaPoevToUZcyZSdNmvQA5IEDB1KU9fjWY0MSsI5A23ErZP3Bc6rDjKmTycb+Ta3rnD2FJAFHouzgadvlm+X7pUezcHm1QYzdDYMESIAESIAESIAESIAESIAESIAEPCEQkqKsMTsW0Ogp68mtwzYkYB8CrT5eKtuOXYwd0OIeDaRAltT2GSBHEnAE4CFbpM8MQc24ffcyZX9YdVD6/blVHq+UV95rVy7g5sQBkwAJkAAJkAAJkAAJkAAJkAAJ2IdASIiy48aNkyZNmtxXyOv48eOq0Bc8Y2FrgIDH7NmzZ6VLly5KqK1atarTK0VPWfvcyBxJaBNo/MFiifr3soRlSytRpy7LB0+Ul7YV84Q2FM7eFIFbd+5KWJ8ZkiRxItk7vKXqa3nUaenw9WqpWCCT/P5KTVP9szEJkAAJkAAJkAAJkAAJkAAJkEBoEwgJUTYyMlI6dOgQe6Vbt24dK8jiP3Xxr2nTpqljhg8fLu3atUvwzqAomyAiHkACPiFQZ9QCOXwuWp6tUVAmrjwgT1fLL8MfLeOTc/MkwUnAkSh77Pw1qTlyvmRKnUw20CIjOC88Z0UCJEACJEACJEACJEACJEACPiIQEqKst1hSlPUWWfZLAu4RqDJsnpy6dF3GP1tZukxcK8VypJM5b9Z1rxMeTQIGAjdv35WiETMkaeJEEnUvUxY/LhYxU27cviNbBzWTtCmSkhkJkAAJkAAJkAAJkAAJkAAJkAAJeESAoqxH2GIaUZQ1AY9NScBCAmUHzpaL126p7MUKg+eonimaWQg4BLuC8AoBNlmSRLJnWIx9AaLF2CWy4/gl+ePVWlIhX8YQJMMpkwAJkAAJkAAJkAAJkAAJkAAJWEGAoqwJihRlTcBjUxKwkEB435ly/dYdOTCylTz+xQpZe+CcfPtCVWkQns3Cs7CrUCKA+wn3VfIkiWX3sBaxU//fpPUyY8tx+haH0s3AuZIACZAACZAACZAACZAACZCAFwhQlDUBlaKsCXhsSgIWEijYe7rqDaLsqFk7ZdyivdKtQZi80yzcwrOwq1AiEJ8o+97sXfLpwijp1jBM3mnK+yuU7gnOlQRIgARIgARIgARIgARIgASsJEBR1gRNirIm4LEpCVhE4NrNO1K830xJkTSx7BraQubv+Fc6fb9GqhfOIpO7VLfoLOwm1AhoUVbfV3r+v60/Im//sklalc0lnz1dMdSwcL4kQAIkQAIkQAIkQAIkQAIkQAIWEaAoawIkRVkT8NiUBCwicCH6ppQbNEcypk4mG/s3lfNXb0r5wXMkVbIksmNIc4vOwm5CjYAWZVMmSyw7h/xnX7Dx8Hl55LPlUip3epn+ep1Qw8L5kgAJkAAJkAAJkAAJ3CMwdv4eWbn3jLzeqKjULJKFXEiABEjAbQIUZd1G9l8DirIm4LEpCVhE4MTFa1J9+HzJni6FREY0Vr02fn+xRJ26LH91qyXl8rIYk0WoQ6qbuBnYevKXr9+S0gNmP+A1G1JwOFkSIAESIAESIAESIAG1Ow+79Ma2ryBtyucmERIgARJwmwBFWbeRUZQ1gYxNScByAgfPXJV6YxZK/sypZUnPBqr/Xr9tlilrDku/h0pKp9qFLD8nOwx+AtE3b0uJfrMkbqYsZl5h8Bw5d/WmrOrTSHKmTxn8MDhDEiABEiABEiABEiCBBwh0+Hq1LI86TVGW9wYJkIDHBCjKeoxOhJmyJuCxKQlYRGDXiUvS7KMlUjRHWpn7Zj3V69R1R6TH1E3SonROGdexkkVnYjehRODqjdtSsv8shzYYbcetkPUHz8lPnatzq1oo3RScKwmQAAmQAAmQAAkYCDw2boWsO3jOElF20a5TApuseuHZpEI+7vTjjUYCoUKAoqyJK01R1gQ8NiUBiwhsOXpBWn+yTNkUwK4AobNns6VLIWvuWRpYdDp2EyIEdKZs6uRJZPvg+72JIfhD+B/2aBnpUC1/iBDhNEmABEiABKwm8NL3awW2OF8/V1nSpkhqdffsjwRIwMsEHvpkmWw9ekHGti8vbcrnMXW2iD+2yKTVhySiZQnpXLewqb7YmARIIHAIUJQ1ca0oypqAx6YkYBGByP1n5YkvV0rlgpnk1641Y3tFsS8U/Vras4Hky5zaorOxm1AhcOXGbSnVf5Y4EmU/WxglY2bvkpfqFJK+rUqGChLOkwRIgARIwGICZQbOlkvXbsmavo0lW9oUFvfO7kiABLxNQNexGNG2jDxV1dxC/Vu/bJTf1x+Vd5qFS7cGYd4eOvsnARKwCQGKsiYuBEVZE/DYlAQsIrB0z2l5ZsJqqR2WVX58qVpsry//sE5mbzshHz1ZXh6pYG7l2qKhspsAIqALeqVJnkS2xcmUnbn1hLzy4zppWDy7fPN8lQCaFYdKAiRAAiRgJwJY/MMi4Mp3G0muDPQot9O14VhIwBUCtUYukKPnoy2pY9Htp/Xyz+bj8kajovJmk2KunJ7HkAAJBAEBirImLiJFWRPw2JQELCIwd/tJ6TxxrTQqkV0mPPefQPbVkn0ybMYO6Vi9gAx9pLRFZ2M3oULAmSi788Qlaf7REimUNY0sfKd+qCDhPEmABEiABCwmAO9yeJhzV4/FYNkdCfiIQKUhc+XMlRuWZLfifQbvNf+rX0R6Ni/uoxnwNCRAAv4mQFHWxBWgKGsCHpuSgEUEsKKMleVWZXPJZ09XjO11/aHz0vbz5VI8ZzqZ1b2uRWdjN6FCANtJsa0UHn9bBzW7b9rXb92R8L4zJXEikT3DWkoS/IVBAiRAAiRAAm4SKNFvlsDDfME79aVw1jRutubhJEAC/iags91fbRAmPZqFmxrOc99EyuLdp6RzncIS0aqEqb7YmARIIHAIUJQ1ca0oypqAx6YkYBGBX9cdkXembpK2FfPIB0+Uj+311p27yhP0xu07smVgMxbQsIh3qHRz8dotKTtwtqRLmVTdP3FDb1dDpiwyZhkkQAIkQAIk4C4BLPBhoW9297oSnjOdu815PAmQgJ8JFH53uty5K/JirULSv7W5OgPtx6+SVfvOyHM1C8qgh0v5eWY8PQmQgK8IUJQ1QZqirAl4bEoCFhH4cdVB6fvnVnm6Wn4Z/miZ+3pFATAUAvv+xapSr1g2i87IbkKBQEKibMevV8uyqNPKUxbesgwSIAESIAEScJeAFmWnv15HSuVO725zHk8CJOBHAkgACeszQ40ARb5Q7MtMYIcfdvo5eqcx0y/bkgAJ2JsARVkT14eirAl4bEoCFhGYsGy/DPlnu7xQq6AMaH3/qvLoWTvl80V75bWGReXtpjTMtwh5SHRzMfqmlB00R9KnTCqbHWTK9v9rq0xceVD6tiopL9UpFBJMOEkSIAESIAFrCRSNmCE3b9+VP1+tJeXzZbS2c/ZGAiTgVQK6/gBO0qZ8Hhnb/r8de56cuNXHS2XbsYvSrlJeGdOunCddsA0JkEAAEqAoa+KiUZQ1AY9NScAiAp8tjJIxs3fJK/WLSK84pvgLdv4rL363RmoWySI/da5u0RnZTSgQuBB9U8pBlE2VTDYPaPrAlL9dfkAGTdsmHarll2FxMrRDgQ/nSAIkQAIkYJ4AsuyQbfdr15pSuWAm8x2yBxIgAZ8ROH35hlQeOledr1mpnPLlM5VMnbvxB4sl6t/Llgi8pgbCxiRAAj4lQFHWBG6KsibgsSkJWETgg7m75eP5e+TNJsXkjUZF7+tVr2CnSJpYdgxpoQozMUjAFQIJibKLdp2S57+NpODvCkweQwIkQAIk4JBAkT4z5Padu/Jzl+pSo3AWUiIBEgggAofPRUudUQvUiOsWzSYTO1U1Nfo6oxfK4bNXpWWZXPJ5h/+KF5vqlI1JgARsT4CirIlLRFHWBDw2JQGLCAyfsUPGL9knvVsUl671ijzQq151/ue12lI6TwaLzspugp3A+as3pfzgOZIhVTLZ5CBTFg/NeHjOmT6lrOrTKNhxcH4kQAIkQAJeIFDo3ely964oMQeiDoMESCBwCCCrFe8ZCGS6I+PdTFQbPl9OXrwmTUrmkK+erWymK7YlARIIIAIUZU1cLIqyJuCxKQlYRGDA39vk+xUHZODDpeT5mgUf6LX375tlcuTheH9u0TDYTZAROHf1plQYPEcypk4mG/s/aF+A6eqKu7uGthBkYzNIgARIgARIwB0CBXtPV4ezaKQ71HgsCdiDwNajF+ShT5apwaBQHwr2mQkkAyApoH54NvnuBXNZt2bGwbYkQAK+JUBR1gRvirIm4LEpCVhEoNdvm2XKmsOq4ikqn8aN39Yfkbd/2SQPlc0lnz7NrUAWYQ/6blwRZXUW9ow36kjJXKyaHfQ3BSdIAiRAAhYT0KIsvCjhSckgARIIHAJrD5yTx79YoQZcJFsamf92fVODL9l/lly9cZvWWKYosjEJBB4BirImrhlFWRPw2JQELCLQfcpG+XPDUfnwyfLyaIU8D/R68MxVqTdmoWRPl0IiIxpbdFZ2E+wEzl65IRWHzJVMqZPJhngyZbtMXCtztp+Uz56uKK3K5gp2JJwfCZAACZCAhQRgWwD7AgS/RywEy65IwEcElkWdlo5fr1Zny5Uhpax815ydlfaYtsIKwUcIeBoSIAELCFCUNQGRoqwJeGxKAhYR6PrjOpm19YQyxIcxvqPQ24GW924oeTKmsujM7CaYCZy5ckMqDZkrmdMkl/X9mjic6oiZO+XLxXvlnaY4U0FQAAAgAElEQVTh0q1hWDDj4NxIgARIgAQsJnDn/71kYYODGNu+vKq4ziABEggcAvN2nJSXvl+rBuzM7srVGenM+XJ5M8pf3Wq52ozHkQAJBDgBirImLiBFWRPw2JQELCLwwreRsnDXKad+bF1/WCeztp2Qse0rSJvyuS06M7sJZgKuiLK/rD0sPX/dLI9XyivvtSsXzDg4NxIgARIgAYsJ3LpzV8L6zFC94jsE3yUMEiCBwCHwz+bj0u2n9WrAqC2AGgOeRvTN21Ki3yzVHJZYsMZikAAJhAYBirImrjNFWRPw2JQELCLw9FerZMXeMzLppWpSKyyrw16/WrpPhk3fIc/WKCCD25S26MzsJpgJnL58QyoPnStZ0iSXdfFkykLoh+DfvFRO+eKZSsGMg3MjARIgARKwmMDN23elaESMKBufL77Fp2R3JEACFhKYuu6I9Ji6KbbHAyNbedz7heibUm7QHNU+LHtamfdWPY/7YkMSIIHAIkBR1sT1oihrAh6bkoBFBNp+vlzWHzovv71SUyoVyOSw1w2Hz8ujny3nyrNFzEOhm1OXr0uVofMka9rksravY/sC+MnCV7ZpyRwy/tnKoYCFcyQBEiABErCIwI3bd6RYxEzVGxaMsXDMIAESCBwCP6w6KP3+3Bo74O2Dm0vq5Ek8msC/l65L1WHzVNsCWVLL4h4NPOqHjUiABAKPAEVZE9eMoqwJeGxKAhYRaPXxUtl27KL881ptKZ0nQ7y9ap8mM6vYFg2Z3QQAAVdE2bnbT0rniWulSckc8hVF2QC4qhwiCZAACdiHwPVbdyS8b4wo2791SXmxViH7DI4jIQESSJCA3omnD8QiPhbzPYnDZ69KndELVdPcGVPKit7mioZ5Mga2IQES8A8BirImuFOUNQGPTUnAIgKN3l8ke09dUdt8sN0nvijZf5ZcvXFbtg1uLmk8XMW2aMjsJgAInLp0XaoMmyfZ0qaQNX0bOxyxLvDQuEQO+fo5ZsoGwGXlEEmABEjANgSu3bwjxfvFiLJ9WpaQLnUL22ZsHAgJkEDCBD5dECXvzdkVe+DSXg0lXybPCgpHnbosjd9frPpy9uyZ8Kh4BAmQQKAR8LooO2bMGDl+/LgMGzZMsYmIiJBp06ZJ7ty5ZcKECRIWFrgVqynKBtrtzvEGI4HaoxbIkXPRsrRnA8mXOXW8UyzVf5ZcuXFbtg5qJmlTJA1GFJyThQT0NrJs6VLImgjHouz8Hf9Kp+/XSKMS2WXCc1UsPDu7IgESIAESCHYCWCjGgjGiR7NwebVB4L4TBfu18vX8uv64TnYcvyhDHykjdYo6rpfg6zHxfA8SeG/2Lvl0YVTsD+a+WU+K5og/QcQZQ+z6w+4/RIZUyWTTgKZETgIkECIEvCrKnj17Vrp06SI9e/aUqlWrSmRkpEyePFkJtFu2bIn9e6pUnq0o+fsaUZT19xXg+UlAlO8ntpojmxEry/FF2YGz5eK1WxRlQ+im2XTkvIyYsVPK5MkgEa1KuDVznSmbI31KWd3H8RayhbtOyQvfRlKUdYssDyYBEiABEgABoyj7VpNi8nqjogRDAopAkw8Xy56Tl+WjJ8vLIxXyWEIFHvjwwofdEmyXGOYJoIgwLAx0/N2ttpTNG7+VmrMzbjx8Xh75bLk6BDv6sLOPQQIkEBoEvC7KQpDt3bu3yohF1iyiR48eEhUVJSNHjpTRo0dL5syZA5I2RVl7X7bPFkbJ0j2nVeYBV5ntfa3MjE6LrZsHNpP0KePPgNXHbRnYTNI5Oc7MWNjWXgRmbj0hr/y4TmoWySI/da7u1uB0pmzO9CllVQKibMPi2eWb55kp6xZgHkwCJEACIU4Au3ewiwfxWsOi8nbTYiFOhNPXBOA1DM9hb4iyKEyKAqUM8wRQ5AvFvnRMebmGVCvkma6xev9ZefLLlbF9sQaG+evDHkggUAh4VZSNjo5WdgXt27dXomzcrFkIsuPHj6coGyh3S4CN89Wf1sv0zcfl/SfKyWMV8wbY6DlcVwnoB9eEHl7KDpojF6NvCkVZV8kG/nG/rD0sPX/dLNULZ5HJXdwTZU9evCbVhs8XZ6Ls4t2n5LlvIqVB8ezyLUXZwL9hOAMSIAES8CGBS9duSZmBs9UZu9YrIr1bFPfh2XkquxLQO3UwPm+Isl8+U0malcrpl+n3/2ub7D55SYa0Ke3xNn+/DDyek/aYukmmrjsS+9PvXqgq9cOzeTREJBI9M2E1RVmP6LERCQQ2Aa+KskCDjNhOnTrJsWPHlCiLLFlta1CtWjX170ANZsra+8q9+N0aWbDzXxn9eFl5onI+ew+Wo/OYQMHe01XbBEXZe/YFmwc0lfSpknl8PjYMHAITlu2XIf9sl6qFMssvL9dwa+DHL1yTGiNcE2XrFcsm379Y1a3+eTAJkAAJkEBoE8BCMRaMEZ1qF5J+D5UMbSCcvSKw5sBZafdFTMbkh0+Wl0ctsi946fu1ggKlX3SsJM1L+0eUbfv5cll/6Lz82rWmVC6YKeCvuE4A0hP5vENFaVkml0fzmrv9pHSeuDa27Z5hLSVZkkQe9cVGJEACgUXA66JsYOFwb7QUZd3j5eujO3y9WpZHnZZRj5eVJynK+hq/T84XffO2lOg3S1IkTSy7hrZwek6dKQvjfBjoM4KfwNj5e+TDubvVgz9eANwJV0TZJXtOybMTIqVu0WwysRNFWXf4Bsuxs7adkJ3HL0nTUjmkZK70wTItzsNHBEbO3Cl/bDgq7avkkzebcOu6j7Db5jTnr96U8oNjRNlnaxSUwW1K2WZsHIj/CPy2/oi8/csmNQBviLLjOlaSFn4WZbFQjgXzQA8tdGdMnUzw+/zBE+WlbUXPPICxuxMir47tg5tL6uRJ4kU0eNp22X78osqwL58vY6Cj5PhJIKQJUJQ1cfkpypqA54Omj3+xQtYeOCejHisrT1ZhpqwPkPv8FOeu3pQKg+e4VKW03KA5ciH6pmzs31Tw8MQIfgK6AEOlApnkt1fcE2WPnb8mNUfOl1wZUsrKdx0X+tJbzeBZ/UOnasEPlDN8gMAbkzfKXxuPSs/mxeV/9YuQEAm4RUB7naNI5co+jSRpYmZFuQUwwA/WzzCYxtPV8svwR8sE+Iw4fCsIfDB3t3w8f4/XRFkz2Zxm56czZc14r5odg5XtO369WpZFnZbCWdPIvtNXZOgjpaVj9QIeneL39UflrV82xrZNKImk+UdLZOeJS/LZ0xWlVVnPsnM9GigbkQAJWE7A66KstirYtClmxc8Y5cqVo6es5ZeUHWoCbT5dLqi+PrJtWWlflaJsMN4Zrvh+6nlDvMULEEXZYLwTHM+pzx9b5KfVh6RigUzyu5uirM6UzZMxlSzv3dDhCZCJj4x8irKhc0/FnSm2GmLL4TPVC8iQR0qHLgjO3G0C245dlFYfL41t9+nTFeUhvli7zTGQG5y9ckMqDpmrpoAdXdjZxSCBN6dsVBn0CG94yvpVlB23QtYfPCfBIsrqBCA8Z2JeEa1KSOc6hT26iaesOSy9ftsc23ZN38aCBbv4AhZbeFalTZ9HuNmIBGxFwOui7JgxY9SEA9k7Nr4rxkxZW93LDwym2UdLZNeJSyrzABkIjOAjcODMVak/ZqHkz5xalvRs4HSC2CKIrUUb+jeVTMyUDb6bwcGMXvt5g0zbdEwq5Msof7xay605Hz0fLbVGLpDcGVPKit6OM2W1KFuzSBb5qbN7hcTcGgwPti0B/T2Dwh4o8MEgAVcJjFu0V0bN2hl7uCc2K66ei8fZk8Dpyzek8tAYUfaRCnmUAMcggbb3hEuQ8IZ9wSdPVZDW5XL7BbTOlMUzE56dAj0e+mSZbD16QRqVyC7zd/wrbzctJq81LOrRtL5fcUAG/L0tti0SApAYEF8U7zdTrt28I31blZSX6hTy6JxsRAIkYA8CXhVlkSXbs2dP6d27t4SFhdljxhaOwijKrtx3RhJJIqleOPD9cSxE5NeuINZBtDOzlcSvE+DJEyQA0R2iSNEcaWXum/WcHq8zZdf3ayKZ0yRPsG8eEPgEXvg2UhbuOiXl8maUv7q5J8oeORcttUctUA/E8WXKrth7Rp7+apV6saAoG/j3iyczCO87U67fuiNh2dPKvLecfwZ50j/bBC8BfHbgM2Rs+/IS8cdWuXz9lvoew/cZwzsE8MwA0aNYjrQyuI3/M9tPXb4uVYbOU5NFljSypRkkAKEegj3CG6Lsx09VkIcpylpyozX+YLFE/XtZ2lXKK1PXHZFX6heRXs2Le9T3V0v2ybAZO2LbLurRQApmSe2wLzx34PkD0b1xMene2DMh2KOBshEJkIDlBCjKmkCqRdmbt+9K0YgZqqeETLlNnI5N3SSgt3VgSym2ljKCjwDsKWBTUSZPBpn2Wm2nE8QWQWwVXNeviWShKBt8N4ODGeltZa7cH3GbHz4XLXVGLZC8mVLJsl6O7QuwGPfU+FVSo3AW+bkLM2VD4qYyTNJYpMeVYoOhxofzdU6gYO/p6oDNA5rKR/P2yDfL99NX1Ms3jd7d4MnuCW8M7dSl61JlWIwo27xUTvnimUreOA37DCACRrENw/aGKDu2fQVpU96/mbI/vlRNaodlDaAr43ioWLzHIn6XuoVl/JJ98nzNgjLwYc8K9n26IErem7Mr9kTOFun+vXRdqt777ECWLLJlGSRAAoFLwKuiLLDAvqBgwYLSrl27wKUUz8i1KGv8Al3aq6HkyxT/VoOgg2DjCWkRDtVsUdWWEXwEIveflSe+XCmubPusNGSunLlyQ9b2bSJZ0zJTNvjuhgdnpIsglM6TQf5JQLSP29oVUXbVvrPSfvxKqV44i0ymKBsKt9R9c8SWRWxd1EFrFPvfAhF/bJHFu0/Jm02KyWMV8/ptwBjDc99EStm8GeTvbrXl8NmrUmf0QkmZLLHsHNLCb+MK9hMv2PmvvPjdGo8sbbzBRvvio29sf57wXBVvnIZ9BhABvQNMD9k7omx5aVM+j1+oaPsCFEeFH3+gh85qRnYs7GhQWBoFpj2J9+fslk8WxBR4Q0x/vY6Uyp3eYVe7T16Sph8uUT9D3RTUT2GQAAkELgGvi7JRUVHyww8/KAuDVKmCS6zUouzVG7elZP9Z6i7AwzUeshn+J1Cq/yy5cuO2DHq4lDz3/yuXjOAjsGTPKXl2QqRabcequ7PQD04JGecHH6XQnZHOYMBDLR5u3QktkmCRDYttjmL1/rPy5JcrpVqhzKpoBSO0CMzaekK6/rgudtIQ/rEAwLAvARTWQoEteP7B+89fMXT6dvl66X55tUGY9GgWroahM2f3j2gliRL5a2TBfd6ZW0/IKz+us40oe+LiNak+fL6CXq9YNvn+RfpSB/cdmPDs5mw/KV0mro090BuirJXFwxKe0f1HaFEW9zru+UCP0gNmK+sZCLEo0gVbCNhDeBLDZ+xQ2bY6/ny1lpTPl9FhVzopBT+k9YkntNmGBOxFwKuiLDxlu3TpIps2bXI463Llysn48eMlc+bA9GHVouyla7ekzMDZao7fvlBVGoQH/peMvW5Tz0YDSwlYS2AbCbaTMIKPgH54dSXDhKJs8F3/hGZUbtAcuRB9U0rmSi8z3nBPlD109qrUHb1Q8mVOLUvjKSKnH4qrFsosv1CUTehyBN3Pv1q6T4ZN/8//7ctnKkmzUjmDbp7BMiE8DxTrO0Pu3hW11bRPyxJ+m5ouEDe5S43YWgSF3p2uxrZvRCtJTFHWK9fmzw1HpfuUjbYRZY+dvyY1R8aIsvQm98olD7hOsViDRRsd3hBlrezTXcBalEVhTBTIDPTQi2n4/n/5h3XSpGQO+erZyh5Na+Df2+S7FQdi207tWkOqFHSskRjFexYa9Qg3G5GArQh4VZS11Uy9MBgtyuKlHy//iPefKOfXLXFemGbAdqm/KPu3Likv1mJVyoC9kE4GPm3TMXnt5w3Sqmwu+SyBAhkopoGiGmsiGku2dCmCEQfnFIeAFjmK50wns7rXdYuPK6Ls2gPnBL61rthnuHVyHhwQBFAwCNWSdfC7xt6XbfORC/LwpzF2E9g9g100/ggU8MEiYfIkiWX7kOaS9J4CW/jd6XLnrsje4S0lCVVZr1yaKWsOq2w2u3jKHj0fLbVGLlBzhfgCEYYR2gT6/7VNJq7873vFSgH1pe/XyrwdJ+WDJ8pL24r+tS/49vkq0qB49oC/2Ppdc9JL1aTD16td2rkX36Tf/X2L/Bx5KPbHKCCLxRpH8cvaw9Lz183qR5UKZJLfXqkZ8Cw5ARIIZQI+EWUjIyOlQ4cO93GeNGmSVK0a2Nt0tCgLn0r4VSIiWpWQznUKh/I9ZYu5X7t5R4r3i6lK2e+hktKpNkVZW1wYiweBSqc9pm5SD5d4yHQWKKaBohqREY0lO0VZi6+E/bozfgaE50wns90UZQ+euSr1xiyU/JlTy5J4MmXXHTwnj41bwQdi+11+n4xIv+BWLJBJ1h88Jyy24RPsHp/kp9WHpM8fW1R7M75/Hg/gXsPf1x+Vt37ZqHZVYXeVjiJ9ZsjtO3clanjLWKHW7LnY/n4CELsgetlFlEWBINjsIOwyJt4z/iXwwndrZOHOf2MHYaXVgP7O8mcCkc6U/eb5KtLQAlEWi1z+qhMBizxY5aVNkVQmdqommBueB373UCDF9wK+H3Q4yyb+ask+GTYjZqeOJ8+4/r3LeXYSIIG4BLwuykKQHT169H02BfCZ7dSpk3Tr1i2gC4BpUdZYPfWV+kUEZt8M/xIwZi9TKPfvtfDm2X9cdVD6/rnVpYrVqFKKaqWr+zSSHOlTenNY7NsGBJAVjexoRNEcaQVVbN2JA2euSv0xC6VAltSyuEcDh00hxLUdt8LUQ7g7Y+Kx9iKgC8n9r34R+XzRXmleOqd80ZHV0+11lf4bjTEL6ZEKeQRihz/izSkb5Y8NRx9YMNaWS7uHtVBZtAzrCWghwy4CqPYux0w9KUhpPSH26G8Cjd5fJHtPXZFiOdIJijl5Q5R9r105ebySfwodalH26+cqS+MSOTzGvWLvGek+eYOkTJZEpr1WWzKkSuZxX5421ElZEIV/6FRdWoxd4pFdlj5/t5/Wyz+bj8cOBzYIsENwFGNm75LPFkapH+XJmEqW93Zc+8DTubEdCZCAbwl4VZSNjo6WiIgIad++/QNZsRBrJ0+eLMOGDQvYAmBalDUa9T9ZOZ+MepwVEH17Gz94NohvEOEQES1LSOe6zF729zXxxvm199YLtQrKgNbOt6JSlPXGFbBvn1pUxQjDsqeVeW/9J8qev3pTdpy4KBlTJZcSudI5nIRLouyh8zGZEfkzyu//q2VfGByZVwiE950p12/dUcV5nvsmUsrkyaBeDhn2JPDQJ8tk69ELanAtSueUcX4S0LGzCi/zc96sq4QXHcUiZsqN23dk19AWkiIpRVlv3EWfLoiS9+bssjQrFUkA2487/z6Jby7aJgc/98RmxxuM2Kd/Cejt8BAsYTXgDVF2TLty0s7PoqwzwdGVK2D0dMf2ffhzJ0viWzNunemOgrA/vFRdLeQXyppGFr5T35UpPHAMCrzBKxaf/3i2wHcUvqscRcQfW2TS6hirg/SpksnmAU09OicbkQAJ2IOAV0VZFPrq2bOn9O7dW8LCwu6bMbJlR44cqbJoA73Ql9ETyozBtz1uieAYxeFz0VLn3pYwFPNAUQ9G8BHAKjFWi13JUK82fL6cvHhNVvVpJDlNZMpGnbqsbBDCsqWlN62NbymILxBhEEWypZH5b//3kDx983F59af1UrdoNpnYybGNzv7TV6TBe4ukYJbUsiieTNkNh8/Lo58tt/QF38ZIOTQDAb0bAy9Py3o3VFnZmdMkl/X9mpCTDQmgyFeJfjPlFkxbRdS2WWyf9XXsPHFJkGGdJU1yWRfnXtEiP0VZ710VCLIQZq3MlNXFwzzxhL1v8TBbWpn3tns7OrxHij37g8DxC9ekxoj5kil1MqkXnl1wb3lDlB39eFl5onI+f0xRLWSvP3Rexj9bWZrGkwXqysCM2/dxvD92P0T9e1kaf7BYvQ9M6lxN8J4BezTYpHkSz38bKYt2nVLPEmev3JCx7StIm/K5HXaFZ1g8yyISJRLZP6KVJ6dkGxIgAZsQ8KooGyqZssbtR2a8ZGxyTwTFMCCcNX5/sZpL7xbFpWu9IkExL07ifgLvz9ktnyzYI90bF5PujYs6xVN9+HxBVvvKdxtJrgye2xf8b9J6mbHluLCoj73vxpX7zshT41epQRbOmkYWGDIXtLdknaJZ5YdO1RxOZN/pK9LwvUVOsx42Hj4vj3y2XMrnyyh/vspMWXvfEdaOTov+yG6b+UZdCYuI8QPdOaSFpEzGLEdraZvvbduxi9Lq46WxHdUKyyoozOLr0ELCYxXzqsKwxtCiLO8h710VeDDiGlgpyn66MErem71LSuVOL9Nfr+PW4PXiHxo58y93q1MeHLAEVu8/K09+uVLK5c0ohbKl8ZooO+qxsspX2x+hRdkvnqkkzUs5zgJ1ZVzjl+yT4fc8VfXxvrar088B+N3/uXN1KTtojqRPmVQ2D2zmyhQeOAbPrHh2xWcBsuid2UygqNjyqNOxfewY0lxSJUvi0XnZiARIwP8EvCrKYnpTp06VKVOmBLWnrHGl21lWlf8vd+iMwPgCBo9fZFIygo8AHsjwYOaK8I7sA2QhrOjdSHJn9FyUfWbCalm657R0axAm7zQLDz6oQTKjudtPSueJa9Vs4n4uj1u0V0bN2inOhBlXRFldzb1s3gzydzduWw+SW8elaczaekK6/rhOeeLBGw/bFvEsgEw3ZM0w7EVgyprD0uu3zcpPHDsmPMlqtGJGz06IlCV7TjnMfkNxUhQo5Mu1FaQd96Er21spyvb+fbNMjjzsdFdFfDPS3zP4OZ5L8HzCCF0Cunjtw+VyS+LEibwmyo5sW1baV/WzKNuxkvJh9zS0KPtyvSJSs0gWZSGEgJ1QvWLZPO3WrXZrD5yTx7+IKfYK+wT4gidNnEgVa/QkUKMAtQog8uI9dkTbMvJU1fwOu8IiI47RsSaiMXfveQI9ANvAgu30lZgdm4zgIeB1URao4B/boUOH+6hNmjTpAZ/ZQMOqPWWNWZn0dbHHVcTWGKzGIno0C5dXG9xvn2GPUXIUZgnoF6yBD5eS52sWdNpdzZHz5dj5a8oMH6b4ngYyI5EhiQclPDAx7EkAhXRQUAcRt1jXiJk75cvFe9WD/E+dqzucAAptoOBG3Cxb48Fbjl6Q1p8so5eoPW8Br45K+9nhcwefPzprxZcvhF6dYJB13u/PrfLDqoPSulxumbbpmF9+Z+ERWGbAbOUbu7ZvkwcqhpfoN0uib96W7YObS+rkzHjyxi0IYR4CvZWirF6o9WTbsvH9IVu6FAJhhRG6BLS9Bhb9j5yP9poo60zs8zZ9nSn7eYeK0rJMLo9PpxfXsRMSiRlfLN4rI2fuVJ+df71aWxV49XYsizotHb9eHbvAX/jd6QKHnL3DW0qSxO7722qhtWqhzBK5/6wMblNKnq3h+N2mzuiFgp26OmCzhQQERvATmLBsvwz5Z7s0CM8m377g2ILNDAV43qPIYNY0KXzye2RmrMHU1ieibDABM85Fi7K4cZt+uCT2R/B1gb8Lw38EjFuXkc2IBxxG8BHo9etmmbL2sNPVZD1rq0RZXRm3Wamc8uUzrLRu17tq4sqD0v+vrWp4+TKnlqU9G8QOVWc2ORNl9ctyXD9a43z11jVWzbbrXeC9cQ34e5t8v+KA9G1VUl6qU0j0Z9HwR8vI09UcZ7Z4bzTsOSECejFt0MOlBNcOBbZQaMuXga2mEO/jK+hUsv8suXrjtmwb3FzSUJT1yqXpPmWjErqsFGXhPQ4bgrQpksrWQe5tW9aelJgsfEQ39GexHq9c+ADp9PWfN8jfm44J7AVW7D0jf208Kh8+WV4erZDHkhm89P1aVTzMn99TWpT97OmK0qqs56Ls54v2yuhZO++rKaF/v2FRNveteup30psBlmDaqER2mfBcFSk9YLZcvn5LtgxsJulSun/uJh8ulj0nL6v+5u/4V5zZMZQZOFsuXbulnm8hzv7zWm3BsyjDXgRQBHLwtO0SnjOd4PnDinjlx3Uyc+sJlRGORAArAn73Gw6dk7J5M6rClT2mblKL2J88VcGK7tmHCwQoyroAKb5DtCi74/glaTH2P1GWWwhMQLWoKYzSYZiOeKdpuHRrSFHWIrS26uaNyRtdfmitNXKBoCjfsl4NJW8mzzNlqwybpwp9VS6YSX7tWtNWPDiY/wjoB3b8DyrjLu3VMPaH+oGmRuEs8nMXx5myroiy2ibFEy9BXqvAJtDp+zXqpQkLM1igGTt/j3w4d7falYHdGQx7EdAVzeH5iWykuNnzvhgtsriQzdW5TmH1sh03zL7Q+2IOgX4O/dlvlSh7967E+kl7UmzHmNQBEQdiDiN0CejFIzyXwBLDalFWZ3UPe7SMdPDT4qEWZSH2QPTxNHSh3//VLyI9mxeP7ab2qAVy5Fy0zH2zntez/P7ZfFy6/bReicsQmfX7AQp9IXPe3ag7eqHykkVxr782HlPzwvwchf5Oq144i6zad0Y9y+KZlmEvAlqPsLLmUPnBcwQWBs6KFbtL4Zvl+5V4jN/JCvkzqr8/VDaXfPp0RXe74vEeEqAo6yE4NNOibNwCErO711UrIgz/EZiz/aR0uecn+VaTYvJ6I+dFoPw3Up7ZDIGuP6yTWdtOiCvboPSDGsQ5iHSehvb9c7at3dO+/dUO22rXHzonKZMlURlEwRDIoIAwi4BdBWwrdDz91SqVhYKH2cnxibKGqrrxVcSmKBsMd4pnc2j20RLZdeKSKuwDUf7XdUfknambpE35PDK2fXnPOmUrrxDQC+f43P/1lZqmK2R7Oki9NTU+iwud+YQiMSgWw7CewIvfrZEFO/+1LFP21OXrUmXovNiB7hraQlIkdZwRpyAAACAASURBVL3QHz5D8FmCQIFAFHljhC6BCoPnyLmrN9XzyuhZuywXZfVn0NBHSkvH6gX8AlqLsh8/VUHgnetp6AJ7cRdCG3+wWJCBjp0Q2BHhzdAewI9XyquKcmlRdXGPBmrhz93QBYkhmE9afUjebFJM3nDw/nr2yg2pOGSuZEiVTGB1gBoKXz1bWZqUzOHuKXm8lwkgoxWLgVaJshDtcZ8haodllR8tKliqa7RAlC2aPa18MHe3shfB+zXDNwS8IsqePXtWunTpIp06dZIJEybIpk2bHM6mXLly9xUA89aU43ratm7dWoYNGyapUsUIM9HR0RIRESHTpk1T/x4+fLi0a9cuweFoUVYXe9EN4FGIbbEM/xGAZ9xrP29QA4jvS81/o+OZrSLwwreRsnDXKfnm+SrSsHh2p93WGbVADp+LVtvYsd3Hk4BXFDyjEHgY2jQgOLYa6i/5YPK0g3UBLAwQcQuo6BeTaoUyy5SXazi8FbCFDFvJwrKnlXlv1XN4DLb4tBy7VErkSicz3/DtVmhP7l+2sY5AeN+ZgsWMzQOaCrzktWUOM+itY2xVT7+sPSw9f90sLUrnlBFtywqyTHz9+X0x+qaqzJ08SWLZMqiZQ+Gu7MDZcvHardh7yqr5s5//CGjvZ6syZTccPi+PfhZTvwCxvl8TyZwmucvIsWW0+T1RFh6U8KJkhCYBfJ/gewVWpPtGtBJ3doK5SkzbeA15pLQ842dRFouXWMT0ND5dECXw4I1bdNeXoix8yuFXDoEbQrderJ3Vva6yqXE3tCjfpW5hVcQ4voLCukAghN+K+TMJaihYaXPh7rh5fPwEfl9/VN76ZaNloqzuD2d0ZsHm7jXRnzcQZXNmSClfLdmnnpnGdaRNn7ssPT3eK6Ksp4PxVrupU6dKgQIFVGExLcDmypVLevTooU45ZswY9Sf+rQXlnj17JliITIuycR/KkOqNlG+G/wjorCWMAKuMEGY9DawWYbt6p9qFlEDDsA+Bp8avUmLIpJeqKaN9Z6FN8Zf0bCD5PRRlkcGAhyYdweIfrUVZTzzx7HM33D8SFPnCgyoiZ/qUsqrPf1WtddY0Mgx+iUeU1dtKUSwC2+AchX6hjs8j0q5sOC5zBLBtDMIeMuKQGYeApxs+Y+Blt/JdVlA3R9ja1rogJLaCvlCroKCglq+zErEV9Y3JG5y+REG0hXiLxT6IxgzrCaBSOiqmWyXK6u3LeqTu7sTRC3u6/YGRrayfNHsMCAL6XiiUNY0sfKe+V0RZvdNrcJvS8mwN/2bKfvRkeXnEhFfux/P3qGy+1xoWlbeb/veO50tRVhf8hK88/OWxQANN4Pf/1ZKK+WN2nSHjFYlCKA4MWwJnUar/LLly47aaz/tzdgvE2T4tH7S60cWsy+XNKOXyZVAJCP68pgHxC+anQf646qD0/XOrZaJsnz+2yE+rD6nZWCnKth+/StlgQJTFu+DPkYekeemc8gVFWZ/dOV4VZSFwQtzs3bu3hIXd7+mJ7NXJkyffl7Hqq1lDpF25cqU6N0TauGM0irTOxqRF2XUHz8lj41bEHsoPRl9dyfjPgy/BiD+2qANgXQALA0+jzafLZdOR87HegZ72w3bWE9DboH57paZUKpDJ6QmsEGWN20ZwsjV9G0u2tO77RllPwlyPel6eeOKZO7P3WneeuFZt6ULkSJ9SVhtEWe3dWKVgZpna1XGmrCuirN56Crsa2NYwQoOALvBmzJC+deeuhPWZoQBEDW8pST2ovBwa9Hw/S/098UOnalKnaFbRXny+FMBQNANbXXs1L64K0ziKcoPmyIXom7Kxf1PJmJqirDfulNafLJMtRy9YJsrqiu96rO5umY5rf7ZnWEtJloSVgq249rAoQgX7GkWyCHbF2D1mbT0hXX9cJ/XDs8l3L1S1XJS9cfuOFIuYqTAMblNKnq1R0C9I9Oex2cxO7eMe9x3Pl6Js3GxdbY1l3DE7bPoOgXjryruo/m4a+P8FoQb+vU0tIg5o/WBxqIU7/5UXvlujCj3BPglWXc78Z/1yoXlSRQAZp8Nm7LBMlNXF4NC3Mws2d/HXH7NQDpy5qkTZu3fvChYcm5fKKV+woLW7KD0+3m+ibFRUlIwcOVJGjx4tmTP79svSKLpiHL169ZJRo0bFCsdG0VZbHDgirEXZ1fvPypNfrow9pHvjYtK9MT1MPb4rLWioDavRVdxVVHe7rzFivhy/cE2tFmHViGEfAtg6juwCV6qOmvV6wqyD1T/aKDa764lnn7vh/pHoh2P8r9GWAYVZCt2zoHC21VwLrs6qtGvh1h+V3O3KPRTGtXj3KXnum8gHKt9qPzizxQRDgaGv5gjLmZL9Z8q1m3dEe7UWjZghN2/fld3DWig7AV9EpSFz5cyVG06/q3Txjg39m0omm4qyyOLCS2aaFElUwbJAi6YfLhF8bluVKYuty9jCrOOPV2u55cse95lix5DmkipZkkDDasvxal/5+LIN7TZobFeHryMyWJHcY7V9Ad5j8D6DQBX452r6SZQdt0LWHzwnHzxRXtYcOCv7T19RW//d3Yn40bw98tG83Q/shvSlKIts1k8W7FHFPeFtqz2rJzxXRRqViLFUGzp9u3y9dH+8BR6N96EWZVGIDYlF2hYh7r2KXWDYDYbM2/Cc6QX3etyCZ3a7v0N1PDqj2wpP2cvXbwmSSnQ4s2Bzl7e+9yDKXrp2U1CgDEVsUcyW4RsCfhNlXRU+rcaADF0IwePHj1disCNx2NHYVq9e/cBQOnbsKHv27FEFYyAA6MDqI1YhGf4jYMxeiM+Tx9XRIfsJWVCuFJNytU8eZw2BRu8vkr2nrijPz4Qe6OqNWSgHz1yVRT0aSEEPDPgxYu0bqUcfLP7RRlE2WLK0dEYUrhWymZHVjDBaUCC7GlnWjkJbEzjLgtW+s84sDqy509mLnQjoLctxt3Zhxwx2zsCnOBAys+zE1Ftj0QsnxmJ/OlMele5R8d7bgaIzEApQvAvCcHyh/QTd9SX19viN/Z+8eE0VSjN+pvry/GbPpZ8DrBJlka2GrDUdrlgpGeeArF18V+lgkTezV/i/9lqUfbJKPhn1WFnrOvZST9jirLY6tyop2A5vtShrXABAJubzfhZl33+inIydt0fw/Gnc7u8q3g/n7hZky8ZNhPKlKKutcXTmcbef1qsMw0+eqqAyDhGoYo9EofgEVj1fLBzCXiJ18iSC6wMf9Ccr55NRjz947+IzGJ/FENZRdHjA39uURzC8gkMx7FyseOTMnQJNwgpRFjVUUEtFh1WiLLzs4WmPwH177Hy0epZtWjKHjH+2cijeUn6Zs1dEWQidKPJ17NixeCeVO3duVQQsrq2BNylAkIVvrPG8rmbK9u3b94GhTZkyRYmyy6JOS8ev/xNt4ScLX1mG/wjobS0YQdzKnO6MShfnQJvPnq4oregV7A4+rx9ba+QCOXreteJdemsGvLrg2eVJzNl+UrpMXBvbNFj8o42iLKr+QsAI9Gjw3iKVgYHIkia5rOvXRP0d/4efIZw9JLkiymqxxVkxsEDnyPE/SGDKmsPS67fN0q5SXhnTrlzsAa//vEH+3nRMZQC1reh5ARMyt47Ab+uPyNu/bLpvG57OWl3bt4lkTet6USZPR/Xt8gMyaNo29bKDl/X4wtfj8mQ+WpQ1fqZ60o+/2uhsdqtEWZ15mzdTKjlyLlq+fq6yNC7hegX0uIWC7SzI++uaeXpeLcoGii/iMxNWy9I9p5UIAjHEalHW+K6KLfHYGu+PaHsvUxbfnUP+2a58tF2xIIs7VvjJIgsxbjFnX4qy+jt/bPsKKmtV29SMfrysPFE5nxoyPvvxHfBYxbwCITq+0O+b2CWB69N9ykZ5tEIeVcDLGEYBDTtBC2ZNrb7j4M8Ln95QDL24hSLOKOZsp4Bg/v2KA1I+X0b589Vapob23uxd8unCKLXoj13aVhWW1QkmGByeU7BTEAvaTUrmkK8oypq6Zu409oooqwfgzFPWnUFacawjQRb9Ohqju56yeiujHqeVxstWzD0U+9APY5g7/Nvg4+ZJIAsT2ZgI48qnJ32xjfUE9EvsmojGaou6s7BClNUv+Po8/vTlspKmUZR1JevYynN7q68qQ+fJqcvXVfeoho2XXcTGw+flkXvVsp29mO84fklajF2iKuiikq6jiDp1WRq/v1iKZEsj89+u762psF+bEcBWRGxJjOv3NmrWThm3aK8q0oGXJYb/CcCX77sVB+SdZuGqkjVCVyD31QKUzqZExhMyn+KLykPnyunLN2ztVa5FWQgHsFkItNDZyFaJsuF9ZwqytBoUz64yZrU44yoX4/cR2sD7HB7oDPME9HtAoLyT6Sxu+NNjh47VoiwWDCEiIvo9VFIVL/ZHaFEWn4e9ft2shvBr15pKYHIn3puzS+DpGvf71peirBbSJ3aqKnWLZhOdOWu0h9DfQS3L5FI7LuMLFJSuMmyeKkyL6/PqT+tV0fC4SV7G53UchwWhl39YpxaDsCgUioGt9s9/Gyn5MqUSFFu0U2ih3rhbx9PxwSoTYiyeZSDOOtvt5845jAs2EGXXHTwrx85fC+l7yh1+Vh3rVVHWqkGa7SeuZUHc/owiLETaLl26qOJfVatWdXpq7Smr08n1Srmx+IfZsbP9fwTgH4RCRO0q5ZPcGZ0/tGL1dcKy/apx13pFpHcLz0RZo1+wuw/bvHbeJ6C3oW4e0FTSJ1CtWmdOLninvtru40ng5R4PWDreaFRUrdIHehgf8v7uVlvK5s0Q6FNS28CwHQyBojmwZUDohzf83dnKta6E7OzzfN/pK9LwvUXqfsJ9xbAnAdiWpEyW2DKxQ3vZdWsYJu80DY+dtK6yGyjbZe15tawd1eNfrJC1B87J9y9WVR7ACPzO4ncXCylYUPFmwPqozIDZEn3ztqzo3cjps4teSHJlkdGbY3bWtxZlM6RKJpsGBJ4oW7L/LLl647YlnrLnr94U+ACnSJpYHq2YRyZHHpaRbctK+6rxC+9x2aJSOyq266AftXV3thZlUQhp+ut1rOvYSz0Vfne6wANb+/pbLcoiWw9ZewhtkeClqTjtVouyfVqWUB66iF9eriFV3SzGprMG8R2M72IdvhRlH/pkmaDw57TXakuZPBlkxMyd8uXiveqdE++eCC3UNgjPJt++EL+ucPhctNQZtUDyZ04tfR8qqXblOfL0ROFpFKBGIPM2V4ZUykKxRuEs8nOX6v64pH4/p06YsUL4tHoy2tICxV9RBNZM6EXAH1+qpnZoV8yfUVl/mI1f1x2Rd6ZuUt1AlF28619BRnbD4tnlm+ermO2e7V0k4HVRFoLn8ePHZdiwYaKLZkVHR0tERITUqFFD2rVr5+JQPT8MY4CHrDGM9gl6PNOmTVOHDB8+3KVxaVF2/o5/pdP3a9RDHh6wsqdLIZERMf6FDGsIGLORYYDeoVp+px1rbyYc9HK9IvKuh6Ls9M3H1WolYmz78tKmPLekWnNFrelF+/26UpzKihdxXWkVWzdRtEUXZLBmNv7rxSjKTu5SQ6oX9m3xRatnjhcbvODoMAoIf208Jm9MjskWKZc3o/zVzfEDjSuirLZCgB0GbDEY9iOgC/FYWQRDV1PG9wq+X3ToBdraYVkFD80M/xPQizNGr05kwCMTfsYbdaRkrvQuDxJFaSCy4uXX1Vi176y0H7/SpYUbZEkhWwrPj3iOtGNoUTYhf1w7jh1jKtJnhty+c9cSUVZ7dGLhrmaRrCoRwN0MxPWHzguq0esw43lvV+b+GpcWZe2YPReXCawvao9aoOxUYKuCsFqU1YuJ6DuiVQm/FerToiy+kz9ftFfN1RMf9jGzd8lnC6Pu2wWBvnwpyuKa4dohOxP3maPiY/3/2ioTVx6U6oWzyGQnoqnemYkaBX1allTeocjA/zaOKGZMLEBBMewSfPjTZVI6TwZVSDIUA8Unh83YIbkypJSV7zayFQJd/A2DMuNjrxfwYJcG6w8s5llhiYBx4fcIv08IiLLTNsXYjzq6/2wFN8gG41VRVoud7du3fyDrFNmrkydPvk+sDTS2WpTVPpPwAMLfEQdGtgq06dh2vBC/mnywWM5euaHGiCqdMEx3FjBI/2XtYXVI57qFJaJlCY/mZ8yMhK8P/H0Y9iGgq0W68vsWWxTs7XoSli2tR5PAqj4q5MKLFNVj4TEMr+FAD6MoiwdAfBEHclyIvinlBs2JnYJRQMDDMR6SEcgIRmawo9Av3BBtIN44igP/XzgOthgoHIeXaYb9CGhR1soqsr1/36yy4uJ+F2lfLor09rgPtOczdtYgS1UH7EuwbfyPV2spcc6VuHtXpNC9hR53ijHpbC5XCsBWHTZP/r103dZb2LUomzZFUtk6KP6iZa4w9ccx+pnBCvuC2dtOxG4bLpErvarC7q51CYqpoECgjmCxD/LHtY17Ti3KBsICgi4YbfS5t1qU1Rmb4IR3Irwb+SO0KPtU1fzyc+QhNQRPkgH09e3RLFzVDtHhS1G2VP9ZcuXGbfVZiM9EvB/gPcH43qmfQZwlAWDsOhEAmd3IIu7w9WpxtMD754ajym8WAS/eTGmSq90fofwcqjOUYf2wqo+9RNmnxq9SRaIRZmqaaOEZvzfYjYFsaWfvMO78buuFA7RBduyCe8UrE8ruduccPDZhAl4VZZ15yqLA1siRI2X06NGSOXNgZmVpUXbm1hPyyo/rBH4xy6NOCwQBM6shCV+20Dri2QmRsmTPqdhJD25TWmUoOgtkwiEjDtG5TmG1KuxJ6BcqtMU2ERi1M+xBAFsQsRURWweRKZtQwPsTHqBmXnr6/LFFflp9SInzf2w4GjTbhYyibDAUtEPxNxSBQ4YsPo+NL2V4cX5/zm51u2C7GbadOQotyjrb+oht8fCBK5AltSymKJvQr6Bffq5fiLAQM+/tepaM4bWfN6hMgri7J3T15CSJE8lek9vULBloiHeiX17jVhDWvmzuCAHnrt4U+JEiXLHL0ejx4oTtpiiWgaIZzkJX1MZLJV4u7RhalEWF8O2Dm9txiPGOST8z4AArRFlkxsIqC1Xs4QMLT2l3axjAWgMWGzpmvlFXkHnLME/AWFti/4hWyv7MroFFPiz2GYs1WS3K6u8tMIDo18XPoiwKsM3aekJdkp86Vxd4/7oT2sO9Z/PigqxbHb4SZY0LdToxRC/6P1O9gAx5pLQakt65WSxHOpnzpuP6BDhO+0tDmO/dvLg88eVKVdAJWcTG0IUj8X94psmQMpnyojVmWbvDMRiO1b6tdtyprBeBwdkT72R9feAbjIVAaBG4l1p/Yl12NKwydFIhbEQi959Vp60fnk2+c2K5EQz3jp3m4FVRNlQyZf/ZfFzgGYKU721HLyivMryg40WdYY4AvHrg2QPhDR8UqEwaV5RFcQUU0jCuQnb9YZ3M2hbzZQ8ze2wp8yRQYRuVthHYLoBq2wx7ENAvyfCSxUtyQmGFKKsfauEj++Hc3eqL0dlDVkJjssvPjaJsMNznqBza7KMlgkqsh89eVRkMOqsLBZpQqAnhbLuXK6Ks5gYPsCU2q/hql3vL3+PQomziRCJ7hrUUCKZmA9sKYVWArYONStyfVQ6PSXhNYgsqXpIY/iOgveXjZi8+902kwBIJLxt46XAldFE/HAsvVSz4JBS6mjbuOSzUQ8h0FtWHz5cTF6+p7ZfYhumPgIC85cgFqV4ki8MdJVqUhUfzziEJL4b6Yw7xndMorFshyuqq6sg6TJ40sfLrdNfSCC+/EF90BIunux2uu1GUdWchxR9j12M11imwWpRF5iUShxBxrXd8OWedKQsbGJ1B6Iko68i/FfPwlSiLQrLwAc+WNoUqzoiYuu6IQCB8vFJeea9dOfV/OpkjIRsNbXUDmwMIzbA1cfQ59cHc3fLx/D2qbzxnpEmRREr0cz1BxZfX2lfn0sU0jdfCV+dO6DxNP1wiu09eUod90bGSYDHCk9DPlnjXwLMFtBGr/LL14jHGhd2ByNpGwIcffvwM3xDwqiiLKcCmoEePHjJhwgQJC4vZXoAs2U6dOkm3bt1c8m71DQr3z6IzZbVHIfxGj56/qopKwHgZBswMcwT0lh5UtSycLY2qomysaonedXEVY7Ed/dKMn79Yq5D0b+2ZKAuvYHgGI0Y/XlaecFI52dxM2dpdAscvXJMaI+a77OGsH9TmvllP4NnkSaC6J/yckCGHB+ZgWZk2irJxf7884eTvNnpLKB5YIK6mSZ5Ett3L6tIr6hijswcavSDk7BgIvnVGL7RlxVd/XwO7nF+LshiPVYWddPEoR5mWrT5equ45eBVjoZDhPwI6IxbFVbANT4fOCvnymUqqkIorAT/Zdl/EiGcoGojigQnFjC3H5X+T1quq4siQSShqjpyvKh4v791QULDEH9F+/CpZte+MWoDGAl3c0KKsqztU/DGH+M4JwRvCN8IKUVbfR+M6VpLL128pMQa7qZDJ5GoYi8mize+v1FT2SAzzBIyi7NKeDdQirV0DtStQw8K4I89qUbbl2KWxYouxEJWvmWhRNjxnOsECOgIe7Niq705oO7G4ArOvRFltVwSPT+zAQ+g6JNg5+3mHGGuzd3/fomwaEnpfwI5Q7AyFEAZRFs8Sjp4/sfiDom1Gv09Y6yBzd9+IVmLBurM7l8EWx2pREfU+1vWL8WS2S6B4G4q4IZA9jSxqd0Nbpemixa7Yq7lzDr1LB22weKDHC+1lYieKsu6wNHOs10VZDE6LsMeOxWwnR0yaNOkBn1kzE/FHWy3KYhvzm1M2StuKeeTytVsqBdxRBo0/xhjo55y346S89P1aaVwih6pI+c3y/TKgdSl5oVbB2Klps3eYnaNqMQKVKCHoInAs2ngSxtWjUY+VFVTVZtiDgP6ScjVLscmHiwUPUchsRYarJ6EfJrHoootzuOJn68m5fNnGKMr2al5cbcEM5NCFEHQmRqpkSWTHkJittp0nrpW597y/nQmuW45eSHB7kC7OkTdTKkHVbIb9CBhF2fHPVhZsZTcbulAUKnrjHjKGFmrwQoYXM4b/COgiX3GzlvWOh4+fqiAPl8vt0gCx8wY7cBAb+jeVTC6IsjqT8q0mxeT1RkUTPA8sV2C9gs8SfKb4I3Q18eRJEquX23Qpk943DC3KJkuSSGWeB1JouxmM2QpRVotcyG7FAh2EtRalcwpEWldDZ8fp4z0peOTquULtOKMoiwJI2Blj18BWZDxzGLc3mxFlYdGEhSTsEqhSMMYiEEkMSGZA+PM5Tz9Hw/IDnyeIHzpVkzpF3RNlUdgJPptxrRh8JcrqLHfwndo1xmIAXpwo7GQUTLUHvTE5wNF9iOdSPJ/C5gY+uciwRAIJEkmM8frPG+TvTcfkoyfLK7sLRNlBc1T2pKsLhnb9PfB0XLrgWuY0yWW9zUTZSkPmqsLQCGMmvDtz1RnY+vvFlULExv5Rk2fXyUsC0drR+6/2WkcbCL/Y7YXA7yR+Nxm+IeATUdY3U/H9WbQo++u6I/LO1E0qsyBJkkSqAAizKq25Hv9lIedWFSax7ThudVsYnsM7zridTn/pYxTP1Syosms9Cf2ShLYj2pYRGGwz7EFg54lL0vwjxw8tjkaot5DM7l5XsELvSWhhFz5OT3yxUhWfC4aHIKMo+1rDoupBPpBDZysgCw4eTMasLmwV1X5Jzop4uSLKau9aZLUhu41hPwJGUdaqF1Gd+eCoUrpxS7O/CqnY7yr4fkSwkULxE0eFP/C8huc2d6xakOmEjCcEXvrw8pdQvPXLRvl9/VG1jRXbWROKuJW8EzreGz9v8N4i2X/6iuo67gI4/k+LsoHom4wtpHgOQFghymohBOL15iMXVLV0d7d76t1g+lpOeqma1HIzY9Ab90Ew9GkUZT3ZHu9LBihMCv/7yIjGavcXwowoa8zihpCDKBoxQ27evqv+HteH1ZdzNb6f6fNiizR+d9yJYdN3yFdL9z1QtMxXoqwu9Gf0LNe/z0gI+LlLdTWdXr9ulilrD6sMVmSyxhf6ufWhsrnk7abhgs9iR8W7npmwWln5Ge139Lvq0l4NVaZjqAXsG6Jv3laCIt7J7BSofQI/c0SHavll2KNl3B6etlLErl/s/tXvv3iXxTttQgERH2K+o4K3KC6KIqM6KhXIJNhtiMB3Eb6TGL4hQFHWBGctysJzFL8wEOzwoP7Zwijx59YQE1OyXVNtfo9Kg+lSJFNfwH1blZSX6hSKHaveooj/0Fs3dLYH/s+VqsfxTTyszwy5dSfmIWb4o2Xk6WoUZe1yk2hTfGfFmoxjhccotkrN6l5XinsoyuotHqv7NJIOX62OKRz2dj2H3nt24eTKOIyiLH638DsWyKE/kyGEQHwxirL6PsD8UFAFhVUcBV6yH/50mdNiYNhqjC3Hcau7BzK7YBu7UZR1d2txfCxQ8An+lI58Y7FwCN9iM4uBKGCy4dB5lS2DB2SG+wT0SwiyjlBkyxi68Io7WwnxXIddOQiIst0nb5Qbt+8ovzV8vjgKWBfAwuDTpysKXrQTCi32+3OrNTwS4ZWIcFTAUIuyCQkMCc3VHz/XC204t1lRVhf1098tOmvOVasKPf+4oqw7Psf+YBhI5zSKsshe1uKk3eZw6dotKTNw9gNFa60QZfWODQhWEK504Lvl1QYxloKeBp5/bt6+43b9FOwyW3/o/H2njWsx48qYdH0AFHJGQWcdvhJl9XPmk5XzyajHy6rT6/cSY42Tnr9ull/WxtQmQVHi+L4vsICHhTzsun2rSbhgkc7Rgr9+vzVaJOnn2lAsFIiFBiw4IFytMeLK/WXVMcYsVEeiqCvn0TVRtOe4XmB0lEntqD+daevo/PCRx65gR4Hie1jQYviGAEVZE5y1KAtvF3i8oAJr3kyp1QsZqlpiSwXDHAFd3RbFupCZMX7Jg6uiRr8WnbWoMxpxdmMVTHdGc/HaLSk7cHZsk6GPlJaOHnjBFa1t0AAAIABJREFUuHNOHus6Ae3F5upLkBWirF7xRNVp+MviReyXl2uoInSBHEZRFgsPWIAI5NDCGFaUYXmC0DYTRu8kZ6vM+kGlbN4MggchR6F9jVGUB8V5GPYjYBRly+fLKH++Wsv0ILV/m6MXLFST7vrjOmW58/Vz94uBrp74sXErVKaCVXYLrp43mI7TW1tRlBFbBo2hC4DFXeB1Nn9jgUBkRmJLIgIFBFFI0FFgGyu2s+I+wP2QUMCfGtvgUcgDtjz+iFL9Z8mVG7eVPQMWHrAtV29/xni0KGv8TPXHOD05J+o9wA8aYVaU1ZlKYdnSqoVZVwpDOhrzsqjT0vHr1bE/cvVe8WT+odbGKMqObFtWkNxhx9D+9XEFFitEWb0gpHf16Pm/0yxcupkQZbWAiGefFb0bSSI36mc6EmW/eb6KNCx+f9HMhK7V4Gnb1fNd3N2TvhJlv1i8V0bO3Ckv1yuiCqchdJFZYxFgYx0DFIn8ZMEeuXHrjuTPnEbyZ0ktBTKnlgJZ0shfG4+qBC88g3dvXExlLxpt+TQPvaPC+D2hnxnifl47YgjfcCyqBYvYpm3EMNf0KZPK5oHNErp1fPZzvXinTwi/cPiGuxPwKy89IGbRZseQFuraOfIzdtanrr3jSJSF5SYy6x2FMePbnTHzWM8IeEWUPXv2rHTp0kUV80KBr02bNjkcXbly5WT8+PGSOXNgChpalDV+MIfnSKdWuqzKyPHssgZPq08XRMl7c3ZJt4Zhcuv2XQFro6k7jM3DImbI7XvZrDrDpO7ohQKhCQEhFYKqu6G3P+p2g9uUVpV1GfYggOrZqKKN4gAoEpBQwOoAL1KeriTjFiv87nT18Ll/RCslvECAMVNNM6Ex++rnRlEWHlXwqgrk+GjeHvlo3m4lxoy9V6VWi7LaZxLzMz44x52vK6KsLhwDbzRkTzPsR8AoyqZOnkSwoGImrt+6I+F9Z8Z+DsTtS2fjOcvCTuj8elGRomxCpOL/+VPjV6nK3o5e9rVY4062GOoGoH4AYlWfRrEFo5xVddfe9q4WsdHPLYt7NHA7+8xzUve31Fk9sLGBeIACtihsqSOQRVlUnkcFeoQ7ouzLP6xTW8thd6G3BqMALArB1g/PprYR6+dFR9uNnV0bbEPGdmQdds7otOoe81U/RlE2bjEoX43BlfPogoBxF/KsEGW1b7YWfvV43mkart6rPA0tyqK9uzVUHImy7vaB82qrIL2lW8/FV6LsiJk75cvFe+/bGaufpVFUDu+jiLd/2SS/rT8S+93R6bs1ahEnvkCC1xuNiwl25Djajq8XziA+QoRE6OLWuM/L5ssoENMcBd6Vi/SJySoNhnoYmIcx0xMLpFgotUtgYRPXUYej3ScJjVXX1jFmrWKXJrJni2RLowrYJhQ6UcWRKPvDqoOC52TcS0hGMwZF2YTIWvtzr4iy1g7Rvr1pUdYoAFTIn0ll0KHSL7ZjMMwRwDbOcYv2Kv8jmJhDlDX6Asb1QtGFV4zZcJ5m/untaHoGwVCV3tzVsFdrvbrXqER29VCYUOjiPDPeqCPwEnU38FIG368MqZIJVrsj/tgik1YfUv5A8AkK5DCKsp5ur7HT/HVWGzLh8Hf9AIpFHGQ56nC29cfRNrS4c9SfP/CAgxccw34EjKIsRodikMg+8TTgI11xyNzYz4G4/eifm9lGhwrxEPwpynp6lURtB8a2YEcWE1io+XDublV8C0W4XAk816GAIAJewvXHLFR/d+Yprr0TjcV7nJ2r3piFgmJUjryKXRmj2WN0Rg4K0mAMVe75zBkLmxlF2UCr9K2L8ICTq6KsXoRBm2+fr6IK+CD0DjntEai5OMpsc3ZddMV1fYw7xefMXu9gb28UZbFVH4swdgy84+BdBzt7IDDqsEKUHdu+grQpn1t5kBrFf1eLD8bHyyjKuluh3ZEo60mG+MC/t8l32Kkap/izr0RZ7RVrzMKG9QssYLKmTa6+exBGUXbhO/UFizzYfh5fIPP2tf9j70zA9ZrO9r8ipqDmWWOMIaaomENiHqK0tIYWraL+KEVrqhhLzPrRUqrVqlZNXwc1JDGmIoKYQiJEBDXEFPM8/r/fivt4srLW3mvv933POeE819Wrcd49rL32sNa6n/u57017eXZkaA5m57AWVD3wb/e76x6a3HZIEofoqYdhQdkZ7fud6q/bHnvZg9KE+gsCzqWjnvIyENyLjgpJnAEWM75inPlwRSYvbGywDztfeeLld9xmZw93yy44p7v1sHJQVvJLsfXdWcMec+fdNtGbysHAtbHesgu4Kz7XRu6oPvwqnbcLlG3gbguUFXBIhgpRZPRemlUm2UDzvhS7alFzwvaruJff+sDr9VqB+lALRaXk0vyjE+oKaw8Z+4Lb/69T3ZaJLlC2cz1S14553uGivV2fxd1vvveN0sZt++sRPjtdlymrEhnKSikb+tVNE9yvb3ncNco4KG14O2xAySyls0TVCXY7NK/yKeR2i84XE2eCCawmzDpgEVNWoGzR4l3H6wJlK9+idtvhuGvG+cm5AvONFIskp1F6V2DMYaoRC7GxYeXCzq0aLMaYwKOFiiZqV1TrASWZUgx22E2wnPYbsJxnOeUE+tLoTBPoklN5QRSZfmnMUbK47DwYk8G47ChQVsCi+k3yC4MG9nYyrbOJ8BmNaSVpEe5DbhmpZAnYh3koLDZCLDmRBARoV110h6Ds/+yyhtvhc0f1suel6/fiHkADmjUDUVfGrD36+Oh/Puz+dvd/3S+/tYr3wFDIxJjKJSqYqsR+f7nPDR33gme5w3aXxraOgZkrbPi6QdUA1QOKKuz+mNFXnbFOoGy4NpOp702HDvBAU6sCcBWzL5s8xdAJmTPL2JThI+1g/fGTy+7z33nANEA1Bbq/SGLN2n0m9/X5ejiqFqwfAtu98vaHbq2Tb5oG9OXvmFBiRqkoSgSqGmJG+36n7qPM1vmd+dbNP9vYez0QJMeP3qZ3h0mXiNFqAc8iXeHYNe504Sg3+qlX3V/2XtdttPyCfpOn/i95S2J4mQXndAD9ZSHy4NarLOou3KPvNJtLXoOqU+R0bHSBsmU929zfmw7KSrogJVlgm/9lkS9AT5asORM2yk/QeylasDX3FtY7GhT1s4Y96phgU37dWWPguSPcI5PfdAia3zTuRZ/NsSCYyn7UfmVbrdshOlJkMqsGC3kW9IqwRKbq8bq2b24PSLgcUfxf7Vxebq9nKXeBHLaW55BjwLKFbUuGnkkhizTe/Rk5LFM2d7Hama/3J3+73+Fki8kFZjt+EnPatm7iS287WBSKIqbsA8+87nY4f2Rhgk2g7EJzzeZGH9PFlO2Mz8Rx14x1l456uq1pjWqD6ztQpEcMgwEmA664bFclJJPCPl1M2So998W2MIZgDqWqKPTtrmLGJh0/zoIu8bfPn2qMwXvP+x8LPQc3/2yA67VwOTggUJZyRMoS2zu0gNRCTyX6GBmOPHKqbqRlyk4YvI0HEGaU+NcDzzmALiKXKavkL/vY54WEPYl7MVtDeaPcPrEsL/YhkYhxUFc03gOWKZubvG/8rNWPgKQG0hqWic1RmsGUZW7MHFnfPLUOzdJDNq8PylqmLMcsmwfDwKMUHyZ5jCn7uz36emf4KqGEawjKthdTVmDZlf9vfbfu574SYqJaI0QrfYOe6E+veMBB8iCpKzmU2HXHwFMZPEnLWvsNvn68N8JWpJI7lik7o32/U88GXjOn3DDe/zz7LDO5Gw7u7xhLbZCIR34GsLs9Q3JWeFO89OYHvgLqjiM3zW4HRuPIZX362WeeYSv9eq3ZkEM4a6c+7i+jnnYbrbCQ26nv16OXR//QTzGmLAx6mPQyRrYHwC8FsltXtE8PNB2UDZt95plnuqWXXtrttNNObT+99957btCgQW7XXXd166wz45b4iymLMDcujAB/3/rG4t7hshnada18BJ557T2HQRZRR2C9lW2zx15h0BDvcIxGDPR9NGZthpdBiMEoHIjQzJHOrHXGrNJutGw5n6KKKUiV83RtW68HpIOTK09RlbUUtkrGYky+mISJebB9n8X9wmxGDgvKNqKF2Vn6AK1hNIcv3Xsd94OLp5Y1AcpinoQhAouD19/9yIUTW9t+3IFZPBQt3lOshc7SD13tcE6gLJNXSsN/1G9pX+5YNyRr03ep+dzfE4YNPHMw4OqMrTyXa3yuQdYFyta7Syr3Q1Mao68wYBTBLKqSsGVeB5OJuGLf9d2uF43y/0a2BKZ8LPqddqvDYKds8a1920Dcnw/w36b2DlUerbrEPO66gzZ0AI3rDr7ZVxhIF9eCspbxwzZo6L77wSdu5FFxBnl7X094vivuecZRRUHkgrJUw1AVQ0g/ln+LOQ3IQiKTYPGM3MGjJ23jwYGcsJIKbP9lkEPKue722MaCsvbetce5y84BweSOx1/xbP1jrxnrDf7CZEwzQNmzd+7jPU6Qa5G+Pm1rFJQVU3a1JeZxAE+Ujd977BauxyzxyhAZMmNEBcv8/qdfm6aLYO/B4qsSkiYK/T7aC5RNnUfrVn0fdR+5tsv2Wdf97KoxPrmFDwFVCanQOnbiKQPdzKC8zrmUwbEkeXSslDyFBWWrMjar3Jv23FaAI+eEWTzkkKmgLCzkAzbp5QZf/4g3reTZxOAO4/D2Cs0XWTdioIm2M0ldqqlzQmuWVRaf20EoUqhii8rNgzZb3sF2LZLNFHkwBsrKwwDjP75LNjD55J3tivbpgZaCsrBmjzjiCHfUUUe5Xr2mFRS/55573BVXXOEGDx7sevRo38xFs7pWoKw+uCoxWX7QDe6jTz5znTkLZcuVm6UhqQn9EvP2aMqkXM7m0uZRubh1U5b7pu6pBmdlGPn7zmv1dGd8tzpTViXQOvagbXu7H2+0bLMen67jNNgDAuRzQRaBsiw2WXRWDYmty4xBpiFIljDRmpHDgrJ1hOg727WrPO4fB/TzwCoBKKsFMGYslP8UieSzaOA4ay45r+M4sZjyzofehX2BOWd1OLJ3RefrAYGyODtz/xuV59AzNGCFhdyf94onlVVKWMcc0r6LXaBsvedJzLOUTqFYXpSJwyjKCTunwC9AGnajfrGZw4E8Fnwb+EYUsWntfhh3wFbNZdbmtLvKNnc+McUDq7ZkUaDkNqsu6jChsqDs+JO2bgNhrAN2FVCySvsa3VY6sBwnF5RVCTn7WBMv3VsLrEg2q0jSIrwGsZH19y6ZrEbv8hf7S/OTv3Q2STlpVJ/+ndUdxB7NUezVNwOUhR0Ie07jIKx+EiiphFVu7wuU5RvKN4Fvx0nfXtXLRIShkn7+ngRld+/rtl61Gih7zL/GOlzlw/O2FyiLjACJ+VCnfvUTb/QeKHhP4EFx8BUPuGsefN53CzIN3G+058u+E5JBst9Z5BKQTUDWiGMpLr7jSXfSdVP9EwjuOfc+DAvK1pVXyn1G2mu7w64e45AwUCALIVCWf+MHAlYgszUSCYz7OdUrjV4DOvTyGeJYVEZU0U+W1BKyJsibKDTewrTmt8E3jJ8maRi2W3hGDO/R88p8le+EjbWWns8hhdEV7dMDHQbKTpw40Z122mnujDPOcPPPP3/7XG2TzyJQVto9cmFHywRx56LJepObUvlwduFHSdp9x2zh5p+zMTFsLVa7z9TNPXHKwMptCncQ6CX6vDVUE/tlv7/e59AJ48ME+xe9WcpokC9QQMmH3l81fnzpve6mR170LsgwrKyuWtVjdW3f/B4go4dA+f4bL+fN38oCrWeylNcetKFjUK4adhLKgD5+8lsO87AvA7PUfg+qGpVU7cf22N5qipEFJgBldQ9ZoKEZWySSrwx1kZyDTJ3mm2MWhxlORwTJq9OGjHcDVljYlyl2xbQ9oMXovv2X9eVblGLfedRmtbtJDPltV1/Mnf/9NaPH0bcJww605quE1bDsAmWr9NwX28rkK8VEQtoEiZOBqy3mJU7KQmYd2o65HnMPAlYoiehYyCWbskO0RstCYEKrtRBT7YiZZ6Llv84pN7uZunXzxjUffvyJw0iVGPfLrT1DjrCgbEeBymX9a8tcc0HZb5030rt7E5DVHh880JMuAEyY604cPNDLOhBVmdHso2Sv2t6V/C+7i/m//+iS0e62R1/yO+RqL+YfvbEtxbTGvIfEB4kd1ow2mgHKSg4D/wWkOJDTeeyFtyqZHMau1M6HAVMBCuW3EG5vvT/QdEfrN2TK8h2epftMDnCRBCrjdVnIbDeUJGovUFaJuidP3bbtG0CbZdQpDOCnlz/gK+sIqupoNyaUZePC6icMc0gNPnT8ll4blaAqF1A3JBtdee8zbf4JbEe5Pn0dhgVlqUBVOXxZX3fm30mQAnYqQlBWf4e1+vOrx3hW+izdu7mfbLK8wwCQf7cq5E3DXIOxEtk9EjG7rJ0nUSMcAt8UJFgUVOAw3iDHQLXmb4c/UUg4UHIxBsrqOeYcfCdsfBnk7Fp1b1tx3JaCspIpWH/99aeRL+BCYMoCyF500UUzPCirUlnYE9DHBf7U1a5sxY0OjymRaP396IG9swbBorZJ45NtyjKAOdeo8nSVGMYckzVhhr3I5BaAbt/+yzkYCwpKdyjhqRroSaIrCX0fkW0W1yyyu6Jz9IDkJXLLsLb7zR2+zOrfB27o0PepGtIYVsZSjKH2MHliAnfjIy84hNiLyp2qXpO2t6CsNSioe7yO3k+LYybF6586FUAAlP3TyKfcideO899pJnFFC7UcUFal5sgh4MLe3gEL79vn3eETUkS4OGjv9nTG8wmUtSyARgwuMGTBmKVIFkfald9cfTF3XgK4TfXVqElT3Pcuusv/XKekszPeg/Zsk6SZitjrYiey+EdioiwsUM62VEVJm7RImmDZX1zvJQAA8nIWfiojvPHQ/g4TwvYOAS24teParhDxAD3/ndb6ehsoa0EFC8rCIIdJ3tniN7c+7s6+caoUQS4oK2Bk7tln9gDJiCM2cR988qmD1RxWlej+VdGSFhCuvpJxWGfruxmxPVqL0XZIJ6xLOkuonB8TrmsefG4adrra2BRQ9nMASNUDgHWMMZh8IQVXN1RtgAEZurX9TrvFm1RRNUb1mI2r7n3GHfG54Srasb+7fdJ0oCwJTuYzjNdbrryI11MvCxmkhZIf7QHKMicn+QfQRnLKxiZnDXdPGiMv9M3ROScAyY/711gvc1ImHyA2PskwKkb9nOA/TzjkeQCtWbcrQn8VwDq0S8OwoOxDJ2zl+K7N6GFNOLmWFCjLb/Q7soQX/meiT64hE/SrXdaotSbM6Te9J+AQC889m7tg+BNeQgGpgJxAyop1RphgViUxJIP+KyzkkObBBAwzsFhIAz0EZSGcDTjzNtdz/jncEVutOD0oW1ApmNP+rm2q9UBLQVmaAvh6+OGHu4svvrhNwkBmYLvssst0YG215nfs1mLK7vK7UV7nBZ2x9Zad32sYoidnnfI6tqXTn50Bg4FD0Ywssmj2HLOuw71tKeAJIIoYqppQH7hpL2/2Rax98lS9M7JduKxSOsPvYnKwTa4RVNhLmjTBiIJZ0zVZ7lxPMeUav799knfPRperLBoFZcV+YzBlUP3sM+eW+cX1/rSNgDxl7eZ3uYuSLSdr3uwImfOAezNyqBwH0IASMyZi3COx7VlIAJzZctTweu996jX33QvvdEXaoZRF9TnxRl+iRqlaewYAwY7nj/Tlzgo7eW/PtnTmc1lQ9vJ7nvYM90YSpnxz+PagS3bsN1eOXjpJPExAiqQvUn2m8kR+Z1w7fKupY11X5PWAmCmbrLSwN86JBQ7Du//hbg8e5EjPMJ+TNjXHwz9A2qQp13EMOnodfYNnV07K/J6K4V8F1MvrlbytUjrt6i8WgP88oF/b/Mou6i0oS/+QTO9sQWWNNPNyQFlVQgC89Ok5ry/RZl4PsEFJavj8YP5GBcY/f9LPg745Yd93treeCTn7d22T7oF1Bt/szYwVrZ6nVbkXYtEzRqBfH5NZawYoe+qOq7nvrbOkN6nFpFLrGbuOqtJubWtBWZJUgE2nD33U9fn6vI5vLxWKMlU6+fpH3B9GPOl3paQeTe+QKQtLj/cN7cvckmnJBJ2yw2oObwlFe4CykgCMyfWFpsIynqV9mAJjEEyUPY8h45Z90ONlrR2uR8MxSqx+2Pw2LCgreYU6978z7SMShtpUBMpqG0x/0WGFeEWlw179lnGHb7VSthZ47vUjr4HMBtjEUgvM6XgXykzxdGzMYtGZjz1jIgUtOvfsXppl6LippB2032Ox1yWjvXxXCMpajeIfrr/0dKBszjiZ2xdd25X3QMtBWZogEHbMmDFtLbrssstmaJMvLkSgrNiaEm8WTfzcXddwZEE7YwiUBZQAWEAE2xoW1GmzQDL2veRH63h9k0ZCDGTprwgUswtV0e5hwv78qjG+v5nU9j/jtrZTA8AwaagaOjaapYDDSCMcsHE5+Ff1PF3b1+sBTchyjTGUTb3mwH5+4lg1NBmyjGmVybY644zOHwtCSmABGpsdFpTl2GUZ/Gafv9nHAywHNAcM6X3sF+Yrpw8d799lvdOpcjvaI2CtaIGAbhgAcKvA8lS/YDi084WjPPMb1vcrb3/gJXM6yrW92fevmcezoOw9T07xjJVGxmZpmxdp8qncvQ6L3lacFCUEmtlHX6ZjURpLgpayYMxOYpHzbtv9YLIBkCgwiiNpTNx22MaecR/G2x987FY9flgl09etz7ndPfrCW01Jate5pykWFseSLBdML7Q6CVtWa0HZRll4ddqes491KM9ZbLZVSyw5r1tpsbkdLHn0K7t36zaVLb92T1+KqtA4HWMLptrHYhomsqLouc25xq5tvugBqwPNX602Z0f3k9oGAxJd0hh7rhmgrABLAXw/WH8pd+mopz1Tj3PWjRCUhc0HCI4xM/G3H6/nNlhuAf9vEZX4N4bJN4ydPB0oS1n/lLc/9N/VIlkp215rsm2TQO0Byj707Bve7C80YKJ9mMny7UCLk/njAZfd72CyEiRZGaOIMlB2ozNu86X2tx+xiZeGIKSTHCa+ZExr+ydWxWFB2WZUtNZ9fpq5X/ie54CyOj8JAozCYD4Dfv77oA29R0SzQpI5P+6/rFtlsbl9hU2R9JU9ryQpwDWYs9og2cT7RuUkOA7gKu8b710sNDaFoKzmNrSJ35DasMFamTVzV7RPD7QLKNs+l9L+ZxEou9U5t3uNnqGH9HcrLfo1L7aNLs5x263ssy+dMZSBwehm85UX9Zm3onLMnGsAFJWQtnSMcvZLbaMBiQ8sgzQLLQYzgFEAUgFJ6Mket90qDu0VyhF/sU1vJx1Jjh37oJW1SwsqtiOjTLlDlZKDsuN3/d54D6gcS7IhZUcMkydF26s0iW00cVKplM3KU/ZB+cfwwzfxA2Mr4oU33/caVUSrpAVCUBZ9VHRSZ8SQqcQcs3Z3GBlYs4Sj//HwVF3ZLVbwbsSU7FCOGosc4Aa2KuWtlIABzLdHwPrd4+K7HfpYyy8yl/v7fhu4H/zxHs/Q+vv+G3hmb1d80QMWlJ3y9gfegboRlpDMJYs0xkkI9Bp0g2fUWefknPtiDTtgufAM4yjcFXk9IACgSI9XC2q0xdEYL4s/jnzSG4UoYCnBCiNSiRCAFlj6Vcqm0SiHyX3DwRu5lRebu6xZTf9dkkAx525VQm3Ua0E3YuIr/tx2nLCgbF3JqKZfUHBAfQv4cw4oqwQJ14MWJ4v3fTZaxs02c3c/Hw1Zrfv8+V4vo1VFCzoEZbvY8c15CsRyRlqI+wWz7K6jN3Mwyzo6BKjYdgBKog1pQwSfOhUX+156r0MaQ3qrAq4092n0OQtBWdpt14Aw9mDuEVQu0v8ECZuRT7wyHSiLXMqUdz7w39lcOSgBlKFGZ3uAsv+Z8LKDOBRjJ1KFQXWBqmVVOs71I4HHt5QxHfJDUcSMH3VfQ2mjCS++5ai0sGGBcf3dgrJfhsoqayKna2RMhmGaC+4zVu91yT2OecGV/299t+4yzfM5UnUeyTb8cXg2OD7nKQuYvIxBMQM9KoSpFMYDZL45ZnXc/yJQVokCzmkZ0gKNqfyiGiQEZSF9IPnXFe3TA12gbAP9LFA2BGbaypxNmX0Dp2nJrpS88sHHfZAJJE6FPWbp7h3EATPqhBXbbrQESwOHLcFQeQyl6pSsyykYzdefb7mi2/WiUV7/lfKQbX89ou0SQn20nGuT5i6gzbfXWMIhndDoNeWct2ub/B7Qe5drKlKltFAlHbRGrFEZJVjB9R1/O9KXnjXKMi+6arGX2CamX5XfY+ktQ1C2yLymGedr5TG04BFLEdM/Jm7ofh30t/t9CQ8upsddM84bBMImiAWg586/m/pNwTE4FgLvW8VgDs9JSTQLAUwQ+TZRSgzTRk7OF/9wbbdZ74Vb2b0zxLExQUA3FBM+zE1gBqEpy2KPSaec5OtcjBaCKgtNHUMldany9tR+msTr99jCqk67vyr7qHqhyGhVC1iSGphqlYXASm0HSxpwn0iZcgmkrGIsF5a9lrWr2b9TVnvJnU95WQ4WaTaopgJkZm6mYL4oVpEFZVMmM81ub9Xj6d1lvxxQFuDdawBuuaJPgGFmhH/BnLN1927qGH7iPt/2XHzusl6FiR+ysGFUkfDpisZ6AKIMhBnuWzfXzYMWHSULEl4JMgK86zZUaWn/JqZslW+I9hd4x7iHDnTvY4f6NR7gEM+1yC11ezkGylrt7Uv3XscbD4WgGZ4MY59/YzpQlmpGwDHKu4kcfXx0atGrDUlA7QHK6r3FfIk1gQ2ZMyk5I01utkFKAnZmDsEilqRDFgnCQAgehmaUnCtGjrKg7OhBm3tQb0YOacgjlcEYRNz88wEe38gFZdlHCRCeQ6prmxWqsASz2HjFhR3VMJDhAI7LQtrEIvzZ7ZX0XWiu2Zzr5hyGnOstu4C7ImLuxn5WX3v0MZs7v9//mVeKZIA+8aKP6TLzAAAgAElEQVTzzD4dKJubuC67lq7f83qg5aCszL6uvfZat/jii3tt2SWWWMINGjTIxQzA8prdObYSKCvdImVh+eBSWo3GDay6zhiPv/i2Z5MCygJqKYtSxRUwvC5pdvL33ddbymdo64YWTfajKqaGBM5h5UqygL8BxLIIH/zt1dyOF9zZdmqyz2Shq4T0JMlQb7T8Qn4BFmOPVDlm17bN7QGZqOSW2lcBZVmYSvdJJW8Cvqw0h5gxv//BWm6LlRdp7gV+fjRly/lPJtW0p9kRgrK5QHez29GM49kqACY+0m7DaRZAk7IyWBkHX/GA1zyLmSHQDgHzZLevSmS1xahvFVhu+wMsZL+/TGW/AIRce9BGjsUaocUbMi6wur7q8fsRkxylypSVY34gUBYWMeMEJkqYKcWCJMiTL7/jdl9/KceENAyVIsaYTXZbAH2A/aqgqvT3APoB/XONDL/q95zr18K0yOSL7WRuUSRfYvtTLt/6m9hO/HcK6FHiu8rCkGcTYKMRzeNGngMxc1LzQCUmdQ67uLOgbGiA1UibmrmvvpMcMweUFZiCCRFzZUA+/h8NccYRxgXGB0VK47LoGuSmrm1y9Qab2S9fxmONePwVX1ECe4ySeub0JFdJsnZ0kFSl0stGrJRcz+vMM3XzFRc5QULywuFPuOsfnuw1WgFlSdSSJKQ8e4/1l/JGUZgiw/ivGzFQlmNpHSizP62ldB4qF5957d3pQFkqEWefuXsbKJtTWq/v1RnfXd1r8iokVVZ17K3SF1ojIAdBH9tgbknSRskZkjloRxMDV1vMSxlQiUalQVHEJNdSgLOqtuzxYjIyFpTtLMzxKv0ebkuFGGs7GJ0wXQkSpeAbVcZe3gnmfs32jvmiUmsVN3C1xX1iM8eDgiQohuWptYUqAZjrYJBHFDFw9dyw3Z1Hbda2dtB8ljUR2rohU3bVJeZx12VUEzVyD7v2/aIHWg7KnnnmmW7ppZd23/zmN91pp53m9thjD2/4hQHYFVdc4QYPHux69OgxQ94TgbIylcF9GyaOhPu3XmVR757cGcNmkfmAyR2zTpmMrs+KbQNQAVTVDZV0MZmA/UVYbRaYBDL+YnJB9hEdWUCWM77bx6GfoohlMsvaNXTsC26/v97nXUBXWWIeX+rctTgu67X2+10l/WWLb9uiHc4f6UXd/3FAP2/AUxSWUQPDkoERoB9zAsuKTZVPNasnKGUlWz77LDO59z/6tJI+YZU2hKAs5SpMclodsFrR6Vtk7tn8O9yMGPPs6w6pCpXdWN1fGWOxYACgjQnoqw05oGwolVDWfkqORj7+iusxa3ev31QlDr3yQS+9gFTC/+6/wTTu7Jhj/PnOpzq1ZE6Va210W0mbsPDh+y9QFg3IFY8Z4mbtPpNPboQmGJxXpYcpsyJpnWMihaFJKnS/wgVj2bWJ/UOFBwu7zso6LLuOjvhdcy/07EmepULjB3psuBqXBXMB5gSKH26wtH/fiJTUgFhjyBCwTU4IlGURxGKovUNltud9f033zdUXm+70d0161VckKe4ZtLmjIoGwoCzv1cTBA/0irzOFvY85oKyM13SPVQLOc0M5dlhRIumyQdv2dj/eaNmsS7901FO+akMRA3myDtS10TQ9YEHDt97/yFdOyJ+io7uK6g0SHIpUKbtNImh9WdR2ybLYbU7cfhUvaQRTjm8KJBVkOEgs4Y9QN1Kg7I8uGe1ue/Ql98c91/Zycpfd/V9HUgvZCL67m6y4kHvj/Y+nA2VhnPOtxJuEgO3Ya6G5Cpt32NVjvAku5mE79f0iGS2TaFVV1r3Gov1YE0LWiWlAh1q3Yi1zPJLEJAxy9OZDbVr2B9SDJRmyXEnaQ1SxEfNTsaCsBeda0UftcUwq3zCxYi5258RXvKkviVISaFVAWcZz5tGM7bwzzQo9o8wDd+rbs80c+vHBA90s3dMDJOQLnpvUXAYN5zV+eaObt8cs7vX3PvLNLarqkxwk29nqLT1jGNW//Nb70xl9dYGyzXoS8o7TUlAWg68jjjjCHXXUUZ4da0HZiRMn+v8+44wz3Pzzd3zmMq+7pt1KoCyLPLl7s4W0CIsYVnXO18x9MJOARo9OFh8w2r/GiTc6DGSk4Vr1fDgNU15LNEp5/+3wJ9wZQx91tpRL7Cc0vRCLFysBvZVvrr64zyphuPPrXb/hy3kVuaLa9nrlQrzbukt6Sv/ZN04oNA6p2ldd2zfWA8q+VxEhryI1YEs9ZOJF5hWGuS1XVXljq0zgZEwC+xFmOODsoycV61DV6dkQlGWAXm/Z1n+Xi8wS6lwH+4iFIn0lJc24j5udNdwBjCJcD3BbVBYoAKIo+8z3UmWBOQxmlbxVSSZwTSzaWbxz/ylbC43qihYIdftxRt1P90Ttx/WW7zlsFgCPDU+/1QNIKR1oacSn5AmUnCljXankvcgQLNbHYufBxIW1kKM9N6Peq2a3G+13+r1ML1EslFztwl1+N8oz5xWA+zAciRSr1ZpEkQjMCY076NzGWNo5x2hkG+nxFum0SzaI81imlQVl/TzYlEg20qZm7ivAiGPmgLIrDBriWZaqxlFVHPvHgGfmiZAFqlRViWwAewrTXQyLSAh1RWM9oMo61hBoiQMidpZKkhCITyVuLChLZQcVHkWh+QXgzMeffOpJCJgSLrfwnN5sC0AQSQGAT1Uc1u3lFCi7959HTwOAa+6iJKMnRHTr1gbKorkN6w8CzFpLz+8BY6JsfGWbn131YPS+AsDTjlYCSrqumHeMQGH9poo62szcDeJAUZWW7sn3LrrLjZo0ZZpqGyWGYvIOkurS/jGjUAvKUiVGO2bkEKHsu32/7qWqwDIo9wffqALKiggWGmE12jc/+dv97vqHJjslOvuedJNntpaxlGWcjnQOHghhCJS1fy8yhrVjl62EtPPhh599vQ2UlQFhzMiu0T7p2j/dAx0Gyn6ZmLL6SMoQSOWzZPnI9nXGEAMPYzI+YISye2T4yfRXiVA3KCcLWHR8ZZcsW+kPI570pS1onaF5JsaSdBR1H363R1+v/aWgXOS3u61Z5XKcHLbJgpLNYrLdqFtppQZ0bVzYA96s6coHPZuHwS4nBKaUmSGRV1jxmBvcR59MTTBIFF3utXYwDRMFOe2oso0GcMqwYH+3CqAJQdkyFmCVayjaVqBsFTZZ2bnDyRXZZCYw3Mc+J97od8fNFmb9YvPM7tCejAWTYSbFRTpNsJcxEssFy61+YK5EhBb6fIcu3Xtdz5wM408jn/Kuxei1oZf7VY6bHnnRmz4qtBgUKBuOG2FfrXnSTX6RaA397DYCbcvMmK645xl31D8e8gwemDy5IZdc3vmzhj3qNatzFqi5x/8yb3fWsMccmv6phYyuXcB97ntrS/84BiW4vMtECkANk0M5/a7S3/aqVAjblJNwsKZnlmkVgrIddQ1F/ax3i23KQFldDww/xnxCkiT8O1ZlIf33KizEX9/yuJ9vShMRcOGsCt+LnOcqtg1Mbr6VLLpbJb1Ut23N2K+NtTywt3v+jfccY2RnMV8OdcNTVZUWlLXGWan+aasm3GhZ9+lnn7UZTi8w52xeromxEKCSZH+j2sUpUFasUNZhAFwCFpGzO+ZfY72e5jxzzNoGyrJORuqlX68FPWhMGTkRGlnFrlnVKL/aeQ2345pf6ICyHqVCCgDyoeO39GSdZgcJ03+PmV5XmvNAKIJYdPhWK/oEoYBqfkNS6clX3vHGwCSGi0JJMklBlMllWeCN48YqQSwoi8kt3gQzcthv7qV3PuWJZczN0GyuAspaGYRmGluFzHHNH8uqYUQiShFk3nzvIwfhxMaaS83nKzljIXIKvw05uL+XeiSWO/oLQ9ohD09uA2X1nDZzbTYjP2ft1faWgrJcxNVXX+1GjRrljjnmGHfuued6+QKYsfvuu6/bZZdd3E477dRe19r088CUHTv+MV8OaSf3ymDkaMY0vVGZB1RpHS8mLyihjxLtRq+wSgZNE1grti2QOrNJ02ymxYEVM9di4Ef9lvbZXzEX9YERYxk9NABm9Df5QG+96qLuwt2ryUiIhctC/s33P3Is9srYN3Wu86u4DyxtQHsy5HVD0hVVypNipUCx80tvWb/JYVrapJIz4HdNTCm9wvSjmSF3VyZWI47cxMHaAZij7KXZEYKyqfLVZp9XC6dmDvyUs5HUkQM4DHqYcYCv6596i78ESpZxBLYL7vDackBZsvJ8d3LBcgvK5iwQVVKF4eHvf5A28VKSoo6pYbPvaUcfL9T/hBl0++MvtzFlrbEBbCEbn33m2srLBu+wmqNSIgzJ9JQtaKymIQBrbtgS9usemux1zrpMJvN6L1wMF+0VJtOLtlVyTGxGQBSSP0TMoIe/i61FWSVJrpyAvQ+LKnXMnGM0sk1OwgE250an3+rQMLTl+yEoy5yLuVdnCutAXQbKxt5fSYtwTbEKCmRS0BCEnU8FV06cOewxd/5tE33VGrJiAP5oUbY6rrz3GYf8ksbJVp+vvY8v/WOMewDBKDWvWrXQqjaLZanjp1irFpQNgcdY2zS2Ie/24lvvO4gsEGxmnmkmn7SlNJs1GqCsKg7rXmMKlFWlh95/EuF8M8RexGCo5wJztIGysPuoKoBBu8XKi3oTMqLMSJNtZM4UGu7x23cvvNPrCEPIgZjT7ECvmG9ErKpA6xMYjiQIKa+nzJ4QMzjHZDJkHVtTq5gXQpg85HyxdbjGPsrYqRbh201yJhUY0/Wcbw6Hzn1nC1UTYlR17s0T3DsffuKrV5hHVQFlJWnUKKEs7J9dL7rL3WXYzpLWKqpG4RgiAVmJIHvsmIZw0ZgmfIRjKGEqXVok0agktLIq0ui1GFHRvQdTeubVdzvdmN/Zntey9rQclKUBsGJ32223adpy2WWXuXXWSWt+lTW8M/wOKDt6zCNTdT3mmMWh+UPYhV2Og2RHXItA2ZCaLre/Q7dYwU9gckOMN0ozyErjBNiIs6PYbbYETsLq0nzRR0ZMxrVPvtmXJiMYD4iqwa+Otq/cMy/Yva+f0LHYa1QYP7cvv+zbCSQL9diqXLe0XMm+YyqXE7mgbOiGjMP0fHPM6vWa0MjjnVYMf+xlL5UxYIWFHNnsZoYm5Ij1H7z58g55EEomn8g0fKjSlhCUraqDWeVc2tb2s2RU6hwn3Cf8TkiDS4teQO5/H9jPg7JFE7A7n5ji2clFmp6NgLJoqzExS4UWPfyOCD+AayrQcCMj34rnsBn3JPcYJNFIDpJQW6Nnse5z6pgbnHaLN3wCKOf+aHIppiwaxkf/82FvDMJzbgOdSJ4LIvVtEeOgzIhEFTO5ZlJqh7S/WDBNeuUd96M/3eNZRJfts25uN35lt6ti1iG5pTJtNzpTi1ixutB549tPpDTKKVmkdLFKpU4VM8pW3GSVMlJJwHObCkBZAAKbmAhBWaqZqGrqTGFlicpAWZWYk5ghQUPAwmZuScDMAyizESYEc65dicm1lp7Pg0h15LZyzhNuI1C2FQnlOu1p9j4CQ/huQgSgnzuLidqBf7vfkXBTpMYaC8ri3g4JoShUKs18Ydzzb3gfDgDatz742MHIRlZjjllnnqbisG6/p0BZ6VIDhq69zPyOdZmMjfQdhdGHPwOBbwgJLOZn6N2SpCBYx1GdWBTqH4B39FNtAMIj69Qqw219S2IJtLCq08qmqI05ZeHSwGYdus2qi7qHn3vDG6mlZBk0fnAOEaRuO2xjz861ofuAEe5mZw/3P6XAPxlW5hIP6j5PdfezEhbHXzPOwSaGhcr9qQLKtgq3kVmbnhM9s6EOcnj9wjNSOIpY03Y/5sycJxa65/ymalHAdhjFShBYUHbDXgu6Oya+4mw1ddE90tyrETJe3Wfgy7Rfu4CyX6YOs9cCKDvivod9RiNkXIlZUbZw66i+GfvcG/6jFQ4M0sGramolUABhd8x7OH4ZPT917akSDbHGKNFlwF79hGHTMNQ2PWv41EVsv6V9qRJ6kSzO62jEyBSKslEmymRvq5SkddR9nRHOu8wvrveJi0ZAWZUhYubCAjknlDkvKwU+dcijDj0yBYMiExLAGMqgKIdSlE2SctoV28aDSScM86ASC2RKJSkzgTE5yYDCdY8f7heCsgjdk/xoVbBI2v43d3i9PiKHNZDbFi2cJTeib7H2xz0b5iKlXgt9bTafPIqFQFlp08a2of1VGMwWiMZs6pGTtnY4K4fB5OinVzzg35OcxAMl7pQ7VdFYzu3P9txOfZ6r9Rm2TSx3GB1rLjmfg21OeR4ZfIGyMnCLlXrpfea4MN1gvIWh7xfvYeTWtW2OvroSKVVMj5SQhKE/68wzuVWPH+qNyWDox56V9rw/nf1c+nbnABiqfBh74lZurtnSDCBVPvHtx5CQZwxJE9gvREoOBw3wn181JgrepfqxihllK+6Fnr2yeSvSL4wZ1jAkBGUlM9WKdtY9pqqr2L8MlD3h3+McCT78C2AVEgBpAGpEzOBnyNgXHKBUleosMftJ0t322MteW/OiBkxyc/tGoGyrmLkCplTZltuuZm0H2ERiDC1WSCNUz3QWANrKaHC9f9l7XV+6H4YFZffqt4yXXygKzXEpeb7tsZf8PBYGIeOfdNU/+uRTD1DnHK/oXClQ1mpoQozhWmVAJM1T1p0QgwjkOkhm9Jyvh9tl7SW9JjiR8/1AkgEzTJjlPMc2pOldNSma+/wpgWW/gdpX5mYChCWZZI+dM1eTRIKS8lT8SBuYZyYMmZTyd8gEVHvFni0BdEhowa4lLt17Ha83HMYND092B1x2v5+DTBjcfD+L3P5Obae+ZS3408vv9xUcMEEBQ6uAshyfhDyJ+WYaoGnMkSY0Eox8G4/ceiVP9EqFZLQgBeFBEUYoGcnvqWdK5BEd4/J91/PPB+MNSX++PTwnFpQlCcB4lkuY4TgcrwuUbeyJbikoa42+evUqzng1dhkdszeg7E13jXEbn3nbdPowehFzdQPb+wrEbA0zbmHZRW67xBBAP+/Vdz/0mU9pveYeQ9uRQUW+IPzA2NKw3dZbygt5W91eZaTItqL1wwcZkBa9rN9XnOSKCYLmz7Cxkx2LvUY1mKr2w5dxezs4NALKalGY49CqftzpwlHehO+q/7e+w4QvFdJx0u+UuqMvyyQsFOd/7vX3HOXMRYZRde6jFvTKfMpZNWTq1jl2bJ8QlC2bMDRyXkCObc693U1+431/H+558tWmgrIyX8NZmESKHLQp0WHCxjnPh8Vx8s0OMft7j9kiejk5oKyAN8CyiRkM5pCFDTgM6GuDBBdla9zz3OQY3zmSUkstMIcHSmbUUOKN9tOfVUHI398+yZuYiDXzrwee8yV3b73/cRsoi3Mx7Ok5Zu3uHvnl1tN0lZx8+aNAXLuBNIRzZUSUEOAbAkM7J0LQVzqjKUZmzjG/KtvIHAMgIpSmCPugbNGj7cV4hm00CwvTF9/yLG4Y3URqPAkX5jn3oIoZZc7xqm6jZ0/GVqn9mfM+NeVdZ1lYISjLog6GV2cKzRtoUxkoq8W+XOTZR2QG/n36d1d3u6zVc5rLk+QQ4AYgR04A3DPeb9dncb8oriJ3kXN8qtZgu5GAtG72AmU572++942cQ1XaRma9HcVORVOU7z4VjMz7qH6DNML97Ohg/oOvhyIG7PGbBWVz/BNUZYFZ89X3PuMuGP6EI0FFslFmQy+99b5D5qBRsDwFylog8bV3P3QkNyTngXwU8z6xOJH9Qz6DbyUALm1CQ5/IAdAlUYEpJus+G8zNVjt+mJewa2StkXpWlNSLadaGsmbhmoJjwoz/3/3i+p86p74NaEwDXgNAA0RzrVxzGGLW8ncqgTDBimnjC5QFKGR+TMCoZo0bhvxVcue47f1uWXNMQGmkMmCLwhquCspKPghdVpL2zQiB96oqkQZumXyITc4jKRlGaGjL7ymD9VDqQAC8fA+kY25BWZmZYi7Ic1IWere7QNmynir+vQuUbaD/AGWvHXG/BwdD3Q259ZYBQA2cvqFd0S3jA0RppxW1Fsusqn6qBOYBQd56/yNHiWjKKKWs4Vff96w7/OoxfmFNWYpCixzK1TfrvYjP8NhyXWm1AHIAqKBTCT1/896LuD/8cK2y007zu0obYdFcfvd//UK/jgFapZN+BTZGXgIwjGhkooSUAKBV2eLRdqlMOqxOcazLVTai8mdMPl57ZyqQGL7nVZmSubdYzzKmTTDDiSoaiLnn0XYhKItkAjqWzQ7u2a4XjfJALGyJs3Zaw/dr1clTUbswk/jrXU9PwzBFc3XdZRZwT7/6jpu3x6x+gQowRwaaTLQCqRImvgAwALbchyKmrEwTcmUlQlA21ESGxbn7H+7ySQBbNlt2H6QNpTLBsu076+/H/p8RCIwegoQYZhhVQqYiMEsefOY1XzGhsMxXMXYA5LnPiitHP+P1yIkYW1yAbq5evBKFuZN8sR+Qbxh/0lTAWJpprUyUVOnjzrytWCjoKDJeF4VkLsrGISplYKCxSHvng4+97qekUDh+yojj4juerMxIyzWjbMU90FiWk/iTzBXgD99uIgRlc5hgrbiOomOKCcU2ZaCsAC4LPAPyAfYRlMUjK2ID8I/kbw7gov3ELPzeOku6y+/5bxtrqVl9A1sSUkHozC1QtlVyCZKYqqKv26xrZvxcftANPqlHco/5BvO/KvelWW2JHcc+h1RbIKHCHCIMC8rGNIzD7WXaQ7IRnWL+d8TWK7k7Hn/Zr4lIAvP9Ql+2UbA8BcpK5xX2KvMZ1oIae1krUyWlRCkVppBmGPMBaPffuJeXHCBypJgkA0FSgeRCGPv8+V538/gXnTWMbsZ9taXuMRBq6NgXHACppPOkP2vPXTSv1HYYhQKcSV/XVovGDF1ZN7N+JpCqAFCNye5pLYEfC/NvIqUtLY3gVlXpNXo/BAbCbh3469u9qe8/f9LPUXVSdV2BQfiwcS80VYdYyV/NNUVgK6tQoFISMDVlVBeyX+nHlKyFXXeznQhzMhxUVaEFZZk/YWSdU8VoWbtdoGxjT3RLQVmaduaZZ7oBAwbM8PqxsW4GlL361tE+IxNO8KSr0xnNDrgWmXqFE2dlt6vqp4qhAjvtvY8+defcPCFa3pXzuIrpFpqbSAsQsGLlxedxlH0xkWXAIpQlJLMDm0W6RVWz45JP0ISODxML45xympzr+ypvA+jFgo4oWwyn+glJChbUGAagOZwbSpSkFtEcR46WsCq/NvssDiYsg/2zr73rJ/WwLEm02Oh97FCfjWciDPuu0RDwwyQIloecY9sTlC3L4ta9xlNuGO91zgAPyb4ymPM8AIKy+G1GaCETK2nT8ae886GDxQg7g1JdhRaqSGLss9Gyjsx7kZ6nGMy5E1aBsovNM7tnjFj5GCQIvv/7UQ42JkwIgEUAkpxolR5WeG6y/B9+/Knbs98yjnek2SFQleMWvaex8/IOwl7hnmBa8Mc7nvTjkMImOGJGkmx33q0T28onT9h+Fb9wtQE7EJYgkggwH8pC84AYkye2b8xsAod0WF51kotl7fuy/S59TltynrrGGLAY25ZFGos1wAPKgAEVYKQ/PeVdv3mM7c7fAUTQRzxg4+U8MJITubrnOcequg1miOi95yR2VBpuK1VUNaLzNtswper1xLYX+4jfikBZJdtigBlAD3NE9GSpkLEhr4YqxpUCjrQILtIwr9MHSnQxnx1/0jbeLJTQWNcqRrMqk6okF+tcX2wfGSIxzmLwCRCJiV0OwNCsNhQdB8AY4JigbH/EkZtGN7egbNkcSXPXOWft7qVu0D6GZHP4Viu66x563jNzAeHufnKKZ6/Km6Pu9aZAWWl8Yr5FchwZAREhpPOrc6JXyZyaKkgCSRC0b4kU68+210olwCQOQ/4COSzjKv0A+3ztwTe7VHI29JoQycKeIwd0xjSQvtHcRSBayrAOsF2JaPr/0Csf9GB1yITXWkKGWLQrpXGrqgi26YyAm9WGX/eUmx0EBZLgzPGqgrIy4GumHvpKxw7xc3qtDyUZUOYTsOrxw/w48/AJW0UN1mKgbOoe6nuo5+/CPfr6hIE1NP/B+ktNI18gUB+5Nyq+i0LJyM76jFR5tzt625aDshMnTnR/+ctf3FFHHeV69OjR0dfb1PMDyl467C7HQjKcSEknqi5btKkNjRxMGoShMLSo9VX1U1VmgXj1x5986l926O+nf2daI5Wc61Jm7vzvr+lNDxSi2gPEAqaw6LHArbKEMvgSY7ZqOZgW3ipVF+Ol0XKfnGv/sm8j2Qyusy4oK9ZDGdMl7MscUFaOy4icPz3lHW9mgsspk3pKyjElIMtoo6085chN/QS70RCzJQRhNJFqhXlgyJRthTmC2AMAjQBuMD/0rjWz7F6OtUXyKWKWhpNqLWQoP6WUC4YDz8JfEyZLAkNz2GU8F5JgYaEK858gE/7c6++771ww0oPUVZNIet5Urinjw0afQ7s/iZCDLr/fL7CIqkm73LaIpc72MfOOouMIPBMbykohsJ8FZeWiHo7P1hX7+O1W8eWUNlS+nOtIK5ZrjsYp5yGZSDmhnQgrCYX8ATIIHRWU8QPEwzLvrKFFKdqLaCYWhVhbABXcz1Ro3kGp+kPPve7BDe4F2nME3wa+EWFQhoscFIsbwIacyNU9zzlW1W20cEO/nLG5KOTyfdOhAzzQRVgpH55ZolmLeBKVc87W3RsANhJKoHKMovnDxJfe9lqLZUBY2JY645l0IDHXhSXYbDantP5oq1y3+bdA2TqeCzn3QN/yXdfp6ZmK7RmhBBoJUBh1nSFRgDs8yUNFEWPSgrICW1P9KD11AVH6/hy25Yqeicr3iqqvYWNfcMf/e5yvwIqxLXPvUwqU1TqMknsSAt6887gtvRn2vpfe62585MW2UwDI9l5sbsdYTUB8Yb1FhFJhsXahdYrmabhW1LYyqZK7fO61lW2ncToF+km3XiSOUEOY48fWEuF5wyQj93kenLQAACAASURBVI2+iiWM2Vf3nH8jjcB4EjN/0lpChlg6b/i9VvWEfm/F2qOsr4t+V+WCpKhk6qtrrwrKipTWzKrYkEyjOWSZVmsZ2UfVALZ/UslAvQfaVsxyGdChYY6WuWXKMv9lPrXcQnM6DOGKgu8L7zrRrDG/kediRt63paAsmrL77ruvGzNmTLSP+vTp4y666CI3//xpfcfO3LmAshddd6cvow+dtO2AeOCmnU9PV5OWNZec17sHKyRDUPWjpImf9Jr2umS0N2BCfLtqSI83XCxpEgnYC1uLkuSzd+7jyy4IdJL+OHLqgE4AbqARWOZyHrZP5YoazMg8NqPcp2o/NLI9SQEW0SfvsOo0OmKNHLMZ+0qnk2PVBWU1GayqhaYsvUTOY9cjQBRA7sZxL3g2FEZbvC+UZYWSGhxDmo/XHNjP6yA3Gpuf/R+vAYd7Lc7dCkk2PHFKvNStkfOGoGxZaU3Vc3E93/z1CJ8xltYrx9B5c5mHOecV+F4kUyFWWGgoJT00hO9JTLFglgh+6txVGMzS7AakefjZ170wPqw+/o4WFgZC6D1hqlA1pIOd0qerejxtDyh10nXjHItJRStA2XCxmgtkqk0q9YMZhPyO9Nf0uwVl9Z6H1Q9Wky0G7N016VUvvyHjkrI+FVMnt4RX5iThuFxWylbWjvB33se5Z5/FgxRlATMUxjFJlWZ948rOWff3skWrPa7042Lu2XY7MV555v/z2MteEgk2Ke8rkTJIqaJvq/PlSuzU7Z+i/bjPANU5GnLS6R52SH8v5UAIlAXU1X9LR6+R9optXgXcLvtW83sRKAtwBIBUNUGGyW2ZgWTYNgHxfG+YwzZb9kEAOue130DNp+t4LpTdT8viIpmB/m57xtBxLzjIHUpsq7y2MzjIh6w1W+0X9pEFZfkNmQMxncNtcUpnviKCEAD/ubdMTQpRxk4AmFw66ilH8hFmHLrpdSMFykq2AsIM62Bb0WbL6zkvQNDi8/bwhnoEAD7zDcJK+KTaqG9DOFe220vXHVYoTMJmhIghMbNQjh8aAMdA2RwzQDnaS7qoyNiM82r9zr9J4CKTEUp08ZvmrDLEUp8AvgHCKazxKX9rxdqjkfvB+mwAlUufs82VCMLMGaZ+VVAWTCHFLq7TTum+2u+OqqFi98WeY8Vjhnij50dP2sZLe4Shag779xRZQBUc2pYqjx3XXMJt++sR3nBPyToLyoKtQLbL6UNJxukbU6evuvaZ2gMtBWW/7J0MKPubf46Yqh2z6qIOqQKFFmOdlV3Ztvhbaj5P9VfIMbVqqb4FpmaeaSb/sueyicLnBDdzMnShXiii5TCcmOQ9NeWdqXpFxihHkxAdD0CLLGpYJiI2ZIqRIEafJnRlOj6d8TnX/Ug5Q3dUmzVZ5vx1QVnKm1JaSUXXpdLoVLkp+2oSTOkP50FuAW3L2ye87Cglik1k9/zTPY5ypT/tubY36WgkYGGh8UTmd8zxW00zAZdeWB0DpLI2haBsMx2g0UUCkOUc0thSe7RAKSrhK2t7+LsmGkWTcDmqh6W6AmpgvgHKwpQtM22pAspK85LyKAImhAJ9b4DkumwwGR40CzhDh+qQKx50Iye+4ptIuSNVCHxnWwHKakxSf1Qtr5ROn5J5cirW8SwggREljOpwbFD5OPvEStjQp6PcODfRJ3Ant1oDkzfYC2FCU4u6lEt3lXcEhkWfE4d5VnZRgoqqhv+5eYKjTYrObjYWlnsW9UtO5QT7t+nUDuzt/vXgc34RI71xfifxzP0Ko0pbtG9um6rc79xt27Rzg0R9bP8Yy9iCsgAtlDRWlSApOhffRUrRSaTVCZkyat8iUFZJm6oyPpK+KmM12vbru33Gd1f389tUCWqda2YfLe75t00qC5TNYexVPbc1RJOJTNVjNLK9mFu24qeVlUZV2mqrxdivSCs8BGWLdNZlDquEukrdMTwErBOb0Bomo/VaN1KgrJKjWn/ZMm19S3VOjKGRCROZBpmB6x6a3NakMtadqiqLZAIPu3qMQ8czx/wxty9UlZN6d8S0lxF1KNvAeVJmXbYNYbWFDMP+vNc6fu4ShiT++Dt9p3c/XEvrXZD2qo4TMo7l76Lfi5ICuX3XzO1ELhOBioQYiTHm0YylOYCibY9IQ82qVpBMmq3IswzXIuaxJE4mDN4mStKQdJptf4p9q37StlQwQ24LjWgtKAt7lsRkTrWIEot67pp5j79qx+oCZRu444CyZ141PMqgE0un2YyzBpo7za7SAAnF/xkc6zhz4kDPpBxtJLI6ZKxCvcactqPZhsFCzM1eAtkM5Hc9+arXd7OsMGm/6jwwaJmoUBp99X4btLGCpPeTYudpQqcMtjLLuWynnOtsZBuyUgz6lBekyi4FypaZWjXSjjr76h6yb11QVqXHg3dYzZsh5YaAjSJQVqySoYf0dwf89T6Hqz3Z46FjJ3t9wJgBnjS05JCa257YdmJXxUr+ygbpRs4bgrJFJftVzkN5/+4X3+2BPTLw1/10o2lAR7uQLyuZzT2vHLZhOC85f9woCpZbnxNv9Hq9yAco0FSERUtJ4X4bL+eYBJdpf8mxPKe0y7rpMpHkeSMoAf77fhu06QfnXqvdTmWwqQl7lWP+e8zzvhyJfoLpcs6ua3htXcsaZDHZzBBIAPgCwyCHSaLzSzPQlviHLA8LyoYSNTqOdWeP6ZJKEziXpS+GQg77kDZo3hAeXzIIlmVet+8FLLN/DJQl2UlCSmA8i3n0KEmuUBbIgqWzhvQzYYCRQCuKsgWu9oU5o6ocdIq5pzZSyTiNU7AESSTnRE41R85x6myjeVFZZQDHHnjuCM8Ytokv+y3nGeFZFiOnTnu0j/Rr+e9G5mAhE78IlMXsD9O/qnMM2lglScf2qgyD7Uc5du63IqdPBQpoWysTpO9tboIp53zahvGDqhMCRhbPQXuGHOOt9qYACHwIGNM6Kv4z4WX3wz/e443XDttqRV/JlpKECUHZIuPottLr/su6QQN7+284/QAozrxbcgBa32CYfHILQFlJ9wHmQGqwxCSYuzLyov8hjUCckWQByS2+QwqSMOgCp0LGTNLIjG33rwee82v0nO9a7jMhQ9BUwkGmh5KCUbLNHj9lrGW3kca9jJi0rrMyJHZ7Wx0EgLrNObf7qjv8G/iuKPSNkvaq/h4a/Greod+rGCvn9mUj20lvXxUN651yi4OJyrwGEk5VUJb13qZnDc+Szihrt5jrbBfiGaw9mFtj/sVc94mX3va6sXwTFDkkHN1H7ZMaO2yFKtuSjAHfQI+X0NrFgrLqQ8x2SQYVhZUFKkuklPXbV/33dgFlr776anf00Ue39fXiiy/uLr74YterV+cr66/yQADKnnTZrY7MYFiCoheymQNBlbaVbavyi7AMUwzfqiwliW0jZs2iGqCCqMrq08IgBgopM8skj38T9gNgnbP5Dfr99Q9N9hIGDOyX77u+d/MWG0lGXmFfiXGrAUqTmI4wLIjdR5UpF4GLGryLtil7Rlrxu6QgOHZdUFbgalXwqQyUhZ1NZpnn4rGTB7otfzVVRgCRcya16C3HSqo1cWk0Ew+AiSYSC6nY5DvFIG/GfQpB2VRZVtVzaXEEsAODkUWhDellypCj6vFj28vt9L5jt/ClW7Gwhm6YQhHWWZsSwP03yQNlJSsx6dRtXcRAeZrTy9Tl9z9YyxsH8VyNeHyqhEGjWp1yIs41lYr1CwximCUAdwRMkP/ZeY02sLiVoKwSEoAEyDrEtNBSz4e00O04HJaJWlCW0i+SHLAN7EJD4xjnGbRtb4eMjw2MS0iKFZWc2u0F/ueWzabGGpXV5bBryt4hlUCynQVlYRazkIcxSQBc7LXhMo7F+z5/Hu0rUzpbki+8VgECgA20uygwT2NRJz211La2EuLs/wM5YAHa+MMP1/Jl0mFICgXDvm+tMb0zeOx8OdUcZfe37u/MlTDOyUmGqBoBTUIcnwkLym6/xuLuguFPOPQsG5XvsokSvq//OaKedrt0xNU/RaCsZCTqzJ9k7JIqOw3vDyQECAbIYJAoqAokFN1vsTJJ3k96+R1fDivjGIGyZUnHOs+TAEH27Qhiitia9jsgYz9rTlfn2hrdR9/yHLA6BGVT2qm0SdItSiYK0NN4Kmd2tOz5TjbqG5BiyqpCQP2EnjAkA0LrS/0GKDtk7GRHhSZBMkfjD/9dJjkgjdrf7dHXoY0cCxnn8htzvcmvv+eNOhsx5dV8IyXzF3oW6Hti25ejtSzGPmxn1hf6VqRkYVjrIh1IAMrue+loP5cK/RUE5kl7Ve0KK+SoFKOyVDH+pKnr+84S0nvfea2ejkoDdKPRj+a7zXqv6rdUcgPdZ+rmJg4emG20G+sPC3CKMa3tJFEH+YdxF/myMEmSw+wPQdmUKZfMxXR+CF1brrKIg0xniQy2zTKBK/P70BpOx+4CZRt7O1oOygLIXnnlldNox2L+tffee7szzzzTrbNOdc3Rxi65eXsDyh59yU1ebzSUKYBFAJug2aVIzWp9KESu49ZhhUqvCa0jBgJCpaRVgTcxdWMi9JrMAHQzUCw416w+06TQokL/zUC9xcqLOhahfGwoe6Oc7rnX3vOlq0TM2fDofz7sKAPRIr5Zk5hm3TsBByktO84jULZom2a1p8pxpKnJPlWfDZ1HoPSth23sB93cECh72T7retZfGGLWSSzd6ubxXvAcxJgzLD5PH/qoL3eHyVY3JKuRMvRJlSLVPZ/dLwRl60qP2GPaCSJa02Szw5C+UjNNjHLAa1h/6HSSneYbQFjdJbRdKdGH0VKmja2Mdo7eViuNfKTrlMMSjD0zJBIBklhQUH57wrdWdVQl2GglKCvTARaVlDmmngl0xJ5/4z231Pxztrmfi2EosJs2q5RY7begLH8TQ+2GgzdyvPMhky6WZClbjMX6Ve9tjgGb+ne/Acv5BJBCTOBwcl/13QeU4bnn/wnGw7fe/8gvCgBwCCbh/6//cn7RruhIsLDKNcpNOMdgVUkMmV6kzqPycrRnecdCUDbF0soBDMJzliUOq/RF1W0F0vHOY9haFDHGlgVlqTKAtdwo8EMbZKRJomzUpClum1UXdRcYqbDc65TZk7YvAmWlTYgx0qJzp5l6sXPnJAXtfri44+aONMiOvx3pASNAl2YELETYtwBWr7/7oU+s/OlH63j5Fd3vVhBHYCbCUCSakUiq2hcy+7QJl2+fP9I9+Mzrvp/R7O6okHFwjjRGCMrGzCd1HdJD1/fsvNsmOoxLkUXi2y4ZJpW45yYWU/2UC8paCTWt4XRMfkPS7Pe3T/J/Yt6JhJeiTK4nN7GGJJg9biqRlvtMKPmXImII3KNqlOQM+qZUp9rI0fQNK1dl5hpbt3Jska34N2txvACQqwiNwQTmqcxf7aKyjAozheQA9N/jfrm1nxt2lgjnS6rYZY232x/urgzKcl36fjfKqBeWwjFXW2Ied+1BG7Z1m5jTmITeNWmKI4GCtFv37t3clLc/dMjnATATRSCnqvR04NT8UJKM2o7ndq2l5nM7XnCn/z7AvCYsKEsVMnq94TMR3vsQ8O0CZRt7O1oKysro64gjjpgOfL3nnnvcFVdc4QYPHux69Gjcsbyxbqi3N6Dsz34/1AMyocaewIZmMsDqtTK+F5NbFlo4oPNhVogJVIUVKkaSpehvf94dfiJQdQKk8sOYu6RKR1UWE37oQg1Bq/UmV20GlIM2W8GdNmS8v+QYsKfFlMTjNYnJyWw28x7FjmWBhhTQxX5aNDVD57SZ1yQ2HMesC8rWNbxikKYkN+WWHZYkWd28i25/wpewxsoxqyxmi/pSZbIqVQq3FQOnFdnqEJQty46WPRMAZ0yESdhgaoXZRCxkjNIsV2TpLHXrNrUkJxVixc4128xu7IlTQdkhY19wGEcQuOYesHEvB0uurLxTSZKcqgDJY4TlZGX9mfP7WTc+5id3GGzA8s8N7tEJ/x7n0OwmmKT9dre+voQrjFaCskq2YB601Tm3+1PHJnhKmum5YgGEmzXsBpgwlslhmQQhKCuTEDGLKbWETaWISQWoj3FKpzQ2J5TcKWP9cCwZexyx9UrugI2Xazs8z/UKg25wn3z2mZtwctrspaw9YeLSbg+Tav8By7ltV//CXFC/69uZSmiVnbe9fhdD7tQdV/Ns5qKQ1iAAZJh8sPtpocdi9SeX3e9NXGwAEAIUhpErj2D3K0sctrIfBQDsucHSfhFfFDGTNAvKUh7ZiNmrPbdAS1i5aD6TULAM3dw+kWSJtk+BsppjYbaInl/V0Hcs1+RMJn43HTrAJ4qauWaQ8Q8eEbN0n8lX++i7qXkLUj0wy5oZAkA5Jt8TGJ7tGVp/oJnJfSZIsCIdIFC6PdtjzwVQCmAqQ8qidoSgbJGWO4D+/f99va3KSnIGlNDzboqxfPk9/3Ukrxpdz6RAWTF2dV1UT4qVahP1/A4oiz4rzylBQgLWuOLcXdfw7U5FWHmU2i7Usm2UQKExvUiT3cqYWK16tTHHt8VKTZz0rVXbKlBTwJfIYJwDUPaSkU861lxhAkBtU4m67TfdL1X5MJ+auXs3X0nGXJk5c2cJmXurqknfXsB8WL5VmbJcl96jRvXQrVQH6wmqHxVUpDAXO2eXNdyEF99yvKtUJ/Lsk6BjW9jVRBHIKUKIjotEHHJ7YQg70d+RTaFvSNhZdrRAWe7xkEP6O/qzLEkoogJ6tpAHukDZxt6OloOyALJHHXXUdFIFsGVPO+00d8YZZ7j555+/savooL0BZQ/47fXe4TJcpFEKDWPLskc7qJnR00pjRE6d2qhOFnXMs687JukWJFUGs0iAPdYwLUpiDE/p5chkIyyzY0LCB1URDpi2pErbxD684eRGJRId4SIb9pFdWBSVXQqUtcyxzvD8iclEW+qAslr4Ueo9etDmlS5Jmpup7LsmkzL4sbp5vx0+0Q+i531/TYcZgQ1pNFZ1arbHsAy2lBaqdHvsJLdSBxRsLC1nMvvvf/Sp11++p2L/6vCAZBh7PfHyO56R/Ne9102WAWEmBSvJOvQ2ck3owaILa4X1Y8eLGbJocsH2lNEduMnyWaBsFa1fAQz0LX3czKhj0kip4EGX3+9LvpDtOGTzFXyCEYAzFq0CZTVectpHT97GbXjard6wIaYpp7JwlXuJBRAzZBPjjWsJQVkBrNIdtCwTto9JlQBeU4IZ05tN3UsxgMvK5NlfgDOgFvqZNvRNF9DAuzPy8Vfc7LN09yXnOSENPrst7ygAcKx6QNsJYOxslRfhNcv5W0YWRX2SK3Wwxi9vdMh6wHRmoSdGsY6dKilWyWoVyYeyxGHOPa67japYUklBe9wdzh/pHghYhxaU/cMP1/ZJObSyARsbCel8P3jclh5U5H915HXENldbUqBsWDFTte0klDgXySUWqmUhgARWLpqIYQVY2f5Fv4vkcNx2KzvAOd5/SYMJlA3XAI2cT/uSJKPygKjLbG6kHdKWvOPITduSi1/IiRQDfY2cN2dffeNzEkdiHEN4oUy4yDRNySP5bGg+A+jOek+SdG3rmbV7ek3bv9/3rAfcAImrRAqUFVDGsWCZ81wrQjNPQFkkZGgrwbyNOZwiRs6xbSTxA9AblueH1xGy+UIvlSrXrbkjiX9YsKxHY2FJFKw9uHZIQXovwmqY2DFEFGHtefjWK3l5s6Lvg+bxHAtQlrUJyWeY8lSOKvTNUZk/fycpSxUIFSFIR2k+BKucuTwgLf4L+DB0lrDGzDt8Y4k2eYdGpGCUrM2ptinqB80V2SastrPzSOZxyFQAfr79/kf++YcoIE3uIpBT9xGZNmTvUiC0TNLVXub5VA7TDsvYlhY4VWr/u/8GHpSVFnXqWvWNwkSS6oguULaxt6OloOx7773nBg0a5HbdddfpmLJfFlB2r19f61+oGKtm1eOH+RLKzkL55yP79Kvveto6i3AA0DBLbgdsFjY5oeyn/fColPbE7Vfxk4HciE2mtK81D+BvIaNDjpfaHhFzJu82lCXW32Kli9LtEYtWk1fp1uReSyu2k0MyxxaTN3YeLeCrguKtaLM9pkpG+VsdUFayG0wUYGFXCekjpYAFLaIF5lvdPJxsmeDEQG4lA6poYIbtVlmXLSUJt1n5uKGeedqK74kmc5jzUb5uGaRV+pht5YhL2QvGXnPPns6sy4iESQUasI2GrqMsuyvJFVgAMI8JmzBg0n7gpsu7H8GUXWlhB+M8FVVkJXKkFer2gUz0cgwkSAKcesN4DzASaG2fv1tfL7dTFK0CZSUdIadXMfFilRbcExZZWuzLlCdW2imJAq4pBGVlAEKShWRLyCKNuWIffvUYhyNxDuinfiyq/gj7+qDLp0rtxHRIQ/MhtT9XIsnKMyDXsMxCc3pG9UoZwJH6vKNZZmXvhu4P+nKM10Uh8EBJuNS2YjICygJOk4S2kdJwFlvvmgP7uT5fzyuXLhujyq6/kd9PHfKon8sWucHr+Epc2zmWBWWHHLyRW/3EGz1ggWZzI6F5tGRmkDMAIMhJcui8L775vidPQDpQpIBdJf/rMjxjgHXR9WthzfOFAcw8PWbxCYBmhN5b+op5P6W5Gts1rw2r5Ro9rxKjOk4ICDV6/Jz9Vb1i3eK/MAFcxSGP1lGh+VGRDqraJsCDZxUH9VjiUduGxkA2ycw2Ig5ZoG/jlRZuqw6686jN2uSAcvomBcpaVmqoVxyu0QBlmVcjAUaIcANgRCIsNJ4K26WEZ1HVIPsw32H+jJY8QdKZ7xKJ6KohozZp9Kb2VzLp/mO3cPtceq+/f5APAOGIsmtjG/UxgCMmw1RapXRD2d6+ezz7j73wpkN+R5Jsaqu+OVQNAhgTMoTT3AbZA/SBqTjB6Jhjkxjj3nSWCM1tKbenSo8qWarc6jBlxTDPkRcp6gdbLRAmpiQtAjDPM4lJOcFaCWk15AVOuWF86fiptQfPBO+W5s9hu8S41t95ljgv3wjL2BfGggzCJXut46WDYqbr9viqKAUDYw7RBco29na0FJSlaSmZArRmn3rqKXf44Yc3dgUduDdM2e+f/S/35zufcjHwsU2U+8h6xgTNvjS0bzFaggkFK4YPWgjK1gEgWaSyGLLC9WJdwMChFDMnGDj5yKTKxq57aLID1FPgMPrj/l8YsTDxRstWkSoXVdkq28UW8prQSbdH11eUpc65vmZsY7Vhigx9BMqW6eU1o01VjiHTFPbJBWXRmwJQQOweUwAc7OvolJUteJXZVjbYLqrPHjbBIY8RMxdjEsBkoAwILOonta2IGWAXp2ihNjMEZpIVxTmWqDO4Sl8Xxi2ALIN7UcgQATCYyWujofKtcBIaHjfU/OJ3sfT5N6A/k2Ym/WUMaIHlZQxmGMg8Y80AKmL9JMY25lwwR1KBed3el4z2k1cCqZrjtlslyfiwx2kVKKvyKszPSHxo4RpLPEmXF93fK/Zdr00DLMYwtwYbISgrRpz0k0MTklBCgH6Qbl+R4UrY71V0aNtKbPdc2ycDbEijTDqdAuFzy6wlz8HYf8Fua1ZivEijsYyR1Oj72+j+uZIEnAfZKb5Xsfts22FBWe4PupQ2UiW2VpM8hzHJMetIHjTaZ9q/iia1ynExiqGqgJDjuBZxWjA2yq4Kk16qCGABiglnitVv+0XVXPZvKVCWBOw5N0/wBmUYlVWNKmxnjQkkB+89dgsvwwKbjsRrM0JyOdLNFpuSfrvvv685mOXcP+5jsyKsWNM3vVnHLzuOgCkYfTx7ijOHPeYYv5phPlfWhqLfNSZdvd/6DqPlohAoO3C1xRz6wCTQMAcKQ/Moq5Ev6QptK615u8YDNKWUmpCZVO61pUBZK1EWGmFRmk21kAJQFlIP98WGQKYyGb22ZGFkvAyvQzqe9tzW7T73umVeW2aGrXcNtvZBf7vfVxaQ/KbakciRmVI5OYnjPTdYxjH3CUvhbbsl38XfAGXf/fBjn+ixzwW/CZRlPcOYRiABgGmx/HEssYoqUwgUzNGZq3eWsNWMJKdl5geJgrl7HVAWjWPmn2VkjKI+CE0lQ1M/K5VHEg6daRtIW/A3SxqJnU9jI88EpLuU7BygL/dWAW7yylsfeEk+DNEhchACZSEYnb/bmt4IrExOR20gYc/7WGfd2Fmep87QjpaCstKUHTNmTOm19unTZxozsNIdOsEGgLI7nvp3L5h/+ndXd5QY2FCmpApTopWXJddlBt+Nll/Il+KplEnnFQCZw7bSPnKItAOwBv4ch1EdR2wpFjCUfoUh0wL9PVwYh0YtTDwZ3MMQG4m/hyUkYtCRQUUjktDit8q1tOo+2oxXTN9U5xUoi2YNZQWdJRAWJ2NM5IKyfU+6yU8I7j56M3fF6Gfc/9w0wZfb5oL9uvaiBa90ke0AJMYL5TynD3nUm4zE5C6kT1p3MYU77DqDb/LNJBOdKg+SyD+6mUXs0zr32jJMX3rzfc8sqDq4YhTFN+Wzz5zLZWjDhqA8mOw7195oqOSqaOLKOWIAqfSo+J1JCWXtOaCszBBsqWTsOlphambPIxZ9WWmetCNhJ5+98xq+tCo3NLnL0UPLPSbbSUpA77WkRCi73avfMtMcSuXBfNsBCUmIsNgZfvj05ji2XD8EZcMkoNqgk8XAOjEzrF552XVqoptTxqtvjjVH0fF1f8XI18Se38uePbZpRPtaOutV2Ill/dKK33921YOeXWQXGqnzSPOtSPOafS0ou+cf7/GLaxuYcsBkCqP/Gbc5tLpVTpxzvQLlqzxfOcfN2UYAUNG8QseRcQ3ad3xriRCUlcP0kIP7ewOfuhFqyH/0yWeewUMSPrfE1IKyLHRJyqWqbVTmntMPsWuq8q4IQGT8u/vozQtJCXX6LwS0VakEkxzOIKBsHSmIorYIrIORS6Xg5r0XcRgrca2T33jPs/ZaGWg0khAJTW8EUoZAYSvbEju2gPKbfz6gNGmtd1IgTaqi6NEX3nIw1uw1NLMYlwAAIABJREFUh0CMpLdUyoyOdv8VFnKshwg9g6ly/PBaUqCsdNHZPtTr1pirYzHO3fboS15j1wbsbariysZMkTxyKjisyTDnilW35jwLSroUkWI4jr5/rENJFpLM49mHOEDE5JHC86O3yxwGE6jv9P26QxawjHl+16RX3WfuM4csCRFLjgmUFZDGdtJhFVFLyW/kdw687H7P8MVYG/mEzhKae0vmatOzhrtJr7zjYE4jbVEHlH38xbe9tncjvhrCDNRPktrSf98y/iVvNo5fxZILzOmJfTZ47kmil1UsStIO+SoIWylTLjFzdQ6AdyR2kDWxHiuaq2L+ePp3+rgNTrtlOgmS8N6HpnFV142d5VnqLO1oKSjbWS6yVe0AlB140lWOcqdYuaHYJXbA4INRxTG+mW3XghJaPoMxIFXovGrLJVhs5IQyo7bsTaZbLCApD1xhka/5bF1RKCuYGoitEQ/HiZW2WjfClNGCBWVDoFWsR/S3AA39ee5/zrHYA9wE5GwkAH0lel/nOMrSsm9RiaZA2bN26uPLUjpLiD1Ee6qCsmwPIMuAl6PHFV5z0YL3xkdedCymLMtQADLPGSVZgMkp47oquqJhu2AC8w6VMTIpB33zvanahmRXmxkWlMWNHbC0SqkSpassCgCoq5T9cD1cV8hqyb02vrFodV257/pev09SKmV9qcWBZa1aUyjKjQ/efHk/sStjnqp8B3dVdLVTIU1DvoUYfTU7VBqYcmDV+epoz2pf9N9YGBSVUda5LjFjBYS0sUv7L+uoiLDBRBF9PRgbLCSQGUmVEqrkn/1DUJa/4XCLlA9jBSZpAJfoaQH4xIxYikDT1HXz3QhdblPbaiEXM4ITu5uE4YTBAx1SPOiiEjkgXiOGlWII5yZb6jwDzdhHIEYKKLXn0DNWZvpiQVmYIDABbaTGWC0YSSbyTOVEFZAh53hVtpEPQE5ZtVhnNkkZgrJKgjbKrraGOboeMesBqe78xWalLH8Lyqo0OgXKUu6LtqI1iarSj9I5zEmI8+3hG4T2JvMbStCJZixsJQ1EApdELqGEHAzEPj3ndUcAytaQgirqj7NvnOAAwJBiQn8ZxhksTZKeRJV5RZV+17Ykh6NVgKOfcYwHHS1DJpJBDutQ3zMAPMDO1LOhknpb+ahxXv0ik0Zb+cc6UNqVbJdKZvGcvv/RJ748WpFaF50x9FFvXETECEkCCfndg7KPveTHXhtiBqsaJvUcVElikUxj/FbUYXDDRO197BBPWihbv2gNhinhoH+O9bI3JMyZrxKxhHN4nQDWIgYAvPG+7rJ2Ty+flBtoe4+f/JazlaP6pgq85Fj4HDBmaS4uwI/1xha/+o/X+K8yluW2r5HtQpkSzZ9IAmECVweUpayf9RwB2zinEiO8Bgy0IJEpYKbaeSwAPaQ95q1om0O2ssHfeF7ttzvWT9LupnqK+V2qWlPfZB0DkPjOia94ANuS1wBpYUWTaEW2grGJuQv3PRV6lmD+k6xtxtjVyDMxo+/bBco2cAcBZTc97grvHhmbyKqUTgOdJum25KuB01feVVR/siQDVljYa66Ei2vp1MmpM+cklJP//f5npwEJGQQYDGww8QQ40f9WWnRuz2RVZlZGXCmjCZUV6JixAULAlQaZmJmOBWVDUFpC9IAyTCiIOn2iNrJ4ePKVd9231ljcA2mUxP91n/U8s6tOyCSAfYuASU0Iqmgf1mlP1X0EgrBf2aRGx0bcHjbpiCM3dUdcPcYzVm12L7cNRQveWMmiMsVMHNFWgsmdksRANgMgJ2ZMVNY+TZpiJmJ2X8qQ0NJrxaLGgrKffvqZd+vN1RhjgspzDejIYM5CPVeqSyzjsLyqrM/0u54n6QRLD5D3jURZKkKWZOjMDbiKGD6gr5g+qWNJ9iAmbWH3kR5yGYs399rD7WSaVmYUw8QetkzMTKrs3OqnspKmsuOEv2syLWBboMt2fRZ3SLDYEGOcv/37wA39s2e/13Zby9qJgbKSDQHU/POdT3qtWoEJsTJXsZwoIc3RYqUtktXJ0U2WERzmKIyXYWx85m2+/JGJ9MiJrzgYxUSO8Zg04kLWRs690iKjSMc85zit3kbVQGWu3bQDKScknUJt+rCN04Cyl4xuq/TQdqnkaJ0kWpVy3Gb3pb5jAm+Kji8wxI7DISh71D8ecngU1PnO6NxFklZK8P5sixUcbOeisKCski4pMFIL3bpO45qj5bB49T0VK0sL3Emnbps9hqauW9dspXwEBvC3Pfst7UGe1Lez7vMlNi6EB4A7SuSpzoNhSLT6GyJ9/nAOIOmvMqZh3evO3U/3+MlTt00aoOpYAmUpLSd5DzAWGxvEfoWxLzKNAHgdSxIWVnu+/woLOpIIYo/HngWNxeG8JQXKnjXssTbm64TB23g5Ohsa4/gbc2sAZdZ+NjAfYrwqMwoskySzx6SCC6kpkptEneosyWPlGOEqcUU1wUnXPeKQS2K9DWGJkJxE0XOjBAPrVKpb0RnNMQizxxRz/8I9+nrGLaFnUOAlfwNM05hFkhr5RQhEyHLJ66XO+ib3vai6nQgdlk0qDwEqerjuOqAs7VCVS6ratqitgLqrHD/UV+MpwmocjZXM8SB9XGa0ztmH+TWJkLJnVJJ2SO2Q2EiZcllJEY5PVfc1Y57zbZRMY3hNquwre9b1LPEuI2vUBcpWfZKn3b4LlG2g/wBlN/jFZX5QiS3I+YBSMkOGZNd1lnQsJolmC+vnXoKAI0TuyV6zAAhdAQVqVNHs1EIiZEQwaD8y+Q037rk33bjJb3qWXyyk6yqGQSpbKzYjxyB7NXHwwOkmNdLxYZsUeGVB2VCjScCvZcdpUlKlT3Sd6hsGxNff+cixUGEQwZ14vWWL9aRifaUBtmxQFyg7eIfVvGZkZwkLmsNm5N6zICkKgbKUJ+/xh7scUgP8uyqwXQTKqszZLhjspGrQvx52lLWkBulQ2yi3v8VuZPIz5vit3Czd08YDcgF/4LgtvUttM8OCsiRJaFdOeR1tEBDC4H3joQMqGQHIybasTCd1rfqmqUyOyQ3swTItsg8/+dRhukV/kw0Xsx9wGKCYDPahmaAsmmyYRJUxo1SKVoehkXOvWXRQKUAUTYxU/g+gCQBZNcQKb5bhnJgJsFC0iBOAjeYeGXgbltEs7bAUwCJpnanfy+kNXqwL7j8feNYnXgDh0eeNab4pCZAjF6A2c196DbrBGysgiVNkLiJd61TfChwl4fDK2x/4xR6x6zo93Wk7FrNnpJnL+E9fVAmNmUUa5XxDrrr3Wddj1u5eXqYj4guH9W/4RGhRiDkMI4QEZyosKAtzXkwnbZ9KfFYxAGybL1wy2pfzlhnXtKJvpaEu9+2ic1D2Hsp2haCsyoXxMKCKqk5IkkrggD0GrB6AZAAlwIIiAxoLylLiiaxE7JshzUvGV8bZOoF2H6XjAGmUyheFys4l2aVvKyZEuWXkqePLuHDLlRfxpmgKfT8BhUg2k4AkGdaskEHqYVut6ADoAJS2XnWxNla/dftu1jntcSRTEFbs6HmhrBsz144Ikuok18vAFrVNoCysStZTMLhj4zaADPI7lvUfaqQLzBWYikQd+uJUAZL8HPH4y75CCmYn8x+F1j+h7n8KlFU1X8/5engiRRhKbPJ3gJzbJ7zsTfhsYEpGVVxZglnVn1TM8JzlhubSMnPO3U/ycTkmgFpvgA2gZ8y9U5k558shzGgeBGP4G0vO6zXQq8ouMEdAn9R+j/QNgEzG2odgzrjrRXe5uyZN8Ylwxnx9B1WdlEukye3PRrZ78pV3vIaslRlQok7XVReU1bo9p2okvAZIQ9+76K5p/oxxF4kpG7oHzN1IXsaiLJGvuQnfB4xLbYWvPd5x14xzeBIoGBPAU/D+ePSkuBEnCSCIhAt9bTY3etDmyVul66CKFAPQLlC2kafauS5QtoH+A5Rd87BLvfYNuiuArTa0ICSzxWCJG6Pibz9ez5tstWdowgdTZjNA2Uumapogr6CQhEDOoKN9BACWlXsxaR/3/Bvukeff9Itf/k02SINF2XFUOst5UxkhlRKzDa7qTNjDsKBsONH4611POwTObYmIdFbk0l3lnunjziKavmWxr4iBBGXHlusx28VMyrS/BM9zsrFl52zm7/qAU2bBIp7AUIlMX2oRIlAWkBBGHVHnw1/EQpKeqAV7GVilI3vk38d4Y6SYmRDt0eRQjM3cPlPihswlutRFgXMyAvL3HbuFY7BuZlhQlokYZYdl5ficX2wzgCYW83Yyn9M+aTjHFt05+6998s1e64oFIAx7fXPLSpLRJeR7KO1oTbZZoMJogEn0sy1X8CVQZSCqXJ2L3keuxWq5ASK3ImQ6lgL1yIz3Pm6I696tmxt/0jaFSYBU+8TszgFvcq4R4zHeazuhbDPPCxZ2YlbruLwzRWY10lFl+9j3Vt97gLlbxr/omUgA+oD7MQaeWLpVJUTEvLjl5xu75Rb6ogTU9o9MOrp1cw4WVSxktMacgm8ADAgih32tclY0epnEVwklTIsYqAIGOG6OnELO+QFSJr70ltt29cWzvnli6eUYXOZKNVlQFuY82r42UozIWNl92TUD+iLB0mjJf9l5Yr9vdvZw98TL72Ql41TVZBlAISgrRl5Z1UJRWwVipeRtxNgtA/osKAv7jgRrDJQVCNKIzipgEiCT3O6Lrk/MVTEU9f2uy9K159JYGL7vmkMCylHhhkEOFUDNCj33GDYiicE6h3kBYClRxn5stB1ITfGtC4EQeVaUmYA2ev6i/QUk5YJFAmUxkh4+4WWfsIHdSOLQhuYgtiQenUpVUrCtEp5iEsNk3mC5Bb3eKfqyC35tNg/6hYbGAmU5hiUEpEBZVZ2lZJ9kEsjxAGVhg/LO2IBMImmeorl+FVM9e3yRMIok4GL30YLkodZ9uH2b5M8efd1vbnncr3nFHmfbHM1qmebxPVpxka95yaKYf03RMxdLxuodRY6IdhL0s7T8SWjwDqkiCg1vvu+A7IDtqWD+FKtObcU7JY19+x3X+l/Xlfuehe0TkG0lGXOvQaxUAZ/sF1uHi+UKcx/CRiwWmms2N/qYNCAqkhPzMuZoMtkMj2VlvPgNjXeqmZEjue2wjaPnVoKyrA16llgPIMlQZ22e27dfhe26QNkG7jKgbO+D/+QBjJh2jpgYLPIohbWukzLraOD0lXZ98/2PvWEFwQKUQd0LTa+0sINtpJCZVpnAuj252KkpwCrVUJWW6sNXVjYmcWyOF2NQ8XcZUGiQiZ3bgrL8bsuIYmXs1z002bHYqwJU67wCAk/+9qqe1UQ53k826dXmNlrG6AvbT0mJwEwY2GjVhGHF9HN0iyo9SA1sHLJeYNKwkKe9ADLHb7+KYyALQ6CsROnLNG5STSQJEWMhSasxzBqqnJMEys+vetAnEFJlxWKLlrElbdtg0HFtaL/FDMTC65AWWSvE9i0oy70gW17WJiaM371gpANMqjq51bXJcKsoY1v0yKlPtCiXWVOZw/LHn37m0KOCcf/EKQO9MynsJhgjJE+YtPDN9iYLqy7qjctSIWYIyQXYlamQdnAVzd2qr1sZo2H0U6/6b2Qj7CixEUMTj6pt1fYqK6XMFVYJEd4fbSsNRv232Fip6hOxk9k+BsqK1cB4Qt8QGLylQBVpllctL9a3pIjRIw1IZG4AfWMx/LGXvewQrCAW1KcPnaozmMO8ajPkjOj0lt07GWgVLSS1kOFYaKHd+LMBUQmGsnPZ3yXXkONUzn5iEocmoLFzikmIfiEVEqmwoCyVKgB3NtCaRyvwjXc/8s8tASua8a3MPTk8J0kgErcAWiSD2jMkr5Ua42xbAPOQrbKGsCEoK2biWkvP55DsqhNlkixI5mx97u2O+pL/HJEGDCwoC0AIay0GysJYopopBKaqtD03McgxMeXZ9aJRbdVzWmQ3Q6IoBtRxTr2nJIcA4RnrMGNrRlim8QW7r+WvDWYq3zSq0BTNuL5UezUXC3WlZeaaYpM14/rLjiF98TIzTh1HICASIDyzmDvGkkCqoLPfPcnVcCz7HZIcG1IH6y+3wFSd0rV6uoM3X8Eb+yA3cPegzduqsSwoa439UqCsEjYpY2QlnmgXoCwyPMyhbFC5cOqQR0s9FKpIrtjjay6WQ4aw+2n9lWPerTGT5/APIyZ5UBZCFIlgIidxyD1H45r52hLz9fBmTlXNNhlPGFesz4KANMY9xkwCMA3Q9xf/eNjxzQb0FGiXY1opgLxMxqvsHcn9PVZ5popFXVddUFYVdyQrqhIoJMWFEZz0mmNzZc1twIJIzsWibK0rxrdM2pBDYPwOQ0l1/Z35GZhQkWZz2dirY/EsQai6er8NvJRYFyib+wTHt+sCZRvoP0DZZQ642OH2GTPm0IsNCMqCnQGPrMPM3bt5gKeOLmbd5lrNRAaiLVZZxH+ow2ymFshoz1BynxMS266a3Zf2EAAKzFRA6yK6vkTPaVNK81bAmxhwsfaHoKxdhMCSZdAkM/3DDZb2u2vxVgWo1nkFygJ+034tBDjmIVc+4GDsASggZ1BmhMYx1df8O5XFU0kc26SA25z72uxtBKjYcggmygCe93y+0EVzafCOq02TjRUoCxMRDcDcCW3Y/hQLSUBVuEgT+xWNPZ4ZWKop6QDaBWsUUzuccnNCelEMvHf9YrNSfTH1A5lTviPNDAvKovPMs0qyhuc2FkiRwMYGSKqaWLDHixluVbkuTUqkE6dy9DLWKqAJpipo3wKwiTkhbSbKSffacBnPwiwzVhAToUyr037vOE8rokxGQ2zJsrYWtU1lyZRjwUZqNMSwDMFqKktw7LbMcDlr65yU4lOWZQ1ObHv4ruz8u1H+TzFQViACk0qeRVgeu623lGfuAMofsvkXWpVidVtzuNxrP/zqMQ6DFSQGKFeLhcbolFkD+6i9TKr37b+cL1lVlMmaYL6CCUtVTTqOr/YXAfHaBlYj3wfMKqieyQkWgLPNMtN0RnlauFywe1/vxF0W+//1Pu9anKNbqcVqmZGfBWVh/mmsKmsLvxcB7LH9ZbZVdeGd05aybZQUT2nM2f0FJtpFXQjKxkxTy9oQ/m6NsGKLTbaXp0HR/MyCsjLbiYGyqlyJmfzltl1VF3ust5TX0y0KJVmUkFKSsRljvOae4bOk+azaFUp45V5nbDs9F7z7R2/b2ycAYfFjHgozi3J0/AFy3+c6bUkBdSKm1JVKqtOWcB99c8qqb7SfwBSYo5PfeM+TGEgawsK28a3zRnojKetXoueQ7SwQ/YXuPkzZBbz5meRvNEe2JfIWlLWAcAqU1XieAmUPvfJBB1uXAJQd9cSUacYx/k5pP0aMMIth8lmDMXvdqmarWnkqBiqJCapXcoK5CHMSxn8qkYpkiDgeTF8wAPrsL3c95Z9/KrhI2hBW4zV1fpnD8o7OO8esniyRm6DUMXUMy1AXKIuPBYQjAjBNSQNIEr6q6vOEjcbh1L2QvivHodKOPqUKtZUh0pudn0s6heQEsmJ1QVkl66tWTCCLA4DNWv72wzdx3zjpJt8FMb8QeZbAbsW4NhZl3g3MF6geA69Aliyl/yoj3fAcRVUsfKdZc4bVxPYYWr/xvPDtIYHQBco29tR3gbIN9B+g7GI/vsjrU8VYohaURVeLlxX9kwM3Xd4vctqTLauPLZcLCwAQgxc6NLFR9inUoUp1kxaq0mas0p0q82Lxy+SerHoRqwITFiaaREqnTFnyOWft7gfOWISgrC3TFjhjM84s8ljsVQGqdV5NjPXfKrPmv5lEUX6HjhPPBQZgRaUhYprqWDHNQ36zk+4jtl6pw/T9wr6nZBAh9thEiIkfmjiAfEx6YBPvt/FyPmsvMBKQnJIsmEkwUqsGzHDY1mH5l8q8QqBK7tFIT/BcEamycE1EaTcLupzQYjJ3Hxkk4JLa7BIhC8r2+fo8DnZ4EdtMjNRGGJf0kbRduc+U11UNASb6luaAR5wjLBVX2RN61twXJrA79e3pjRXKpBC0yClj3Cnh00pJEcvujsnjiOVatQTO3hcl7kLpm6r3Tttr4RkCljGAWUaM2hcghu9zaNio3/XN4b9TcjEqGWYbSnkZG2HuhItfaWyV6XzF+kFjHWA8SchYUHED06CsnFjPfKhFVrZYE5ieMtIsun8qfyvSwdP3lVK6M4Y+5s0C0dREnqgsANZJqPCu/WyLFdtkNbQYzH1ntPiA2Q7DvShGPP6Kwyhmw14L+gR5Kiwoy/yAhbGCBdVi8/Rwi8879X+zzzzTNPqIKeZK6lxivKFlR8IWySYqdGIVJGV9WvX3KiZTYh1a3cgQlLVs95j+f0772salhD4lx8CQZMAZt/mkSqiHqXNYUJbvIizeGCgrULwR0FBgVQqUstcdzrcbMQwN+1PanTJ40u8AABBEFDE5AeakvL98i6qEmMZc+27rLuWNX5jTP/zsG/7+KOlZR9c6tx267hhRporJVu75qmwnCaNchqYdGz/85BOHNiRO6wB9NmTEhEETST1C60/+DTucd4OQHBuADOsumJE6ppIEgEEYvSKlY0FZK4WRAmWV/Es9/0qc0xYPyk6a4rWHbTA/gRXMupVtSKTEQhqoaATDyM4Nvk1ofpOcL0tm6ph6V3OkgthH1VcQNa6+9xkHWUZaufxeRHrQOSe98o7b9Kzhfs00c/eZvJluVfOpGPFB74Fd2wCmaT2v80tWhTbQlpT8kgVl2RetYsgsrYzYmgtQEHaxNHHrgrKa6+VUINlrlJwbFXf07bKfezzENOIlb1HURyld5nCfMqmBEIfQ/kXEClVuFemrq8oUJv7/7r+BAxTvAmUbe+q7QNkG+g9Qdr49L/A6dDGgxIKy+2y0rEOzq9dCc7lhh/Z3G5813JehU5LN4rbVYfVYAbVYzLLACDO22q6MPaL2anJeltGJXZ8WieiSLT5PD182VsRKw1ANEJNIOfoK+Cj6kISgrP1g7njBnX4iYDWCZf6VC1Tba5XYu/5GmRjZRwUT5D0uvsuXkcEwYqBOTUDEPNG+sYw5v6l8iH+ngNtWP2+x4ysxkHL7JeMHCEYJDYEhx2nfWd399PL7PbuC9wRgvgjYKLquFCgrwCE0RdNAJidYjp0acPSu5xjucBwmSmTdmQTlyn6ovPTuozdzsGubGRaUZXLL4iHFioNxsu7gm72LbaO6olq4FzHbi65Tukz6/rTpeGWAMlbzUaY8ZHvJYMMW5n1ngVGW2BC4U2Ygou8OZU2YBrYixBRMgQoDzrzNayMPPaS/g31RJ6QBm9L1rnpMsRvCxVeM2W4Tc5xHZXahYaXaoBIs/jsFyu5w/kj3wOflYxyH7+/ZN07wju7oyiq0QLLGErnXGnPHDveljJMSwLLnSDqaACaURCoo+aQqJxUChsPryrkGFu58l4vOobHzH/tv4HrMOrPb7jcjfDl/jr6sdewGJCIhtMIiX/NsfNhSuYk4C2oCrheFKiR4jn/Ubxm37EJz+cUv446NFCibeub0TeIYVZ8VJYVhUQ15+AUPiDRSiZBzb9lGCd9cuYUY4BqCsv79PPkmP3bXde1mXsS8uWxxTakzDLQUs8mCsmHVku0jlZ428n1sqzYrkb3hvKGxbpt2owHXcu9huJ0MHWPMZ1UhsE/Yt1b+atgh/R1VI7khpjHzzg2XX8jxbZV/AMms3+2xlh9febcBTVsRkoCIgW2YbKFTjHfAZXc/7Rn9/Lf+n3/zP76RZSZtddpufUaO2qbc/E6gLPJQrA9IOu35fxV8J2z/hVGjNfi0RpIqRaedVKDhd0DIN4Q5yLrLLuAZnSIkcCwAexjqWhdZUNYeJwXKwnBFmi4Fymocoi2M+cjBUMFhg7nnsLEvlEq5yIy3TGordq8kdRfT6I1tr2c717gQcy804Jk/0ocAqlQuSgc+p1K2Lfk1/xzug48+8VhDHfmy0I9Cc18IUefcPFU6QmsbfYP4m2Sh9F1MAcJKKEOomalbN782SK3R67w3sX0E7luJPplVCmwuGzeK2lImpxjblyQv6wFJp6iyNcbkFpO6qA3ZoOzbHzj8NVLGeGKUh+cqquykMpTnpgiYFogPCe5/9+/n8JvoAmUbe8K7QNkG+g9Qtsfu5/sB/aHjt/SDpg0LysLyg40ll1UNaO0lOk/WEfCJYDAeuPpifoBX2a/aLd3WUGs21U1iItWZZCmjClMQxhw6PzGXQp1b4Af/nTLCkE5tEUMlBGUtQytmyKLsMWVPuHXmshQZmGB7sagkUm1iQXTgZfd5wBGNy7N36uMXoWGELLEU40lsOPZPAbcNPPa1dxWoXsZMorTosKse9JlZG5Qw0Zc5rqWxRqb0+jSQ4x4Je0YhUIh39JHJb06jnxceXwuxXOBeE90qTFOxIeoucItunAVl0Z6CPZwCsbQAzk3cFJ1XjFXJCFR9uHofO9RPAHlvYGMxKUIWImfCq4kppaJMaJhQDjmkfxszgQULJVIpIx+1VQYiZWWgmrC1UnOrCDxT+SbXickXfV4nYJdgksa9k3lIneNoHxlQhiz0o//5sO9/9LhZNBJi+WhfQC9AZquXZttiF6yp5xmjE0yJiJ3X6umWXGAOz9wJkz+5TNZYX0hfs4hlo4qMcEwOj4eOLIYsCumDlWkVC/iMGZiV3T8lO+29CPeRUZTYNJr/5OjLIhOCKZsNgJ2/3/esQ9YhpRkctqFK+T+GfpiLhsH7sfSCc3qwarmF5/IlwwRzPEBTmF1E6j4JxGUbzffK+le/W6bv9Q9P9gDK6l+fxzuutzLanJZLjEVsG9Y/dSp4o/EoBspqbC1iuxVdl0pvy+aXJHRpz9sffBzV47WgrBzQY0xZmE181x47eZuk8WjZfdA8JwXa2/1lRMh3B+BNzPAiQ8Cy8/O7mFOpBbXAf7ZdeoE5PEipEPuJ/w4lXMrOraQI5bo95+/hKKtX0N9X7beBA+wA+C3TlWXBjwFolQgNPMN9Nb8XIK4TAAAgAElEQVSH/IDUWSqsU32V85dtK5mrXFkxgbJU8Ky06NyeiRa+C0o8hmZ4Yi3TJlumLI8M2HyMR2gPW6M86a3q+bWgrDUSSoGyGLoBYKZA2YvveNLrGhN8F5CDkTa6+o/rvXvSq54cUFTVgzQR+8eMtsvuhcbRXDkfGZTlgrgCnxlvr33oeW8uaA3Mctqs7zIkjBffnFriXgf0krwFJArWHEh32bDmoiKv8LtkVbb8n9u9TGMqSaM1JwnEPj3n9TrFmk8zjrYidE5rPqrrpJISPeZGQFkZj+eOXXw3Gfv5Bj10wlZeV18Johh5xSYnUv2Tm9SV1ECqissahNtzFVVDSq6jSIKJ8ZYkNHINEFpIBNZ5PlvxfMyox+wCZRu4c4CyH33nnOSH0oKyfKyg1qs0kYkfrCXAkPZw2pVrM42lHG671Rf3rothSb6YSDkTSo6FTg7ZkaqLD/bV4E3JIg7LsdJye3ukwcnfQsapttN1Fn3MQlDWsklVympBdu7Vd347lU2VuzikPXaxz38XOQQDHgy+YaprLMEC++iBK08DnIixq2tNlVWLecZ2dUpVG3glCnfVZLDMOEkHgfHL/WQCb4OyGMpjqkZswc69XfGYG/xAOv6krb0hgkLb67+LdP6kXZmrdyu2W5n2qb1GLYIpK2Ny3MywoOw3V1/Mgz4wOZiw2mCgXu+Um/09Ccsi67YHcLTIcb7ouGK4sg0Mgh//ebR/T3OMGATKwuyD5ce3+fzd+vqFMQmA3ovN7TA+LNOnpMwTs8OUnpPar0leTtvq9qWSUrHvlJJauc9oURuQIWGRYaVf6rRZTJBYhj9Wbq8xFbCBEtu1l5nfjX7y1elkeGxbxFxMgbJKDrLPARsv5+aYbWYPyoayIgJWU/q1Rdefo6+pxGmZyZCYTjpfGVtY22kRWkcvk7JZJAZSfcg5xMa5/9gt2vTkxNwGWCTpdfGISd7AhSQ1OmgKacGzmML0Ap1mG7k6vqlqiNi9sfrELN5g+MACTwVzAuZMPAcEyW1Y72GIjcffU1UhqXOov5BfYCGPFBHR6oWOWOAhQFf0TEsTTzqWMVBWlQs5pjaxc8X0EFNtwqiRkmG+3YCaNulkQVn8CACaQlBWeoApB+vc75uS+JZVmNqXd4p3S3NDfVerMlTD40vbNQY8s63YjPwbZjjVOgoA7tU+NwWuOq+XdMD1P93IffrZZ9MkPeQDIYmdMokIxtRzdl3Dm/rmhsbiVOWexmAMCzFiYtxBZkExfvKb7sZHXky+27ntiG0nsB4AA+Yc4FhZCJTlu7jNaov5kvtQ6klJ4VCGQoA/57DsWsmbMc+jb4//97hpfuf+o20MUYa55uinpnhnd4USsSlQVrr1KVCWBChrI6IIlJ3w4tue/V5UqSS2qzUgK+tT/S4CUs58yMod5HqnnHfbxLbkLqSNiS+97WXXAAuJkAQSa7eAsfnmmNW99u6Hrq4eMvqq3Hd9hzX35f3mG2vHGDF8+ZsSj5L3iq27kY9hbcIadsSRU80WNZ6TQLjupxv6Z7bZoe+IJWCo6gmmKtrFjYCylqVO0qwsJG9hqzVEpIlJqVjN59SxZbRWdm6xWlMVwhYTsMcqApyZX+PZESZ77P4aKwCg/75/Py9P2Oq5SllfzOi/d4GyDdzBKqDszmv39KU8VkdWpUvtwZY9+fovAD+kC7ZfYwmvkxqaI2jikDOhpOvkDlmmgxfrZmVMASBvHf9SoWbN/2fvPMD+KKo1Pop0QYj00Ak9EGog9BI6CIgUQbCgEQREVCAkCAImhCLFi8pFsHNFEIVLJwkQWgo1dEhCJ/TQCZ17fxPej8lmy2z5f/Wc5/GRfP/d2dl3Z3dm3nPOezhfm2L+Oy0ymb+r4mheZEWSlFVBhjwvOzIDRALhDTt2p9U8aZpnyYgujo2JkKMy6s8umei1jiAeIQJJDcAoQEbEkiwrMmqlodf4BRUW6wWu8RpEnyrPvaJCYk4E92+dP26mqNkxR27p00LLWlpqKwslNhJpk1+SlA3JhuS1ldIdM4ni1ew/bIYA/ISh2/iNQYyRVgYetw3eyhduaNJCUnav9ZZMTd/mevqOVCl6l9XfUEag7D3pXM6DJMZ7zjONiTTSudqgcU+Dd1jVO8sgJ9CI5JtTVERCkUVFutoxFWzL3n/yeKVHppEr2iSEunBVr6cq92DH5quqyQmYlrJPYSw0gkOSUmQChWQkOcC18/S+Nz3lBgf5m0Uosgnn24CRFvrO+x85NiYQtGwIZdqEspklEqyMxehrilQqej5K6db1mb9Y4BfJSZA2SRRUmrOl6F4U4ZXnRErTa+Td2OU3t3qyk3RgyHSwTWKoTQOFwXi2OHuP+Oc9XodPFqOlp81gmoZb8h5DOSAis/ZYZ0k/7zJWprz0tnv85bd9vx9/+R3/32TJsGYSKZtVmTlMDS/jxKV/eq8grCAO2cxjWU7ooucW+7uihsus47RpVaRSGilLRBzrvLBwUGyfOK4MKcv6jdRbIsqSMhshKYueJ4RVkrAUmVpXD7EMKauoRGkvFxVqjMVOqetZDp6wAGLyu0H6Po4F2a1Hb+W/LTGmtSeRxszDvNcyyaZIXitPV1YRghDrROtSKBnHbZHh0Nntt7dlRpereCtreNYyKmSkdlVYDifQ3cdt27b2Lrpu0e9kuUEi4cwmKOH3+60bdT9gSCQsckoUd1UhuLA4sfZsSV11zZ/0LcyOEBnJHgm5G77tyTlHmQtoTq6+xFfaairQlhyxWaTsH297wteHyCJlQyk9SKE7n5zmHXWhQaq9xHt8zSO5uuSKXg0LnBU9C/2uKD+yrBiveYW7VBisDMmntRjBM6MfetHPJWiFE6WO4bgo0mwOHSScE5vOnsRAznqKQ/NMiZRVIAT7kRseedFnCWHh3lUR1nnfJZ41zzzMHOEbguQBY7cogyf2eSWPE1EcBodIQkm1Ico8r2T7+k7FylVIBi90erNGfe/Dj93aSy3oKIYVmrIr8+4fuctRP9u8ECKR91mZEcpiSjYkEj3tApoHIFyJ/E0zaQkTTXvpjzbyz9xI2cLHlXuAkbI18BMpm6XDFUbK7r52b18FGs8kBTkwovS2OeMmryfKx7pIA61GV73XSBUvuQ4fWzYARM0Swi5TNFXswrRoEZTXZ1UtVwVtjs17oVURMS9qBlITT2ReWrjSHvAq8TFT5KaIqaxICXl4IV+u/cnmXn8uzYi42PbMMb56pYpK5BUeS7bBAo7NJR88rnHJQRv5yKOzRk3y+j+qbp3UlqIdbYzUZmyhlTpjK/ZcbUCKSIdke0r71t+nDN/Rp6uXtVCvDxIH0wIk+R7wW1ixsmgxpEkxz6uo/iqSoGyhpDa9uc+80WXvP+/4kJRlXLGZTi6mSImkDxD+I3+6udfHbsKWO+Yq72V/4uSdojYq4TVDUhZ97mMuvc8XfokphqZz2SyyAGPx/K0Nlnabnnqjjx4iooUolJjFs1Lw86IolMpUlLZZB1OIiZWOvdrjmYz8llMiTPeqei2lXsUuWLOuIyIyrVK5MiPCuUgp+Ip2U7tp769+U3RUFikbkpxIVbw+/UOvcZe8N0XuFhV+y7pXaUJnRbqjY8s1YiRnVvnFNX5+wbgvou2K5k9tnqqk5soZk+WQlDRG2gIe+YHtz5oxH+621pLusnufnUU3F/kQNnBJhxPyFX8Z+6Qn56TTljdmpeEeo9UvAob2iqLhdU00f9H+xZKFIXWMiBP+rfTP2PeMStgqsggpi8MAy9L3jm236DitrcqQyLwjRJlrEyqSOyT5NNdVLexUhpTlHrX+I43z9mO2bpMgCElZacQnSVkVaUn7FhXhF/5ehpRtywb4rACg5B7qarWryFBWlKGvrH7cNX6eSK53FXWle4qNrFfWw8LzzenuGDqwLYtO7ciBJ0I4L3BCes86F6fdb/dbp7CiuxxsyQLGakcRg2RBkIWV5oSQ/uLpe/bzDsG6hvTVnr+/3es2Q5zybcojAPOuJ9Ip1FBV5kSy0GgYkRoWShTBSBT/19ZaInWtp2AbIjOP/39HJc5Rmb7DWaSs9nVZpGzoEICUZb+D3EFoRJSyziQNHmcZJFuaCY/YFPNkG9JKLTpf65QsR1xa30ROH7jJcu7GR2YEHRHViWMAS4ueTLYT6jvzWxm5s7AtcREUdDtp174zkbLJa+qby99VkE5O02QhRYht5jv6icQOGTEytILR/MWKpBrY6zIH9Vlkvsx9dbKfWjOEa31lbzBfMmbrkLLK7CySk1K/5IyNdaDe+eRrXl87z9KKMKYd30agzj27D1hLWqgTHP4WalAnz9Gajn0QuuRppmhauJRLf7Sxl34zUrbejGGkbA38RMpmhYyHpCz6PXhKk6mPpMdCjsZ6RKp2V+nSnM+CBZKYBUoyYkXFRmJTNKVzmpUmlddfhe+jMcoGvCjKUClZeI2JmkmzUQ+/6NAOJaUT72maiZRFA5JIHIg0opWJkmExmJdyqPRI0j7wGCfTMoiI+tp/3eo1SJGs2G/DZbw+JwvVrKrbaX1kgfv1397mN6pagEnXj8UsqZdpmp7aEKjN7268rCO6qTMYFc0hv2JIh7C/YbG0stWsw3bSSFl5kH++3cpe6iE0pZLyN6XeZeEYalcWkYta4JQt+KSIv7DCblPPNSRliRAMK/LqGqS5MZaLsCjbJ7z2vHtVyPaQlEVrGDKZheJDJ25fqEenc0XwQchtttLCnniGhP/0MydHTKSQpCWyPM9lxkdZ/JLHS/8rudFQZW8i/urqfCkFMmvzG3sPii5II0wVxY5jishnTGn0fEPOHj2p7TJZqeQccMAFE9zNk17OjJQNNXIZAyxwSfVPZhlQiJJo/3CDG3ufHCddL5yyaSm5KlyRV3xB1ws1wtBE/8MtU7xzN8+BoPe3jGSKrqciJ1ma7+H3g+9T0rTO0d/DtOjw3Zg0bEeH0zM0njNOgKTkQRr2WufEFBeTI412YkhcjlOkHf/NZptnlTRtFvl77IZObSiLh0js/9zzrJd0wmLuvcxYTB6rdVMZnfBwo897I+1JKrpfNGhDfwnpJCcLysb2VdFmRZqyYXv6/oWyVCEpi6MakiW5Zj3u8gdmZFrtspqPHKxqZUhZpQpr/SGSqUrkX9hf6eEjg0HQQZppHZJcU0mPVuf07f0VBxlTZAroELEfkjucq/mINXKRrqwIRb4Tz7023c/pZBT95pvr+D1UloV7LqKlkybNdcgpHD5pes1K+y+qfVCEB78ToAHRDnlBWvM/frBhZa1i2kNyATI0rKugDDQRaOqXSFP+zfeEvR6GkwyJJgqw4aCAwP/BZsv7IlShaY6BSObZyiTrk0XKSpIji5QNxwVj4u6nX/N9CI1CTRDC7LfyghfURySowLesaf1RFMkvGZaw/kjRtZS1CcbgRz0MSWVx7o0/38LveYssXOPGZrAm22T9wzqIZ8ncGEbKJo8lWGyFITMCJeRMk7MoKb2FzBlrpaz9ttYNRHkT8UlEZZrJEVImqjYtM0fZjTiS+LbWIWXZwxMhnMc36F4kIYL2L4WYYyxZuBtH4qvvfOD0/7SRjOTPalcRq1lRrQoICM8vCiBSlHaeZIbWUASNIcfhNdFH7BRz+3ZMBgJGytYYGiJls/SLwgUCCyM2DGkfVYWWx0ZrVOkyerZ4PzGKeH197d6ODQBkMTozMkVMhAvrvOvJGxZGAMf2TylWEjHPKtai9vDcPDj1DTf/XLNnpn2woeZjyscfojXNRMoSxULqT9LyNiY+LeOMMb6QQtpCRhFFTLZU8CWqt6qpsug/Bm3oI4sUuUmaNZudtBRyRXvomnle5qr9qnpeW5GDnVYtVdk2FJ7PI9uL+hUWUdFGRZv4tHRXRVXQbp6Woq6rCCmiRCDh00xEEwUsqA5cZnwQwQn5gf5bskJ40b0X/R6SKj/fdiWvIRY6ZhjvyCdAYFEUpMnrK8o0z2ub1f9wwUqKHsQ/FrMw0LlIyhDxTxQD7y1adkR7sZFiMxijIaYNbjJaQP2OSQUqekaxv5MpQMRYSB6y2GN85nm9Y9vnOOlxxhYiyGpbJESaRIRkIUj7euSkHXwTyvgItdn4O4UR+VuaHX7RPb7Ked47rDkYcunN9z701aOTEbGK2K+qAa8oSPqZVshRG24K/hRpmMlBx/0SFTLqoRcdmmZ5UdA6J+ZblsRRzqss6QOlv+dF8oj0om02aRTYw5SqnJV6J4mLGMevnhGVxllr5ZkqB3NMUSSP2gmzNpLyFjom3ACFBXZi3i+tTViT/fvuZ33xTyzUqYtpp+wxIlTL9Ffko6KBiWqjMA/OZ4rkYSJDFZFIquzV90/1EVF55Brn6jvGf5N2S+R6jEnmigw2ipAxrkJSFucrUi7J8STCPZagz+pLGVJW8g6KQE+u+WLuN+0YFQzLi8ajwBOBEYpsVTvIP+DAY6PNfM/cFeOYFBm39/pLedJQax21y/vOe4+JhMkijeWIwfn2zQ2W9vIyFFr042LgSu4nA1dMhUbZZJJKyPqOaQ2NVAqSKaER0drvl9c5yOMqle5DHJFSICIfcoWMNwiOOpaWUq1o9GQGmqLGuV44v4rAoS/gBHGWlv0Rnk8brFW9/MLqi7lz91/Xk8PMWcm5VzJrWaQsmUxobWKQsvc8/bqXkgiNgIUlF5zHOzLzgmSkIRqjz5qGuyQeipxGaGuyHhx5xOaO6MUYE1m+T/+l3Lgpr3oynD0hafdYzDvFcSo+yH+X+T6HfZRmOOtbAprySFnOo2AT5Lkc04xj1siSF+IY3o8Nho3yROIfDljPgWHSOAZik/ViXvFwFehClo1smSLL0jvV/lsSNaFDv6jN5O+KUiYpE2dxXnam3sus7Jm0a0s+Q78xR0LusoZiPYXFygkVRbWiEQ7JGloRKav+sVclyCXNtK/AYcY7iERbzN6r7LPoScf3KFJ28uTJbsSIEe7UU091vXp9Lh4/ffp0N3ToUHfFFVf4Zz98+HC35557Fo4DkbJZEZ4hKUtEEeRSGvEogehWRstKj5KbYhG9x7pLev3F5EdeJGtelegQGC2A0zQBiwAMheg5No3kLGqjyu/a+LDxZROBsYE7aIsV3AtvvOcJXYjZLFPELr+HaUSKMibS58rDNvXFz+pYcoEu/SSRT2lE+ND/3O8YdyyIWDSlFdCp06c655JOwiIo9PLHtBdWCs4jX4rakrc7LDCx/rBRnmAPNbrUTqg9nEzbSbuWinSw8CIKO81EbpRJg1I7aJ3iXYUURTO0SQtJWaK/2ASFXl+NqzJ6wLH9U7EuFZCIPY/jQlJWEa95Gkhh2zqXdwSyALJ79tm+6IsW4GhjM4XFLDK0oc+K0JNXnOiUtEjCMvdcdKxS7dgMENmBScctNgOi6BphdGmV56b2VVgxy5GhIl2kT0EokwVBVB9OFAhaCAMsz/nEhgSigagJxnSaQZiy6Wfsox+Klh3aa0SGykTc5r3febjRJpF/aVH5RLnu899jfWZEXkFBtU+U15D/3O//STrppBff8qnkeYUdFelLBWiyOMqYIvqyUpkViVMUyaNo7fC9UqpsVjSkNhyk/D42bMeZCjgl70HyAmHxj7z71DcgtmCdoq5p84htVvJZH0lTcQ/+noxeK8JcDgRIiX/d+ayP8MZCx0RRG1V+T0a9xrQhHXVFEmmNGabeqzK8CHdF2LPRvfrw9HmSd5WIJ95HiKDf7bdu7nosra8izxXpFZKyRNAiFZIkZXHGUSiqqma9+lGGlNW8+qvd+no5DI3fGKdC1jMKv81oZWY5fhWAkSRl0a3nWUKQEC3KOj1G8kROd0UdhrIwScmxouh3EfyhNnBYkDErspFvIt9G4ZnESJF9BJ2Me/xVl1XkSdrOMfUj0p4DEWQQikRHMufjrCWjsq6pDkkYkCEsk0S0HC1cM5lSre+e3oUsGSKRkbShzEIRXVmkrOamLFJWzlbahJTl3URaJzQie4nQVkRv1popjSwsgzHPZ8vTb/KOG2Sl0kyyHGUk6Py93f2s+9nFMzTxycBkDcgaE+IKywveCPsRFrOtkzGhZ44+6JqfFfLLWtsKV42ptIhkRbPDf9zwsy0ypcdYf+1w1s2e0MfpTZR60lQgkL/HzMX6tiS5F0Unq/hpmQyLtGevOa1oThBeMVr24XXC/QukNTIX7OsnvfSWdwLEylWIQM0ao2GdGV2/iJTFOUVGQ5Y8J+1ofsfZ9u9DNnZkc8bsl8q8oz3t2B5Byk6bNs0NGjTITZw40fXr18+dd955M5Gyp512mn/uRx55pNOxRx11lOvfv3/ueBApmxViHpKym6+8sI90zEpn2+Hsm70GU9mU5tgBG778LLT2XG8pL96eTEWWllNsRKI2Y1VSfTRp6R6yPtix9xh7nEhZUiXwMmNlNc+UasqClgkJMW90ZFmM1U1/030kSVmRcngl2bSkOQN0zt8O3MAdcuFdjg1tbJpMLH5Vj1OkKhrGaEDGWigjQAROGRmI8BpqRxHpRSkfKmTChuLhk3bIJQO4zj7njfML/azCUKQDbXjyaE8QFRWPSsOGxSOLSEjZu596zafG7dxv8Ua0XUNSlo0QJKMmbTZpm5wy2nuKxxy5ldega9K06MzbQGZdL/yusYiH4Imtnh0uVOQNf+Xt932U0CLzzekj+IgWosBbkembkqV7CcFAClhsKmjR9fJ+l6MsTM08/fpH3Tk3TG608J9IyrDQQpl+a0GX54nXYl1FnvR9QwKAYiQs+LEmnQXJ4ju6J41TonaTRRti7lsbBoqrhKm1fA/QvWW88cyI2mQhnGfScucY1gwfffypj1rKK3gmoqOsU4xrSO82TAkP+ydt7jwZCY5XBA7/rWKdNzzykiPdOm8NIcKsaKypIvOF39/AF8osMkmnkFoZo5EdykBlRQ2rr1XWFZ8Xz1rbO4ylX0tbMYXOiu436/fzbn7cR8yVcYyjS4q2MfMjGuOQDckNHHNen6Ez5Gl4b359/aNeOgBL23BC0HzvT3f46CvS6iEn2ViXNaK8tj/7ZocQxpijtnLT3nnfEY2F4WjhXkNStkxUVFFfypCyVKGH3JBm8Hf/NMFHR5fd3Id9EllepIOvKKfkHKe1ANkwJ+za19GnmEht9V31MZQmT9+SeyQFf4QyJuE9iJxOFsfVOIXYYb+QNKUvZ9XoEGEoCbCsDD9p08ZGqoX9gCDZ89zb/X6OdcRlh2zS2JpJzoWwOLT0g5Ef4P2VhQWbkkEH6/1qpHdEUz8ADVhJEiTxlG40f1d0Mf8N8ZJFyipCNIuU5Xyt2yBlWRtB6IfGHoFUe3T488jQrLT6onc0/F3Ec5ask4jwLVZe2Kf+x5rOI/AJHV/eK+StBv76Jk9QxtYWCKMc86LEi/qluTHMMioiZaVJnVZQDf1Q1l8xkg6KnmauYB7DURFaOGdmjcXweOkSJ3kKFb3rt9QCbuIzr0dHmmZhJ+ce2RM4VS658xm3Xd/FfBAX7yLZNnwn6b/ei6LnEP4ear2yLiR7mMAJ3k2ii/OixMN2RKBmraXDfZLOKyJllUmU5xCW1A3fOaKowcFI2TIjYNZjewQpq9tOi5SFhIWAHTx4sOvTZ0bKVUjS5sErUjYrrU7p+YT1s1lJkwtQ+6qIyQsO6VKhjlFmV/XC6gBeejaxpIclIw/LasTi2aEoVdkJi74k02PCqNN6wzr/bBEoLGCogMhkmRdhlNYak+pOZ9/iK2pC8iHqjnB3bIG0mPsTyacFJl4rniVpL3zM01KRlUJPMRlSOdDyO2m3vo7iFR1tVaNAwojVKoSC7jtJykoDLSt6UKnSscVPFF1B6imyIEkTWUa03rhjti5d1EokGIvHH/39Lq+HXGeRFvYvJGXP3nstR1q5FhmKsKtbACVr/K36i2sd0RNVyK5wscHinfcja6OXvH4YgaAIVqVu6thYTSrpdWbpgdZxXpV9b+VsCCMLFeEXRomXbTd5vJws6L+x8ShritTK2/BrUYyTiU2anJdE/hx72f2+SAimlNmyfUg7XpHGob5ZE/IPIh/DaFKeFVEWbG5Ii7z0oI28M6TIwoJuzD+kerJBzdM/kzxClaJRSgvO+t4odbnIuRmSsnIWxmzi9e0u+v4rLTrW6aU5Nav4WvI5hPrmWdq80v7m3GS0ddFzVco+MhT/vOMZx5yhwp5ZshdFbcb8Lr33rOjfrDbWOWmkozCUNPzSgg7kTGbewpGC4192yjfW9NHEGOvBI/810TG2IcuIGK8TXajxjgOY5yBS9oSvre74Xofrdulc1kl31T2VIWUlaaI1QxGpGPMsRSgWFZmTHiCZYROD4jAiU3H6X3fEZm7tE67382pRZJ+es1K8cRorKjDpLCrSlZUDOumI0Dc0a51dFDmp4j0EU0AoZMm0MQbX/dVIX2y3jFwU+4Jv/mGcd5oTfUlKb1399vCZS+eRWhZkqGDSyU0GteheOSaZzaKsLtapFArLCnZQ1DRtMMdDdDE+eC6QqWnyBTiTcADmkbLap0DKkqpNkEtoWqdofZeVjaMinlmyUTHviwqgZskGScc+lGWJaVd62hRgu//Z1x0Rt+zdnn9juk/9J7s0xvSN5Vi+XUTLVjHN0byL1z74gm+iiJRVgBFFyiFCJfMj8hOHDoR/srZKWv/gCeALcHRcfugmMxW7U5EsziuqLcMx7NvJfEzON4p81vXT5EnKYKdnz7r+9imveI13shThaLQfQ+Lh3DFTUrOgi64l2QaO+6991/FZWnyTkEPAIRvb/zSpL11bztNkX4pIWbWZV1hd+yUcqHzriCw2Urboqef/3uNJWYjao48+2p1yyiltpOwll1zixo4d64YNG+bmnntuj+Brr83Y/IVGJO2He5w1S/EuHTPpxbfdHufe7id2Bi1aOhTYIpoqzbThjKkyXOaxi3DROZBM+/Rf2qd/JidOVeZEZ5E0tCJTWmyZAhFqU1VD9e+Yis36yk0AACAASURBVOlF/Yn5XaQsC/U7n3rNL6CyCpjktacFNBE2kLMIdBMxwkTVhGmzSno1JASp9hgfvT5DrvYTe1gYReS7FmxyCuRFTzXRz9g25NUuq/8UasvFbrbT+iTSVJG6KiKSJS5P6hHR3FnagclrSKMta+GkqJiqFetVKZaiR7v/9lYfBd1UOnpIyhKJLd0rPPuQDFjRpix2HCSPEzESU5wrPDfUhAz/HqM9yfEhKatNXrLISWxbSiHM2tzoWwdBwPhrtSntShtkRVvE6pjF9E/Rk4dttaIjghIjRQ+d2RhToce8FG9JnmjDpMgC7oPoGuYfjHR80vKbMGn0hYWcpJkaS/in9SNJ/LCB3+vcsT7iAqfAf360sZebiTV9D3DakfpG5Hee/plS46usL1QlPnzWYT+lqZal5ahjQ1JWxVl0brKwWti+0o6zIuR0rCKpYx28OFI//OST6A2yogG5XphaHfYVIgpCCivCI/msQ83k/5nwtN8IqxBqVmGx2PGSdxzpwziWy6ZrixTh+8kmMk2vWBFaRL3+4C93+igxyHWK7CA1QyTrb0Y/5tDDx+qk6Ib3GGpX8m1AKgAjsgtHY/ht1ya/buFC2i9DykqORZqMcj6UzSYK7xuCAJmkoiKvWTrnirQVQa31Vx4hlCaZ8Oxr033wAJamWaqgA/RJWaOGlpWVIJ1aglcgS5OmiLuseY6CwmQByfLWT5KWiA3YAAOcNjj7iS5jnZtV16LOO6vITq3HQskTgn9kkgpJi57TdxJiEOdoXvFd7XMgZd95/2MvHwRpOv2Dj1NJWdZQjCGI76zsA0VZQspSJwTya6Yx/NmYUNFEiielSQ+pVkpMynsW5oq+zlqHqF5A2b2H9sYEZT38/JuO9wG9VGRBylgo+VPVAc71wu+hrl9Eyoro17uq+iYKsEmTYsq6N743yFHgDErO9QrM4L2BRCzS7lXkbXI9wDtI9ossNqAmq88UNsaBt9Mai7mr7p9BZEseTfO8ou6ryEKF9VLCYnVaB8RkKNCnMGuFjMPQ9J1P3mMRKZvXptpC4g25N/gtImX5byNly7zdsx5rpGyKzmwaKZumMXvvvfd6UjZPwBrhZjynELNYnpakFnNNR8uGelr0gZD/ffsv4yfUpBafjk2rSpo21LI8VjHDUp5Eji2r1xPTftYxImWZGJ585R3vNczaYOVdRwtqHROrY1em7/poQwawqZcQuibqcPGpKGelSMvLzcd34nHblo7MVD/x8JIGSPGjOqaFWNk0TJGjXLtM1EKyryrcpUq0ShX99V79/HuQZnhevzzXl9oKVOTdPxXCIefSNuJsRPEGQySWvX9dU6ncVFhnoYjleTHLPCtFtZDyOPKnW7h1TprRVwqi8Y6XqYpa5rocK8IwpqBW2LZ0lLSQ029FEUI6TgtB/q3FHWlDpPbJ8ir/hn1RanoWOSgCsknyMA9nbaSIuFt76QV9xFJTRb50XaXnEa3AgnSbM27yC+4YTVTaUBRCnl5hMm2+3wnXex1ZIrtIQSaaEKPCMYXNmrALbn3CUYAnLJyiea6oGGXe9ZOLXKXCV01xFUH4p++s79cgLIhZJOO0gVDJ+v5VkUj67Y2TfTXjrNRCkXpF0j0hKSsiSgXI8s5VlgHzIFFRWTqZyYieJsZD2IaiffjbGXut5Z3aSVORJf6u9M/Yfmiuo+0Lxz/lI8HBHPxjdf6T1yINEltw3jky5zEiWNEOjUlFDdtXtLz+ljb2dE+QrWxylVYfEtw6v0oUdx620nHGUU5ELyTRibv1dRDFISkrvdIy8g1Z1y1DykqLXJkAWpvmFewrGkuSKQkLPaadk1VdW84j6TEq8pYILki/1ZaY3xG0EZoKCYWFesIoyzRpMkXfk0L/y6+t3tYcz4nowGQELweEMhOPnzxrle+0YIWwn8m9UJ5kCg6bb5x7uycciAbMM2Q6IEeRDKCmxF8P3CDa0VP0PJO/KxoYCR8iyrWuTWZoaX/Fup19wkzv7d/v8us6sjMIHsqLkGcPi1zO2ksv4AtmEsxAXQuyM9IiZWPup61A18EbuQemvukoAhmasgO3PfNmn8adJVsjwjSm5kNWvwjKITMsLUqe8YZEC0YmV5nCvPoOkEXKPfA+UHiQegVlLMy8qKM1zTUVGMN/f+ELzj2R8g7xm8aY5jg51iCmF5xnDp+xBBYEUvGexlroFAmLayoimqC1/9zznB9f7KOyTI7cNCdxKIVQRVYxvKYy3JL9ALeNTxntn6msStAKjkmtYUMtds1bsQXU9V1M2w8mA03U3zwd5fBbG0blJ3FAgx28kYwjqABewkjZ2Lch/TgjZSMjZdPgk3xBKLqedhwfZDYLCDcXRd0pnL3JxalSfrQwZTG67wbLOCL3ECE/fc9+bd1WRFCs9qFSZEjRII2yjGmxxzmxgtZl2s86VunwRCyuueQC7pHn33Q7rLF4ZnGmrHZCUrZVUSwQEJBxfFgxkeXyEIcfchVOC3WCtUGsmt6jCKW8Qjqxz0Re77SiWnltaMPIMVOG51fBzGsnmSpYtOCLvS8dp/SgtAqcIrCqaJSpffWX94yoX1k4Bsr2WceHpCzRsWEFcSb624/Z2keCt8IoOkDULwUI8ELHmgoA4XSYc7YvetF5LPZbpCJTnCN9SG0I1YfYwnL6DmbNBVT7Pv26Rwu//7H3XnScNrxEKPFtZeznOQ+L2kv7Hc08FudsZv78vQ3aIqoZL/8YNMCTHlmGs4koQIiBrOJonCsNQJHmyx1zlWMDzIb89Ose8cWtsOTGvsr96BwiBiEZw0gzEbV1yV+Rytuutqhj/quT4kohl8dffsftvs6SPqVOUg9ZeooqdFglCk/Rd1lR/orsKIrCDUlZpa4rfVTOsrRnp3ed3/I00iFRIFNEWNQZB2nnon3LegrLwlHOR44pIqmT1xChxvrvf8Y95e555nXH86TYZZViXzhJNjp5tJeHkeGcWWCeObw0AGtC/nv84696Qj/vGaThgfOCdwNjfrgrRX9bjhUcXOil7rzm4v46bGhZn3zw8Se+H+iH8q1q0vi+4KzAgYeh0Xf811b3RZhCUlYR+VWc88n+liFlk+O1jsSI+qE2i3SVswq5PPT8m75iunRg2fAzR/P/obGW6bvEV1zfJb/iPvjoE+/ICkmQUAoorS8qmEsBKYonyiABIdtC3dTwulqbsE6B4Je1Rf7OPbvXq06zUOeW34scuCra96+DNvLBLFmmqFoyFf5wwPqlC9OVGfMKJtAeMYuUJdgEp0naXk4F0bQnzNIKT/ZLxZ2Imt1i5UV8tmVe9mfWfalwFJGyr737ga/t8dSr77QVVz3/2+s5otYlR5M1liVzUaQ1nocvGYdEZhNlec9x284kmSJnYJV1uwo/k0VAWjrf17J7H/odzid1IoL9nPWZc5X/jiFlVX9DziOeA2MA4jR0WpcZvyoISHEotNy/NNsXfUGpL8/5JXfG3mv5IsNZ776uI4c+zhzWfqGJQPbYrbKI1+euaiIddT5rW76Ddx67jV/7al+eVVeo6LrsCdgbYOGz1XozNtKXOZRMKRxCZM+GpixIIuYJtJGlOb3C80T0prWp41QED8cPpCzZvEbKFj31/N97PCnbhKZszKSE/iPRskQ75Jk8SXjT8G5SXKeuUfGeRaeiLSH29h+wrP9bskBK0YIo2RdV+Cwq8JF2D9LR5bdkwbG695x3vkjZGEHxvHZEyhJRcOWPN4nS1alyX1q8hpOMoky0eOG3YVc/7ChSE2ofKaW+bMSO+ikyKdZjl3d/eJyJFnvwxO19ZHSsaQHJO4GnuarpuRMpRgQoCzFsyvCdGtFwziPmpEWYpTkac08iNIgspLiDLFngIaat5DFJUnbTU2/0WstYVbmF2H6IqFLhn9jztAmD2CJCh28XFlvxXLIJnCMNM+nsqQ+xZJ8W4FkadSrGUUUmJRaP8DilzqHDusri8/vvQl6KYpVrcI4iHNCLZPMggyjHEQRZGBpafXy7mOdkeZIK0iyHUIYEg0hXOqZkBminSacYadRsHMJnr0jQrOJOsfhJoojj+QZecvBGjaW4arODvidzW9IUPZ2WLlzUf6V4ZmmkKoJUUbtZ7YWk7NHbr+K/LYrKufiHA3LXR/omZRVk4ZpEPBH5xGafyupNW5huGM694XUkK8HfyhYvVWEdIoVIE0a3kfeIdwZd47JFOxVxE4tD0fNLtqPNI39POvh1rGSU9O9QIgFZjOsefNFvnIkYb4VJI5q2s0hZFbKJlb3I62cZUjapiSkHdB1yWBqURTrJWZqBFMvE6R8SUZJ+Kno+oe58GKGV9o3P0pVVsEaWlIRI52Q6uaQNiIaG7Emz5Pxe5KgUaZLmaFf70mPm33XSy4uw1e/KyJKsQhYpe92DL3hnTqhhrjZCMoi/xeqlqsAkY+P7my5fmZQlOnDq69Pd3usv3VYELSwqpm+rxl1adofGL/2vQ8r6b9dnzrzkN53iqBRJLdJKT3t2KkbFnv/pV9/18gFZMgx5zz6cM5OOiNgxo+OmvPyO10LFYkhZFRxUVg8yUjgOsSr3on4owIT379Q91vRkHt9/Im8lXZK3LkwG2IQ4qAYGf2tCuk9rXAIuwI8gOzKe+U6xB8Gqcglaa9IGGZC8V5jkzmLl6VhXrzj0aq/TO3n4zKSsvotIY5EJKCsiZUX0prWpNtpk7yBlD9nEZxkaKVv2rZz5+B5PygJHWNgLknbQoEG++BeasXmmSNlkNeV6j8T5ggSk2ZRNJcu6rqJcpE3Gi08qGR/XJIEhL3nSe53VtipwxhDTyTa0eOXvZQtM1MFY5FysVlTWtUTKxqbr1ukzUQjjHn/V/WDT5X1xNkV2hGNEUTxhMR8tcKsWIFOaiCbMqvfwyafOLX/MVbkLgay2RSzXJYZDUpbiC2w8qno40/oqr3rSu8lE2H/YjJT4CUO3KaUbGV4HnVecO6qYS1QpEWRoVpEKXMeSpKwWTVTTHj90YKkI1rL9kMh/bDVata+oViK0qLaqCLZYgq7v8de1RVBpQZTUX4otpKbvZpbmqN7XsLBNWZzKHC8PP2Nk1cXnd1S7rlPRO+vaisQ/91vr+sILvFdLLDC3J10hyi87dOO2lGk87wf++Y6ZCNk8LzzXZLwz7pmzqIBLlJTSSYnWIFIHayLtWPdINWoKj4TalkrTziriF/tswuwKHEPg1pRdOP5pr5uZNReLOM0iE/P6IQI8S8ZE6ajoilGcIsvCDaaemfSPKZ6RJPHDdlSc5vojNnM4QtOsLS32RxvnRmpXxTx8fko5T7alfvL3LImDrOsrMhxnOVqLOJr4NhEVTpRpGdIHAmrAyaO8IxRSA43H0D755FMfqU4U6bsffOT1Infut8RM0YdFOCkaj+OyCpGpKIzaahVhntdXyT1lkbIiMpuoa1CGlE2OaUVcFkkPZN2rJH3yUk51riKhkseKeAsrf0uflHOJYmONeffTM+ox8P9yiIbF7whC2fO/x/oIwazI1WQxW9qXjmNWVoKiiZNF/7T+QicV7cs0I8uCbAtZUS0MrYtwMt7zi21mCZKBoGGthNUpwlT0noW/a95TxHkWKRvzPdcxWY68ZBth0WiyIqpGyqb1TQEg/Ka1iqRt0rCVvATHU3ODtXxVO+XaRxxZgUmtUwW/lPnuqg9kOTAfMR9OfeM9R+R4le+LsiJpt6zEVxoechrGkLKKUBYO2/dd3F37wPNexoQ5papJ7oTzqcMA+a0CWiLi8xzgeQU9ld1J23X7SRvwJ3wTkUpgf/DDv93p583QQj3YMpiEdXXCMUxW9cMvvOmlIWJ0qXFwId1CEB/ZpKEp0I6sAiJbZUWkrNokLjBNKoZ2qCFBgUckN8nYZB41UrbMCJj12B5ByoponThxYhsCEK9HHnmk//f06dPd0KFD3RVXXOH/PXz4cJemIZuET6Rs1TD+rEfHBhoh9qaiZRVBif4ZJCqT13c2Xs5Xwk1WrdYmWHpSRcNLlTbztHKz2gj1Zepudov6Gf4uci6raElsW+1Jyib7pEVE6OGW8Hgokk66Apqds33hC+7+E7YrpYnENeWV578REC+jqRT2mUmGAgUSSY/FmOMgSCBKqhD/4XU+12tb26dMQpRlRfeU6Z+OlRZbsgK60qHRliJVu6qRUgj5BwlLJCQp3Wzis/SYkUxg4UWkBNGkeZYkZeUYakV0ZbIfqsR79y+2KVUkD7kCJDFIgxq42qKOiCwsts/SsuWc+3+5nddcDdOk/dhLSY9Kw1FFFCA+0JZKmlK0q0QpVh0va55wfZuWOW2UxTfmuoq+hLw+a9RjnixjcUZ6InMJJDVpTV/8whfc9/48wVeTJ01tg+V7+Uq2RbI1+m6QZnnxQQMcGwp08PjGhWRPXpGomPsIj5EMSUgKaGNUdfGt9ikaAemA1f2eJe9L64YsPXhFu5SNhuQ6iujIKh6kNNKiSM6QlJUkTpEOpO5TTqm8DXhR9fWyYyF5vMY7f8+K7A3vUemfsdeVhh0RMqT1IhHC/V51/1S/cS3jfPjVVQ/5tOC6KZx5fWfDx7uODBSSEWmGZiXkI8Z89NivdvRplu1prHt/e+Mkt8e6S7kNl+vlI6pV2boMkRnT5zKkrKK/pZWvtU5Z2Qv1S4V6i9J/dTwRakS0Xn7oxj6K2M8Tn2lshvIOEPtr/PJaR0RWMnpL6xv/nfhM3zoGJ47R+jL8rqAVTmR+FikjaZ5kdJqy9kith0TLsjBDBhkZgiryTN/+NGeWsIotjByLS95xesaSJahCyiqYRtdR1kJM/+TgQPIAaZKm5rG0cSTpk7Q1neZp+oz8BYFEVU1Zm0hUIFUh01ipUiBVEec8JwhZ3rM7jh0YVZ8ivA9JPfC3JggvtOGRMcgjZdlv3fHkNPfjrVb0a7hQS70JvGlDzpc2rJeY3zsglXEYOoWSz1VBI9f9ZDPfv9Cuvv/5Nnm3Jvd3uoaChPRv9g33Hb9dpZotFNmDYMbynM1F4zov6Em1ZlSQTG0VkbIqmpY3Tqi5wtqP4r6XH7KJ3+M3MUaL7rc7/94jSNlWPUCRskU6sVWuL12UX+3W15E6U8dUaAF9QUTaeTkhkgnzT0b5agGdJJayrq/UtH36L+Uje8tY+EEKQ/fLtFHlWJGyseRN1jU6kpRV2qCiucICCGjKhLIXEsOvgjGpO2wGsaoFqjhXaQ4IgpNWV8ZYIJx38xSf6sQzq2rS4mLBfu8zr3mioY6cQLIfSteDQIIAk2lRX8XbHl5Dz5ENF+QsUZfnjJ7kvZ9p1UoVCRrj8EiSsmzCnp72juu94DylpCaqPBtSXogmRo+wjG7tS2+97yMnqcrLdwxSEMsrHBX2T1q2oeC9ip/ouCKNTB2nVB/+nbYoUQGiJtJjYzFWNAHHxxQriW03PE4ph6SJETUnMoB3gaISREmh2/fW+x/5zT4LQdJOr3ngef9didHsVfoYmyXSDFWRVpse+lM36yG8JxVtC1NxFc1dJ2WPayAjgZMUa7roG+ntODjSqm37650/3iGzUaVYyOdE9bLuxF0/L8oj3IRPUpMvOaZCwpLURSJJOReiniigPJNTKm8eUyGTkGSqMq6zzpFzhd+zrhFKVJSNTlcE0VK95vHPEUcfmzX+TrR2bDoj7x+V71kXVJn3y2DGOm7OL82WGZmsAne0GVuroMz1yx4rIk2kbJiSDVZ1rQwpK1JUEXR1ZW6k+bnTmot7uZciE0ETrt8hY/Y8d6zXUA0JKjkkFKGptkMyrSjaPdkf7QHCjKUwo4lIt6Rdevezjj3NLv2WcKxtZJKpKCpKqsh8zovJVtBaO3nfnC9HWNUifEXPJ+13ZQjpm1mFlCXqnuhH2TE7rOLYH8aY5hHIbxz/TZGySBpQ+AiTzryyVsK5WH0Ma03UjZSVY4Z9E8EnPmX7pbd9PY+qWYIK0kBz/83pH/maB2iRkkZexgjQYpwRfACpW9dUN4boRpxBMRbK9sTOQTHtaixxrNZ1oQMoq3iWAjnSSG5FhtJm01nMtBnq8vLvmDVsFhYaY/yO5ArSK1UszABI7j+UQYDjiLlOVkTKiujl+CyiVeuV5Raa111+yMaOQBAjZas8wc/PMVK2Bn4iZYsqBVa5hBaKfIhvO2arWnqlSj1Ay4voCV78Azddzh3z7/vbqo6rj5NffttHI5GGinZbkamqeJ7mUlYbWvzxe50ozKI+Jn/Xoq+uZEJHkrJUeSXyU4tvRTgrBSS8Z+mWVdmohjpPZTeYYR+K0rvLPsMqx//kn/e6y+55zlHZ+B8TnvFyEEldsirt6pxwYqQ6Jx5G3qev/+529/HHn7i7j9u2cqQx1xC5SyodqYF///4G7tLPRPeTzpuwoEUMSZkkZevgUPZcbUzLRhFA+FHEhYwCKrXyPcNiZV8USRp65MP0PNoqE/mjwmGKug1xEBlVd/NQBltFynHOdqsv5gsGNW1KpeS7w5gLSRei/IjyUJEhxu2/DhrgnYIcO+GJV93SveZ1Gy6fr7MuiYRhu6/h0/MVcR5W9+b5Mw83Yck5TaQSG7bJw3asFBGhfoVRHEjR8G42aUQqEF2crPLMpnOHs272Dpwq3zw5X7M2OSLO9d3LuidFu/I7mwQ06oh6Sat8nWxD37+8Yicxx9TBG41GtBqxrOgsOc84pgrWwpJ1GvMHmzVkZKhyTFQO35ciU0R2TCRgUVtN/K5vbRq50kT7ZdpIkrL6hiVJvjJthseWIWWFy8Tjt/UOK2VAxaaTJ/uo9VpsFtizr0335D3jC6cojgDVMEjKMIEb2QlERZP2LxMpS5prMiCgCEOcBsybRGVJvqhIF1r7hmR0qiJsiwjG0GkSQ15Lfmr22b7o13BhPQRpyTdJVBVhxu9yuPPMjrv8AYe8RIzzXW0jj0c2lKxMXQJ9WxQc0BQpG6Zyy3GoArlpz0n7GvReD9u6T+kI1CTOSutXNoxI4tjCsWnPTeShfquSraQCnsoQihkfRcew/sqTCkqeHzojKciIo70Jw8GAxi1SO9Q/QBIIkwMolEPR9dL2WWFfwsCKUIKqif7SRiibxb/LvHfJPigTjL8XZRkV9V/rhiQpqroMyLrgBJMVkbJ5RK/aEF/E+u2yQzbxWblGyhY9qfzfjZStgZ9I2VYVb9HHmMgUJp6qpugRIvUOv+geh1eDDSEFlJLROvJ8pJF7addP09+L7acWx62K4srqh0jZumR6R5KySf1SaX6lFUeoQ8qGhUJiU7nTcFdEAcVX0JTrCAtJWTzykC1li0sV9VubLC2+WDATedfEZjTUlqIfo3+2hbvjiWk+4j2Zsgf5zP1iRZEjHNORpKzS4crqbUk3lcqfaPChqYzFVhBXgbFwMx4Wj6Ctf5fQpmRzyyZXqajhWNE9JsmyovFU5/cwva9qob+i64dRCRyb3CjfMukV9+0/jveEwz9/OIOQLWuK+JWWsiKWwujkug62sE9/H/eUQ8tOc6MWnkQv3hIZWZJ1j+FmuEkiWddTwZKk3qnIRNLMIBMhYcqYon7QJaPYSGg4iPjuQbpnaUfq+JCUBc8RX1/DR/Dm6UDqXEmqII/BOEszEaJXHraJdxA0bdIWpt2sTZTmW//9OHgjHwFUxpBkIapK1ZJ1HcmtpH1fwvaJkiUakFTzOtktZfpcdKyIsNP37OclgzrSkqSsUqSbeh/LkLIqaqOgBPUlVss8iaPGZ5a+bxruysqT3nlZolGkLPsKxmpZUySgajPgaMXhmjVXkgrOfJrMSNL6rii7Rdejn7Gak9qLJcevJHTSimmVxaHM8frG8H254LYnSpOyylzTNctkjGl+VCV6ZPHIeKhr1ATQGk7zF+sHsE+S3kTxrTT0avfxp582JofCngAiVvt5aq4gz1cGmyQGqsmhv1chZVUrpD2jsbO+K1k1E+o8+9/dNMXhTAqj1iWvkXbPihQPM9yS11fmTisc39rL6poPn7R96fVU2F+RqUXzehHGWY7xax54wR3897u8jJHqbtBWESnLMVlEr/oSFle8/LBNHHIfRsoWPan8342UrYGfSNm6pGlWF5qKlhVZQOrsPueN9aLMVFFm45kki8IIOzZwaJbuvOYSmdFBKgASW1wnvFeid0ilmG/OL7VkA5WFq0jZ2IqjWe10JCkrmQlFGGnyJwWJSIHQ6pCySqejvTraydJs2nLlhX3Bno4wihLg5SQKhbQ9IixZ+Ddp0lZkM9x7wbl9ai7k75gjt/S6O3Us3OzTziMn7eCmvjHdV71PapmG2pUx0SAdScpqEzZuyNY+zT7W2ip/9prHF0yCkMGU+lbUjqIKw9T3MNWW8/MqvSfbz3rP0HRi40tUEM9srtm/WNS1Rn4PNbuyihLVvVBIjNJWqEOoti+561m3ztIL+mjIKqbNNhsznFFhtKaik+t+y8N+qWAWms3Dd1/DSeczhjgsuj+irpDrwPIKWRS1k/W7Kg+HESaKcmUTfeVhm3pN3iqGVAiSIck0OxV74PvGdy7PQlKW9NuTduvri8UU6UDSprT18ojOGImDKveucyhmd+0DMyJls6rbizzmmCrSAdLF1TU1d3zr/PG+SB5p6XzTs0zFcWJSs+tgUeZcvqvPvvauTwWGvO9IS5KyquRdhsjM638ZUja56dU6rqoci7QW//fQTRza0jGmaER9u/W9CyPX8toRKYscCZklZe2MkY857pv1JQQYhbiKshKSZDbXVCo0GUQUNc6yMOovNvVYJFGyYG7burbivZfFSserPgIE9OiHX/Q6nLHOaNpIyjSlRSRm9U0BIfo9FsOiew3l7FRgSk7fJBlIFg6OniZJQtYp1JlQdoEiZ/OcgEX3RCQk8ybrJKxI3ietPTlaWpXtVHQP/E6QB4Qe8w79aNIkBxCOI7gB5MUg35MFgOVEyotO1xya1J1uot9a79AWzm1I2TpG4ULWQqxh68yNfDeJbqUoF1kLMgXo8OwI3pKVIWWzMqBUxkDMOQAAIABJREFU6JA1JXPOqr8wUrbOWOBcI2VrIChStpUVtSU9UFX4n9sLPTEUg4L4OGSrPg7B6mSFU15qUixPu+4Rn2KKkaZy3C6rp6aZolFLNCUkLx7GrmAiZaumiOkeO5KUJd0Dwk/RSVqknbZnP0fRtdDqkLInXfmQQ1MLK6pUm/fsNTE0lSJYZZypaq8mp1YUQFGkGkVgmLDYIDeV2hZu9kMvsSI+iWAjkg0Lj42JTu5IUlYab2WjSLU4Iqr/koM2csggYOjgoYdXZPKmh99vaTPr3DKRDW2FlL7b3+F8wCBwIHKw9l5Uh6Tsfb/czhfZa4VtesoNbVVdkzqETVxPKb04HogCDOcaXbvJSGCK55FFIvJXpKYKU9W9pxWGXO3TdVtRrVtOUkX58g3i+8+4Ripgr/WWqtx9OXqSZLKif/MKc+iiISnL39iIoFseE9GibysFpdZfNl3yIqYYWGUAnPMRJ0SeYFka2FTcpvI2RjZDWWeESEL1U991vQcHb7GCozBPmiHpsflpN3SqKNk6eLfiXBVKEgmpat95shhl+hFLysoBiLOESFlMUWNpzvWsPkD8/PueZ92/7nzWa81jZaq0E1G9zknXe6IOJyTzKvuO2MKkjPWbHnlpFlmDWMxExq2+xPzuDwes76O8yX6huFKWiTALJUTyiv+E7UC8QcBhsd90vp+QRPx/qAuKjjqkWXvLhIQFsKa8/HZpUpZ7176Q/y4zF6l2gjBtipS979k3vA49JtkXSVQlgw6kK9yUdALXVEASa2vGHhIR4bsZO56Tx8lRyt+TBGNMm9qvVqnbEtN+Rx8jUjaZtfud//8G8S3FMY6DHNO3uvcCczu+10TLpxkZwTibqmYc5GHy0SefOoqTYlUKV7cKb60rJw/f0WsiyyTDAS+g7x6/lSFlk0Sv2pZsIs4RSFmcZRYpW+8JGylbAz+Rsr/55to+DaYVJi1OJorxQwaW1qRUOq48OpqIiaaETEUWIa1wBx+eiyY87c4eNcmn0mF4n4/ZcVXH4kmmD2orip21Ak/a1CRXpuJoWl86kpSlP2GUhdI2/3PIxr6qcGh1SFlVA6a9OppG0mlU9Fmrnm1euyp4J/3LQ7fq40mBJk1pwkRuQjaQ3oGWZxPe5TCCKqyuLKKAFDJSydhkrfqLaxzvMFa0weGYMOq0bop2WTwVyX/b4K0ci61Ym/LyO16PirTJG362hY+wwWIr8a5z0khHKlRYfAvsVhw6Y8GFFWlkhn1VJLbSJ/955zOOYhQYZBikWHuaSNmYCMY6/Qor8264/FfdRYM2rNPcLOeGMgz8GEbFyvlQpCNYpkPJ4pUqdthUerOi6euSpGn3pHRangPab9udOcZvNmOi5YswUippknjXNdGZ45p5liRlkaIgyitG01Bpx3nF8mKJmaJ7zfpdm0J+zyK+pInJMWW/aZwz4ppH3LljprR1QRG5kijKi2BUCm4Tz7sqRp39vGSkrNZRddNQdd9EMxPVrMI1WXhITzDcHKtYVUzmGe/N5fc+50Y+9GLbJVjn775Ob09klLETrnjQFz5F6mjA8gs5CvukSWGVaTP22NARipboARdMcEWp2ppzJHnAtZT5UhSNGGqtQ1QQyBBjInpCjX5Viq+jOxpz7eQxIiV3Xau3+/iTTyqRstLyp23knwjQiTVlqHB8U6SsZIJo8x+DNvSSNlkFVE+84iFHhDZ1UhizTZnGEGQ9GKdl/pS9llK8qQ9z01Fbli6cq2CSPGdc2T51puPFISQds1o/SxpEUnoEIkEA5mnisla588lpjsh2viVNm/YOSQmVpq9Tpj2IYvZ86HrPPtvnpKz2AXA9rKVlMaSsMhKyHNCKWF8FUvawTdxKQ42ULfPM0o41UrYGgiJlw4VBjeYyTxX5F7NxSTbCQosF1xq9v+I9S0rvw8NIKjc6fWiFZhne/PNvedxvEkgpwNhIHbndKj4dW+lWsYUFWoFP2TZFytZNH+1oUnbD4aPdC2++50j75r+xB0/cfpZJX2ldVQTJpYlK23W8xooA6ciI6p9fMtFRnVj2+2+t63bo22wqDsWmIHVYLLNhalIiIYzACjdM0nWWJ12yJ5CxaJxiRd5LVZzXd6LsO1Xn+E1PvdGTwmGkb0x7oZ4RKdVEpLLRZZwTWVFkZ458zFc3P3G3vj6tFgu94DEV4cNrKKqcFEzfjxsm+Z+b1Dstuqfwd6J0h139sFtvmQUdRHGrTAVWaL+pqPCwrxRWwtkhC7WttTlvcnOmyIK911vKEUUtsv2UPdZ0e69fPdJU/Vcaepl009hnp+JnbADJBGBjU1VHNnlNontXP/5aL8cSFrPjO3f4RUgQ9PZFFPMMJ8VT0971EX1o0aqYFedxfp4pbTGveNY2Z45xSPtcf8RmlfSLi3BWpXOOS25+dK4ievl31mYm7zrSbNQx44ds7Radf6423e+sYl88+01OGe1wxY08YnPXZ5FqMhVFGHT138NI2RF7xBeai71vikWuc+L1PqoyT5JH2qhhdXfN5VnBEu9+8LG7cPxT7g83P+6lRDDWZUgHEBiy9aqLlg7coA3VkmBs8Z3D+dCemR1yuHAPFLEt+pYoal/ffTlTiRAjUizPmJeJNMX4nnO/MXbjoy/7CGKCUpAlwfTti9WmjblOzDFIIu3x+9u9tjbrvLLyBVxDxUf572Sh2KI+SEqG45oiZcPCnaHjjZRogovCbB+NF5G3Rf2N/V1BFaz92O/WqaMRXrNsYa3w3KTWbey9dPXjKEpKJtQSC8zlDt96JQcOfOv+MWiAJ8s70hQEFX67O7I/XBtCFCdGsmj6eTc/7lijk31BZrMshpSVdFhWQILkRRQkhIOzaK/Z0Th19usbKVvjCYmUVaXIGk3lnlo1WpY0pG3PHONfVHRxSC/US6bKmd/deFmHnlCRkS5/zg2T2lLZOR492jnnmM2df/PjHUY8FPU77XeRsnULtHU0KavCT0RisphIpvjo3qWVVCW1mGrnaCzK7hg6MIrwSuKuqsBNaj+WffaKlNV5ZfRCY6+lqDodXzcaO7xuGIEVyo7o+yB9YTli2NjcPvkVH+meRw6Qtki06hvTP2wsqjcWL47b/LQbfcokEboU/4k1FR+ieBQkTBNGcPHyn0XcxkQYh9c854bJPjoa7zkRuFhTRF4T99aqNvR9of1WFDwJ0xq5xq/36ufTTjG902U08YpwUISGopv3+u+xbsIT01yRVmFRu+31e5iWWldHNtlnReWHz0CRGGUqHRMNh3alLI9o1TEis/P0kZXW3KoCV6G0QNbmQ+OFfqc5SYvGgciftjn32IFtlcVV7Gv71RfzEX6QaDI5HdubICq6n872e0jK7j9gWe90aVpWSY6cvGKykt+hxgNFXjAR8smMIuZm3jOiA3H4YUSBUTQN8pSicHVNmThgccXEqd5hjeO6PUy6suit4/QpyrxDUgsnqMhrpbnHOMFDWZ8ymVs4pdY+aaR3JqkoD05+3rumil3FYi1tcjIoyWCsQsqqgCbXDFPEY/qgIlgc2xQpyxhHigtD/ksRjsqkCusyrPKLa/w4aSq6XfcsAkv/rlKoMQa/Msc88co7Pvhm+YXm9c65nmJ6p8P7Pf/b6/kI/o42MgnQkyazj2yYzmBpOtv0S06ow7de0Z09ekagCBZDyioSlujkO48d6OaYbeZ6GA8894aDhwgdVZ0Bi67cByNlazw9kbLhBFKjudxTJfYdS/KgDbvrb291bGhDfSpFLOpiMWlSYcfwZp5+/SM+ypZryH6+3cqO4gRdwUTKhmlIVfrd0aSs9IYh1iHisgrRELGx7kkjveeXCJoyhV5CPSQwuvTgjRwapWUN/WIkDJryPJe9PseHkbIs/im61LRps6B2f7ffOo7UtiaMyAgiJLBklLfSydCsOv5/H/B6SmDNpoGJM6/gjAjzJlK1qtyn0rnLFkMTGU3qDJIFTZlIrbILjTDCDTLs3P3Xa9OWbapvnbEdRWbTt1YU8iMijGIZsjAzhWgK5LPKyF4UYUjFZTadSm3VppDK4khldHaTs45+Ni2RoLTZkLA5a9Qkd9aox0rptxFZS5SZLIZElWZzXiE/ih4S9VdFyzXmuWrtkFfgY5/zxrlxj7/qm6sSNaIMAPUn1LUOiZQw3RNNcJxb2E0/r19UMgaLrnpMSMquvfSCPtCgbtZUEgtJGKDxTgZImqU5FZMOoVff+cBHxf5t7JOOCFwMrdefbrNydCGv2OekDAEd3zRRndePZPEoCgAS9JFl1z/0oqNgl4qLyXFHcTNSm/NM9Q04JlnouAgrReiqENtFE55xrJGVVVF0fpO/a53CeEB7s2zmRSjFMuLrazoyrWItJC+bImVDh3ioGy75NUmztUlt5bxbsfeRPE7SJvr7Qydu34jDo2p/evJ5YeQ0OJR1HLQSO+1nWy0NVuYeRMomiwlT1BqJCLgjdOllMaQsx2o9kxZNT6F23s++vb/irjws/7tb5l568rFGytZ4+iJly1Q6rXo56e0QGTFuyMBCXRppU+GFJ7VXHg70p37w1zvbulGWlNWJbBxIjb3xkZf8n5pe1FbFKeY8baxIM+b+q1pHk7LyVivqOW+BybNicV8mXQtcQo84/5ZuaVnMFKEdRliVbaPu8WGBB3R3WeQ1beGCn7ablDbZ89yx7o4np/kun73P2r5iuex7f77DV0clanrYVQ/7VFfuj+h2PLoXfHt9X6gtaaRQUvwP4p5Jlcm1vU1ESlnSS6kzZcnTovvTZidZabnoPPrDRvHN9z50f/luf68p2BMMsmD14671t1qnGGAWVjj/+gydURwLi4mqrIO7In+JQjvtG/3arp0soFDnGq08d/8Lxjs01VqRfqyq3Ti1Hjxhe18lXbrjZRxu0rAUDvcdv21h5WFJVfzxO+t7aYY0k4OnFVkQXE+6kmGhxWQ/JLMQk0qddg8qAKXfwuIwmsf5jfZvPHJLX9xRJHeThW9aOUY7su2QlJ3jS7N5Aj0v+rpKX/lmbXjyaMf8muXIVoG8kEj8993POTQkcbDjPIcoZW7GKCZ1+MCVZqrpUKVvWecgjYDznlRxjPUF64z2MO4Rx7K+8XnvOP1RgRnkT9jfjHr4Rcd6PGb+Yc/CtwQrE93P8XJAUiwZaYqsyOb2wEwp1GQXQVSWJWUpQkv/sbLFqkMMmyJl6Qd6/khRhO+MnHFawwrz7fsu5qjd0KQhXwW5xTjsTFGQTd5jV2krJGXlBOksfZcOrr4/naFfkvlIOhKkoU2xeLSYZbGkrL6trDNuPmor94XP5Wpd2hzWGbDoyn0wUrbG0xMp2yr9smTXpGdWlAKeJlugtlRlXf9GJB1dpqqG3t9DU990m620cKUIyqrXrXOeSNm6Ka8dTcoqwlFY5G2KNcFBzpPKHqY95mGp6FLSwkgnqaqPqXSPpopeVXn+IcFcJm2tzLVIySU1V/an76zvozmasDAt9l8HbeSQo5ChFYQQPqQ7GzmMKC3JTwzbfQ1HddOkqYgAOtEs6jvCpANJcSI0STdY/qtugwhxfkXHNO2lpWAYm+qqxXKI7JRGbUfg2RHXHHDyaP99aAURyP1QkZtvGNZq54FSUpFIIAOEe1voy3P4qttdwY67/EF39f1TvSwR0W5NmyL2Jdskh9tZe6/lU1ljTFIfHBtLXmq+/cMB67ltVktPYZQUyk1HbplbCCSmj2nHiPwkjRSt1zSTzEJZTeqwLcgxoiSxUEsRvc0f/+OetkP5RjEnI9uAlc02qIpDVz4vJGXJtoAEj3EKlL1nopJ+f9MU983+S7uTvz5r4S0kUZjT11+2lyMyECPDBeJfxgaYTJufbL1SqQynsn3V8Wg+E62LtTfBHzqdi4p1qjiY6hyoOGMW1iEeYTTk9zZezkFWlDFp4LMGe2DqG94plaUBXKbdsseGUiqcW5aURVdXuven79nPS2HEmqJVOb5JUnbNE6738hD//tHGbbqhkgJBroXsFQVX1M10zLpXaYIrCjsWEzuueQRIn7//udd9odzOZGQKMy6bztKrc4/KlkxKJimqlz3giVc82ObkiyVl2QttduoNjqy0ZJCRnFRIY15+aPNBTnXw6KrnGilb48mJlC2rhVj1kkpRY7GfFS0byhYctPkKPoI1afJG8vdkxcOqfetK54mULRPZk3Z/HU3KJlPli6I9JHdQpmCcFkSQZaSYQVQQ7VrWJMzf6ii3vH6FpGzZwgax96voTR3fpA6lMKTtZFVvbTR1XU2S0hM6dKs+vmp9aI+9+JajWnkYcRV7n00eR+R+WEFabaMpxv8ga9dbppcjOi+0Vi0IVhgyIyqzVcR9k9h1lrakEdoqHcJQT7nVxJOi1fjWMQYgIW3R+flIg2iCcBIR8Z0/TfDps3myAslxik45DiMsL8U7PE9FWM7df12HpmqaiTCR5mPT74cI6FAHNHkNvQt1iPxdz7nNR6Fg4SZLBZn4O4QU5BTFGUkjlAZy0/fc3drTXEmGBfN1q4q1KLsNvdeJx283U0VsMJUDd9MVF/KRutjV9z/vi2whyfK1tXp7SZC8KuNNP5twHSH5lqavkdVeqMcfOiKyjl/vVyMd2qrUOUAai6LD6CbipMizUB6kSlCKihuTmbbMV+d1RKJVzTisg20yKKNsIV/VHqAPVTLgtI9skpSVc1dSBfRNBVSP2WEVN2izFdzaJ13vdZVvPXorX+SsaaPoLe8hDq88CY2mr2vtdR0Exj0+zR1y4V1u85UX9u9OZ7C+x1/nJQrDIqz0S04M9u2suXBCYrGkLMfyfYXcTdal0XzRqszTzoBre/fBSNkaiIuUrVr8qMqlFanBYu0nA1ecpQlp/SRlC8IDQ825H2y2vIOk60kmUvbEXVf3G8uq1tGkbDKq4vbBW/tKlVlGejtp7kS9cmyYhpB1jtI1ibJkIx1GdZTBbcezb/EVt684bBO/iewIC6NAWiXgnxSnD6vI1r3nUE/wiZN3mun5kXZFCrlSHVUILKmPGfZBWkFVNiZ17yV5PkUexj7+qhvv/zfNPfzCmzNpVkMcM24URbv+cr3cYy+85SDrml4QaLNRVGykaQy6cnvaOLVKhzDUvws1NluBmaIgKN6y+UqL+Mg1otXQhzZzbtKLbzui20VmqUAQxUSpBh5j1z7wgjvo73f5Q5H54HtcZCoylqfTTbVmIjpa5SiXk5LUcvTZ00wkddlCgWFb4XhPasRBJJKyjByRIt0g8W49On/+L8K3p/ye1I1sZUTc186ZUdchLYpRuqhEfRP9jZEWfs0DL7jDtupTquhlk89OEiBlpa7q9uG2ya+4/c4f750NVBAvsq//7jYHKfDPHw5wP/3nve6516e7ZAZRWhsvv/W+W/8zjfJBmy3vKPhbxpRtSPGbQZsu74t7hnU7yrRV51jpD6uNsqQsmt7sJ7EyWQ66ntb0TZKyKtRI1B2OUEyp4gQZbbHyIm6f88a6Jou71nkGdq4h0FkQWPOX17k33/vIa5jj6JaRWUOGDXPQUf+a6JCpwcqQshC5/YeP8lHs4btJjROCFmLXcJ0Fq87cDyNlazwdkbIxXt0al5npVEXLUmiCaNn5g+q7yBYMPOMmB0HDBkmTWvLaYRX6jlhMNIVF1XZEyhYVEyhqv6NJ2bA4ArIEjw3LX8gSRU0aMMRhkWaX7l0pUqQKoVWal7aZh5fSSlsd5ZbXh6Mvva8ttb/pqq267gcff+JWGnpNWzeaJH+lVZhVYVi/c3FFPqRF4/C7KnwTdT/2mK2j5SyK3ommfke7cvwTr7o7nnzNjZvyalvUWNh+r3nncNPe+WAW723dPvD8eI5s1ti0mRUjoHT0Xdfq7c7ep/nIAZG+9OTxk3fykWStMm1W2WyuvOh8Piq0J2aU5OEr8pM044P+dqd78tV32yqSxzwXpW5zbKw2oOaiPPJh4xE3eHKmVVFUknvJk0yR9m0dvbnhVz/scLBjzOvJqsf8He3PTUbc4GUOOqLQUMxz7ozHJEnZVuoV/uX2Jx3FodIKIEqKolWOrKrYnztmihtxzSNe7oiU1/Y00pWX/uo8hTUz6JMCVPbbYBl34finvNMWp3+RsQ5Gogg7eIsVfAGcsiZCmOKoEMOtHENZfRv/xDRH9pSsLCkbSm0laxTE4IF+Po6FJklZFfUK67RImoJv3Lxzfsn98bYn3GFbreh+tm1+RHTMPdgxhkB3QUCZsDjG4X9kek+RHpj04lsOyUkchWVIWdpSwbAwQOHOJ19zyH1Q/BsdaLP6CBgpWwNDkbJVKuzWuKwTqRqmJFMDZbffzvDKFy00pD9JH7IkDur0r7OfK1I2S2cztv8dTcoqYon+xupqqgBcrF6mopN+/611Hf+NEcVANEMZUwXzVkUwxfSFKrlUyyUdEM3BVhkRq6qU3GQRQJGuWV5JVUHnvlR9XBIFYWQX34qtTr/REyllpCxahVdMuxAQFDkjihZCRwXPOBf9WaJlmjJVMS1b/KKp63fFdkTKVpU3Kbpnfbdio6iK2sv7XRkIEMxob1NYpK7UTZ3+dMZzKRjB5hjN3fNvedynk5bR5QxTiGP1GJW1AenPs0naC2++57Y9Y4yPFinKGqmKqdZeeZsQ6afXKUBICu1xlz/guzll+I6+oFqaIWdAMalVF5vfUXzMrBiBJCnL2gbZlVYYkUXrnDTSffLpp+6OY7dxX513jrbL5GWxtKIvsW0ynhhXOOCXX2je2NPa/bhQ7oCLZxUzTeuY5viqZKrSedV2VuZiK0HhOW0wfHTbJcqSsg8894YjaxIrey7nHPPv+x2EaZOk7P+Mf9p/z5ANYvxhkEhI1wxcdVHvnCfS+aofb9qygnetfGbWtiHQKgRee/dDt80ZN3lJl5AbkpySagDgJMRZSKQ/a7ZYo90Nho/ycxmBPBQ7TNNFj23PjktHwEjZGiMDUvZHv7uqUMOoxiVST6XgySanjHZzBdGyqhjdZ5Evu1E/TU+rU2Nh5cwiArfpvneG9kTKDt99DT/5V7WOJmX5CK994vW++7ERajoHcuP+E7ZLjcAJ8ZCOHwW6TrnmEb9YZ3wxzspYZyBltYhsle6l8JCuIf+++vBN3WqLz18GqsxjVUAmK7KG9H8kDoiiJxIYY1NI8QTIJbSGMIhpCGrSa2/8+ZazaN010tl2aIRIcQy94yZNVUw7sihdk/fTHm2JlG2VruWV9z3viJRc+MtzujuOHdjSW1IEG9XHIfiYL/OKS7W0M520cWVpkI0j7dMyzmki3CGrMIhdyJEik3RAlv6h5FioUk9USCtMhS/55qCPnmbSyK4TPRKu0crg2op77m5tJknZVukPCzdFKiULE4nY+9aGyzg07s3KISBSm7OWW2hed8PPtoiS5OL4/sNGOQpy/njrFd1PCzRo03qF3BJrbxzcGFGbRG+2tymrh+uWJVbJKCCzAPvtvut4DdUyJlK8SVI27fo44CkCB4nEehaJNpxuZoaAITAzAkSu7vnft3vpNwJVCFhRLRL9m4xXghzKkrJcSZlC39loWR+ogLYuciLU/ri4wcCYnvxcjZSt8fQhZSdNmlSjheqnSh9TpKpSjmI0ksLJ+JAt+7gjt5u5AFD1XnWNM0XKjvj6mm6f/tWrOnY0KQvayw6ekYZFESe8YzGmj3QM0aB7PP/b6/mIMQq6xEofhH1p0/pL6N3E9LepYyhQg4dw/wHLOMZ9qyws0lKFwM7q1/4XjHe3THrFp9Rn6aCR/rdUr7kdsgQyFa4SUauU1998c233tRZUZ28Vru3VrqqYNqkH3F5976jriJSNqX5dpY/SrmLzfePPt6jSRPQ5V0yc6pgjeDceeeEtR7S5RebMCp8KS/ALUiJo/cZamEJ86jfWjKqurCjVtErhShPHITXqZ5u73gs0XwCGe1PRjDwdUjkyN+6zkLvw+zMKOJU1ZTig+45+uFlzCISkLMUj0extpSnSb4WF5/UZLDJF/3cGTfdW3n+r2pYTmvbLFqoaeMYYR7Q+RcEoDlbFqM9AnQYMCQT2Yu1t2511s3v0hbf8ZcuSsmQf4YDGqkSLq1BYq0nZMKuCvooQam+s7XqGQFdAQGtxAhhYC33njxPcPc+83qYFqwKBVUhZ9pc7nH2zz5S96xfb+AKjBAJRjPmiQelO6q6AWWfqo5GyNZ5GR5KyipadfbYvem3Zi+942p18zSPRgvOKBquavlMDtg4/VaRs3fTkzkDKyuNfZlFF2inppzGpxtKpgYi96dGXHGmVx++yuvvuxsUF0ojKZbP817FPeu1PrCPlC9pr4ElTkOshk9BU9eRv/3GCG/PYy+6Er63uvv3/nspY2+K0GVIFkFkQTmeMfMynfkE0mc2KgMgm9DJXWWw+gygCAS0Eu0PUl6JyiUi//sEXfPG8icdv6zW4zD5H4JD/udtddd/z/g9VJGGINGOO+PN3+7stVl64ENqj/nWfIzouOW+jpb/tmWP8c6rraC3qhPqQp4NLATMKmW296iI+pbqKUYwD0gfZgqrEbpXr9oRzQlK2PSJ8Pvz4U7fuSdf7qPvQuaNvZk9cgzcxzvh2nDnyUa+pTKRnGaM4DY6+OhGuct5x3Y6SgTrob3e5ax98wd96WVKWc1TU9Nz913Xbr15OwuPlt993b7/3kY9SbqXxfNf9LKuC6/xj0IZuwPLNZke1sv/WtiHQ3gioKDTO4xfemO4gU6/7yWZu5cXmc2eOfMydPXpSpUhZ7kMyekdtv4ov7Mq/8zKH2vveu/r1jJSt8QQ7kpSl28de9oCPXiQq7u33P/J3EqsRq4rJofZIDSi61KkiZU/bs5/bc90lK/e9M5CypKE/+cq77qRd+zp0Q2OMtC3I3HnnmM1RpC5Lr462pEfDxnnSS2/5Yl8QshCzWQYB+PsbJzuqw8ooSLfvBsv4yISyerQx99SZjlGKK326bfBWjUVtgedtk15xEF9sJmNNab1U3/z5Jfc6Kmk2WYBmTe4EAAAgAElEQVQsth9d5TgiyYmQvO6IzbxuklkxAiIYYvVBi1vsuCMgGiEcN1txYUcxlPbQse24u61+5f/c85xDUgBbe6kF3H+C4hIxrf7upikOXUPkC2K0K6UJfvLX13BEZGOkD1PhnnZ4XuimtdKUoZQnF/SjC+92V9//vE8HLksWtbLv1vYMBEJStmgt0xRm6APj0P7exsu543ZZzTd7+nWPunNunFwqy6mp/vT0dhTlSpZg1awpnEA4lnCgxAYqNI07gTjUCMGqkLIDTp5R+Dcma67pvse2F2ZVoJt917Hb5O5ZYtu14wyB7ooAjoztzhzj9WVlChDSWr1KpCxtqUg0+uhn7rOW5wjqZAV112dQ9b6MlK2KHF7GDpQvoNsi1/jvpRac2w1cbVG3z/pLe29IkWmDU1VTqaj9zvy7SNm0NMgy/e4MpGyZ/obH7vSbW9yDU990f//+Bm6TPgtlNrPf+ePdbZNf8Zvd6R987AX3syKAEP2mYvSoh19saw/d0u9tspzfRJNa2hMsrJw9YehAt8h8c3bobf/kn/e6y+55zi0835y+SMJ2qy/m0Es1MwSaQkALvZB0aKrt9m4HQg1iDaIQDe2wSF5796UzX++t9z5ya/zyOt/FtOryTfd96H/udxeOf9rrb+KYwn7z/xEfRP6zwSATICyk1PT1ae/oS+9z/7zjGUclcCJ200zri5hMlFb00drMRyAkZes65mOxRncZWSNkPu4YOtCTStL266goy9i+d8fjpE89eIdVfCBLVfuvGya5p1991+274TLeMdXeRqEtaiVgVUjZHc++xT30/JuliqS19z1yvbVOvN4Xk/zGuks69m1mhoAhkI9AqC/LkSp+qkLvVUlZ2trq9Jv82nj3tXs7nPObrriQ+9uB1aSa7DnOjICRsjVGREeTsnR95EMvuqV6zVM6zRZd2U8++dSf29NMm6ayOlRJnLoyKRubbqxUBVIoe807p9eTSRaTI933Dzc/3lbwBZzWXPIrbtBmK7idSxYP6A5jUZMe94LOIhuxjrSQJKaIN7p2rU4568j7tWu3PwL6nvxg0+UdBW26spF6Tgo6EbJEQ+Xph3bl+2yi7xRgoRALi/Mz916riSYz21C04Ym7ru6IyCYlb+f/usV9/MmnvrAXBb5abXJm50WEH37RPe7ye6e6/TZY2g3bfY1Wd8naL4lASMo2WYizqBvS1UfSAsf2Ly57wFHs68Rd+7oDBsxwMpi1DwLooaL1u/+Gy5QucNU+PYy7igoucnQVUvZXVz3kkH8ZvMOqDs3jzmoigTpzRG9nxc761XMRwGn06+sf8wBoLyr5wjqkbOgMou3NV1rY/eV7rc1S6ilP0UjZGk+6M5CyNbrfY08VKXvW3ms5ROqrWlcmZSe9+Lbb5swxvpo50ZwUFEkzFQVDx2mdpRd0Kx97jScr7j1+W3fRhGfcH2993D3z2vS2UweuuqgvRFUmvb4q/p31vEvuetYXhMHu/+V2br65Pi+61RF91iTMtdmEnGSVnjviMXTra4qUjZXP6cxgiJRVH/fdYGk33Mi11Ef277uf8xIPO66xeMtJ0ROueNBBplD1l2IvW//6Jjfl5RnRGq0mhHXzRKWxIfnBZst7Hck0U2bCgZss536x84xUdbPOg4BI2S998QvusWE7OhyV7WHIdVBkZYe+i/nCSioaF1vorj36aNfoWghQW2SjEaN9p6uQsl3rbq23hoAhUBYBMnvWXWZBH0yF4QjEIViHlP3g40/cer8a5d6c/qFv00jZsk8l+3gjZWtgaaRsDfA68NQf/+Me978Tp7q61ee7MikL/BuPuMERMX3pwRv5j3aafePc2x1pEBf/cIAnWhHcR6+GNGXIPgySdo91l/SRsU0VterA4VH70lTkRbMMo7IzFZ470pSOTT/GHTPQoctlZgg0icBvb5zsTrvuUdcditZQOIUCKrI6uoNNYtzT2yKq6/xbnvBE5/NvTPf/jSTLDT/bot0cX0P+c7/7n/FPuzwt/p9efK+DrEarkrFj1rkQQEPznBsmuS984QteCqO97IU333MbDh/tIIOJWhp62QO+8GbddWh79d+u0zkRWGnoNQ6SxEjZzvl8rFeGQGdCAJIWGaY6pCz3QwQukbhYe8hXdSYMW9kXI2VroGukbA3wOvBURcqevc/abte1lqjck65Oyo645hF37pgpLi/l+Ou/u83d/fTrbcSt/o1nbMxjL/tCaUN2Ws0taERf2zi695nXHYX0sCnDd+zwogSKDKJo1bghW1ce73aiIZCFwLOvTXfPvPauW3KBubu8JA5prWhny+pmVNioaQYBybB8e8Cy7i9jn/SNtnclbuna/nzblT0xm2Yq9FinsnsziFkrnQ0BafQjazHm0Zfc9Q+92KmLLHU2/Kw/syIw8IwxbvJLbxspa4PDEDAEChG49O5n3c8unliblKWI2ICTR7kPP/7UJL4KUY8/wEjZeKxmOdJI2RrgdeCpZ4+e5MZOedVR5GyjFb5auSddnZS955nX3e6/vc31XmBud9vgrVJxoDgFRSqorE0hg8Mvutddfu9zjgJeEDFUziY6zuxzBJ6Z9q7b9NQb/R+eHLFTh0Pz2rsf+mdG+kpeUbcO76h1wBDoBAhAlAz6651tPbnkoAFu/WV7dYKe9ewuyIkoFL690bLuhK+t3q6gHHvZA+7v457y0gVIGKTZUf+6z1185zO5x7Rrp+1inQYBiqJQZGqdpRdw8801u3dsU0R1sxUX7jR9tI50LQROufYRd8/Tr7vDB67oBixffT/Tte7aemsIGAJVECBLmGzhupGyXFsSPFnFv6v0r6efY6RsjRFgpGwN8LrBqY++8Jab9u4HbpXF5u+ykaLrDxvlXn7rfZdV8GLn/7rVPfDcG+5/D93EF+8KUxZ4hEN2XNVryJp9jsC7H3zsfnLRPW6Zr87b5Yse2XM1BHoaAhTP/EFAyuKwwnFl1rEIII+BTAa2dK953Mifbu6lc9rTbnzkJUcmBMXf1sqotk5qICmCVsCpPZ9M17gWhQPXOfF6984HH7c5tiUN1TXuwHppCBgChoAh0FURUM2EJkjZy+55zqGhT5FViq2a1UfASNkaGBopWwM8O7VTIKCK1kQN/3SblWbp045n3+Ieev5Nd9WPN3WrLzG/jwAiEkh23C6reX1ZM0PAEDAEugMCox5+0ZEFIXvi5J0yCyF2h/vtKvcghyBFKXESrtH7K12l69ZPQ6ANAVJHSSGVXX7oxq7fkgsYQoaAIWAIGAKGQEsRGP3wS+7Av9zRSKTsv+561iHXZKRsc4/MSNkaWBopWwM8O7VTIHDb5FccOmcrLTqfu/6IzWbp03Zn3eyICL7m8M3cqovP58Y9Ps3tc97YtuNO2q2v23/DZTrFvVgnDAFDwBCoi4AWrbSTJ+1S9zp2fjkEyECAzPr4k0/ddzZattzJdrQh0EkQuH3Kq27fP4xr6811P9nMrbzYfJ2kd9YNQ8AQMAQMge6KwM2TXnYHXDChUVJ2+9UXc+fuv253haxd78tI2RpwGylbAzw7tVMgwAa33wnXu7ff/8jdevRWPqVO9sQr77gDLhjvnnltuht5xOZuxUW/7KhcPODk0W3HnPKNNd3e6y3VKe7FOmEIGAKGQF0ESFH/7p/v8M2gJYumrJkhYAgYAk0g8Omnzm148mj34pvv+ebGHLmlW+ar8zTRtLVhCBgChoAhYAhkIiCnYBPyBYqU3aHvYu733zJStolhZ6RsDRSNlK0Bnp3aaRBQtejBO6ziDtp8Bd+v8295wv3qqof8f1M84PzvrO/mnWM2/+9lB1/V1nerTN5pHqN1xBAwBBpA4MZHX3bf/dME39Lua/d2Z+69VgOtWhOGgCFgCMxA4PTrHnXnfKaPPH7I1m7R+ecyaAwBQ8AQMAQMgZYicNdTr7k9fn+7+8rcs7uJx29b61pkLiHHs/Oai7tz9l2nVlt28gwEjJStMRKMlK0Bnp3aaRBQtXEKl/z9+xu4n1x0r0NXEYOkhawNbavTb3KPv/KO/xMfYj7IZoaAIWAIdAcEbnr0Zfedz0jZQ7bs447cbuXucFt2D4aAIdBJECALacvTb3ILf3lOd8PPt3DzzfWlTtIz64YhYAgYAoZAd0Vg4rOvu13Pua1R+QIjZZsbLUbK1sDSSNka4NmpnQqBVX9xrZv+4cduiQXmclNff89Hxf7mm+u4rVddZJZ+ktpLii/2hwPWc9ustminuhfrjCFgCBgCVRGQ5hbnD999DbfvBktXbcrOMwQMAUMgFQEc28svNK+hYwgYAoaAIWAItAsCDz//ltvh7JsbjZTdda0l3Nn7rN0u/e/uFzFStsYTNlK2Bnh2aqdC4KC/3eWuffAF3yeKTpx/wHpuqV7pOmfHXf6A++vYp/yxf/puf7flygt3qnuxzhgChoAhUBWBkJT983f7uy3s+1YVSjvPEDAEDAFDwBAwBAwBQ6ATIDD5pbfdwDPGNBopa6Rscw/WSNkaWBopWwM8O7VTIfCfe55zR/zzXl+068Td+ro5v/TFzP6FerMXfn8Dt3GfhTrVvVhnDAFDwBCoisAtk15x+18w3p8+6qebuz6LfLlqU3aeIWAIGAKGgCFgCBgChoAh0OEIPPnqu26L025slJTdbe3ejvoyZvURMFK2BoZGytYAz07tVAi89d5H7ur7n3d7r79UYb+kQcuBF/9wgOu/XK/Cc+wAQ8AQMAS6AgK3Tn7Ffev8GaTsIyft4OaaPdtB1RXux/poCBgChoAhYAgYAoaAIdCzEXju9elu4xE3NErKWkHc5saUkbI1sDRStgZ4dmqXReCRF95y2591s+//ZYds7CgQZmYIGAKGQHdA4PYpr7p9/zDOLTDP7O7e4+pVp+0OeNg9GAKGgCFgCBgChoAhYAh0bQRefvt9t/6vRrk1en/FXXHYJrVu5t93P+d+evG9bo91lnS/3qtfrbbs5BkIGClbYyQYKVsDPDu1yyLw/kefuJWPvcb3/6ofb+pWX2L+Lnsv1nFDwBAwBEIEHpz6pvvxP+52C8wzh7v04I0MHEPAEDAEDAFDwBAwBAwBQ8AQ+AyBi+98xh31r/vc19fp7c7Yy+QLmhgYRsrWQNFI2Rrg2aldGoF1TxrpXn3nAzfyiM3dioua5mKXfpjWeUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEGh3BIyUrQG5kbI1wLNTDQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAyBHoqAkbI1HryRsjXAs1MNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEeioCRsjUevJGyNcCzUw0BQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMgR6KgJGyNR68kbI1wLNTDQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAyBHoqAkbI1HryRsjXAs1MNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEeioCRsjUevJGyNcCzUw0BQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMgR6KgJGyNR68kbI1wLNTDQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAyBHoqAkbI1HryRsjXAs1MNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEeioCRsjUevJGyNcCzUw0BQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMgR6KgJGyNR68kbI1wLNTDQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAyBHoqAkbI1HryRsjXAs1MNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEeioCRsjUePKSsmSFgCBgCXRWBDTfc0I0bN66rdt/6bQgYAoaAIWAIGAKGQJdGwNZiXfrxWecNAUPAOTdp0iTDoQYCRsrWAG/q1Klu8ODB7q9//WuNVuzU7ozA2Wef7ZZffnm3yy67dOfbtHurgcCJJ57otthiC7fZZpvVaMVO7a4I2DzTXZ9sc/dl80xzWHbHlt555x233377ucsuu6w73p7dUwMI2DzTAIjdvIkzzjjDrbLKKm7HHXfs5ndqt1cFAZtnqqBm5xgCnyNgpGyN0WCLmBrg9ZBTbbPcQx50jds0UrYGeD3gVJtnesBDrnmLNs/UBLCbn26b5W7+gBu4PZtnGgCxmzdhpGw3f8A1b8/mmZoA2uk9HgEjZWsMAVvE1ACvh5xqm+Ue8qBr3KaRsjXA6wGn2jzTAx5yzVu0eaYmgN38dNssd/MH3MDt2TzTAIjdvAkjZbv5A655ezbP1ATQTu/xCBgpW2MI2CKmBng95FTbLPeQB13jNo2UrQFeDzjV5pke8JBr3qLNMzUB7Oan22a5mz/gBm7P5pkGQOzmTRgp280fcM3bs3mmJoB2eo9HwEjZGkPAFjE1wOshp9pmuYc86Bq3aaRsDfB6wKk2z/SAh1zzFm2eqQlgNz/dNsvd/AE3cHs2zzQAYjdvwkjZbv6Aa96ezTM1AbTTezwCRsr2+CFgABgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoZAeyJgpGx7om3XMgQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEej4CRsj1+CBgAhoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIdCeCBgp255o27UMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDoMcjYKRsjx8CBoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAItCcCRsp+hvZpp53mzjvvvDbshw8f7vbcc8+2f0+bNs0NGjTITZw40f/twgsvdP3795/pWXHMUUcd5QYPHuz69OnT9tsll1zihgwZMtOxtHXkkUe257O2a9VAYPr06W7o0KHuiiuuaGslOQbC57zLLru4YcOGubnnnnumq3LMk08+mfrswzFo46PGw+qgUydPnuwOPPBARxVjrF+/fv6b0qtXr9RvQdYYYRwsu+yyM31/0r4hNJr8TnXQrdtlIxFo5TyTnKPsGxL5UDrRYa2eZ8LvSNr3qRNBYV3JQGDChAluv/32a/s1OY/krVWL5qjk+LP5pWsOwzrzTNH4EiJ5a9muiVrP6XXdeSZvfBV9Y3oOyl37Tou+A3XmmeR+xuaZrj1WrPfNIWCkrHOOCeqcc87xhAoEiiYVJh6IV01gAwYM8EQJvx999NHulFNO8eRrOMEtscQS7oILLpiFlB07dmwqSdfco7SWWokAExDP9dBDD/VEKxMWpLqeNf8+9dRT20g4xg4m4j2c4NLIkuTxrbwXa7s1CPCMn3rqqTYylWf6/PPPt733RWMkXKgULVKyHECtuTNrtQkEWjnPJOeo5L+b6L+10XoEWjnPpH1/wu9T6+/OrtAEAswTyyyzzExr08UXX9yvNYrWqkVzVLgO0aabQINkAEIT92FttAaBuvNM3viix0Vr2dbclbXaJAJ15pmi8VX0jWnyPqyt1iHQqnmGHod8i80zrXuG1nLXQ8BI2ZRnlrawHTFihCfdIG2zNrx5kbJGyna9lyOvx8mJJBndmNwAq6206AKOveiii4y0715DxG9ekkR9GAGbNUbSImWT0FiUStcfLE3OM2kLW3P0dP0x0tQ8k7ZmSTqXuz5aPfMOmAu0vnzuuedczFpVSIVzEH9LZnrZN6Trj6mq80y4Zk3bv9gapOuPDd1B1XmG84scwFnr3O6DXs+4k6bmmTBzMGb89Ax07S4NgRkIGCmbMhKSE1TapJK2WI2VL7C00q7/+oUb2t69e3tpA0VSc3dZG960hWxaanqaPEbXR61n3UG4iOHOY8dIESlrUbLdYxy1ap7h20EGR5qUTvdArufcRVPzTNrG2SJUusc4CteisWvVNMINQjfMAOOYcA5LSjF1D/S6/11UnWeETBYxb6Rs9xk7VecZECiaR+wb0j3GSVPzTHIeSWYmdw+07C4MgWoIGCmbglta6nkykrEMKRteQhPY3nvvPZNmZLXHZ2d1BAJZqcL77LNPW5pfGVI2Lco2lEboiHu0a9ZDIEviJGaMFJGythmq92w6y9lNzzMac9zffffd5zXQTbe8szzt8v1oep5Jbo6LNtPle2xntDcCSRI2Lesmi1RLzlH8O4yyNVK2vZ9ma65XdZ6hN3lRjrYOac3zau9W68wz9DUvmt6yMdr7abbmek3OM+phqElbJNfWmruyVg2BzoeAkbKJZ5LUgcxamFQlZbXQzSr21PmGiPUoREALGGm48VuZ1NC0hWyShCtKB7In0rkRSPP8lhkjeaSsLXI797OP7V3T80wyejrtOxXbNzuu4xFoxTyTVtwlTQO/4+/eehCDQFLXvsxaNW2OSptbLMot5kl03mPqzDNp4yu8UyNlO+9zj+1Z3XkmbXzp2hYBGfsUOvdxTc8zybu1/W7nfv7Wu/ZFwEjZAO+sCSYZQVBWUzb5SG0x076DvKmr5REddTRlk+NB1wmjKpu6B2untQjkLURjx0geKWsaf619fu3ReivmGYtya48n1z7XaNU8k+w9Y+Zvf/ubGzx4sC9eadZ1EMgizGLWqllzVJosjs03XWdMJHtaZ54pImS5lu1juu7YoOd15xkjZLv284/pfSvmmbTr2rck5mnYMT0BASNlP3vKeYvPooq2Gihpi1rOvfjii91ee+3lNz6WMtg1X6sib15aUSfuNJk+nDb5JDdJJozfNcdIURRr7BjJImWL2u+aqPWsXrdqnknK4likbNccV62cZ0JEbB3SNccHvc5bHxStVYvmkPD7ZGOk646ROvNM7PrTiJSuOz7qzjMmWdB1n31sz1s1zzCvXHDBBe7QQw+diRMxScfYJ2PHdWcEjJQNhMonTpw407PeZZdd3LBhw2b6cOiYsBBTWlpgeC4T2HnnndfWtumndL1XSsTp1KlTZ+p8qNsYFuwKn782Uvvtt99M54ZjiAlQv1tKadcbH/Q4rWAbfw+fc94YSZ4fjoOiRXTXRKxn9TrU0ArvvKl5JvmNMk3Zrje+WjnPhOPP5piuNzbU4+R6kr+HzzP5ncmaf0IEdExyLWtr1a43TurOM0XjK1yrCh0rTNu1xkmdeaZofF155ZVuyJAhswBiY6RrjZGi70CdecY4ka41Fqy37YeAkbLth7VdyRAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAWekrA0CQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAE2hEBI2XbEWy7lCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAkbK2hgwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUOgHREwUrYdwbZLGQKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYKSsjQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMATaEQEjZdsRbLuUIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgCRsraGDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ6AdETBSth3BtksZAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgpKyNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBNoRASNl2xFsu5QhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAJGytoYMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDoB0RMFK2HcG2SxkChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWCkrI0BQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAE2hEBI2XbEWy7lCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAkbK2hgwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUOgHREwUrYdwbZLGQKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYKSsjQFDwBAwBAwBQ8AQMAQMAY/AhAkT3KmnnurOO+8816tXL0OlhQhMmzbNDRo0yB111FGuf//+LbySNW0IGAKGgCFgCBgChoAh0BkRMFK2Mz4V65MhYAgYAoaAIWAIGAIdgEBZUrbs8R1wS7UuKeJ07733dnvuuWettpInGynbKJzWmCFgCBgChoAhYAgYAl0OASNlu9wjsw4bAoaAIWAIGAKGgCHQGgTKkqxlj29Nr7tmq0bKds3nZr02BAwBQ8AQMAQMAUOgKQSMlG0KSWvHEDAEDAFDwBAwBAyBLoaAiMGJEye29bxfv35t8gWTJ092Bx54oJs6dWrb78OHD/dRo2m/kY5/5JFH+mMvueQSN2TIkLbzLrzwwlJp+nnXDmE+7bTTfH9l6l9aH/ibfk8jRadPn+6GDh3qBgwY4O8xeYxIaCQHuE9wSbYnLHfZZRc3bNgwN/fcc7f1LdlXfiiLSxcbYtZdQ8AQMAQMAUPAEDAEDIEMBIyUtaFhCBgChoAhYAgYAoZAD0QgLTU/GfkKMTpy5Eh38MEHe4RElEIuooOaFSkLITt27Ng2UjJ5XgzcRdemDfrx/PPPt12He7ryyivdAQcc4EnhsA9FhCvtFR3D/e63334uSbimEbzJvqX11TRlY0aCHWMIGAKGgCFgCBgChkD3RMBI2e75XO2uDAFDwBAwBAwBQ8AQyEUgSVpycIwcAeTisssu6yNJ046HoCSSdPDgwa5Pnz5tfeA8TJG0VR5PeG1I26OPPtqdcsopM12HdqtEwcaSsmmF0MDyySefnOnewv7RdrKvJl9QZQTYOYaAIWAIGAKGgCFgCHQfBIyU7T7P0u7EEDAEDAFDwBAwBAyBaG2zW5wAAAYiSURBVATSSNI0klXRoWHDkilIOz5NdkDnhvIGMR0tuvZFF100i0QA7aYRtkVRsHVI2TRZAtpbYokl3AUXXOBJ4iSZa6RszAiwYwwBQ8AQMAQMAUPAEOi+CBgp232frd2ZIWAIGAKGgCFgCBgCmQiEUac6KEmycgxyABCLinoNydwsUjYrgrXM44i5dh4pO2LECE+E9urVy1+21aQs18iKAganZF+NlC0zGuxYQ8AQMAQMAUPAEDAEuh8CRsp2v2dqd2QIGAKGgCFgCBgChkAhAkWRshSooujVPvvsM1OBrvA8IlKT5GcTZKMI1KJrZ5G/7R0pmyYFET6ALJkH05QtHKZ2gCFgCBgChoAhYAgYAt0WASNlu+2jtRszBAwBQ8AQMAQMAUMgG4EkcSkylTPOO+88J1J28cUXb4sAlZyAZAiyCnilRbly7lNPPeW1aItMpGzetXUMbQ0bNsz3Nyz0lSSd1ffhw4f7PqRdA3J1yJAhTsckCeYszV3hsPPOO7dhRfvnnHOOO/DAA9uwHDBgQNv9S/LgwgsvnIn0LsLGfjcEDAFDwBAwBAwBQ8AQ6B4IGCnbPZ6j3YUhYAgYAoaAIWAIGAKlEQg1W/v16+cJRKQKIGVJ+xcpOXHiRN82ZKxMqfoiMvV72t/5TfqqYfGvvA7HXFvE6hVXXNHWVJJ01W/77ruve+utt1xIjCavceyxxzruVcfEkrJcPNlWEo/k77/5zW881hRF69+/f+lnZycYAoaAIWAIGAKGgCFgCHRtBIyU7drPz3pvCBgChoAhYAgYAoaAIRCBQFJTNuIUO8QQMAQMAUPAEDAEDAFDwBBoGQJGyrYMWmvYEDAEDAFDwBAwBAwBQyCJQBhZm4WOol2bRM9I2SbRtLYMAUPAEDAEDAFDwBAwBOoiYKRsXQTtfEPAEDAEDAFDwBAwBAyBTo+AkbKd/hFZBw0BQ8AQMAQMAUPAEOhRCBgp26Met92sIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCHQ0AkbKdvQTsOsbAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAKGQI9CwEjZHvW47Wb/rx07pgEAAEAY5t81MnZQBYTyQYAAAQIECBAgQIAAAQIECBAgQIBALeCUrReQT4AAAQIECBAgQIAAAQIECBAgQIDAlYBT9mpuZQkQIECAAAECBAgQIECAAAECBAgQqAWcsvUC8gkQIECAAAECBAgQIECAAAECBAgQuBJwyl7NrSwBAgQIECBAgAABAgQIECBAgAABArWAU7ZeQD4BAgQIECBAgAABAgQIECBAgAABAlcCTtmruZUlQIAAAQIECBAgQIAAAQIECBAgQKAWcMrWC8gnQIAAAQIECBAgQIAAAQIECBAgQOBKwCl7NbeyBAgQIECAAAECBAgQIECAAAECBAjUAk7ZegH5BAgQIECAAAECBAgQIECAAAECBAhcCThlr+ZWlgABAgQIECBAgAABAgQIECBAgACBWsApWy8gnwABAgQIECBAgAABAgQIECBAgACBKwGn7NXcyhIgQIAAAQIECBAgQIAAAQIECBAgUAs4ZesF5BMgQIAAAQIECBAgQIAAAQIECBAgcCXglL2aW1kCBAgQIECAAAECBAgQIECAAAECBGoBp2y9gHwCBAgQIECAAAECBAgQIECAAAECBK4EnLJXcytLgAABAgQIECBAgAABAgQIECBAgEAt4JStF5BPgAABAgQIECBAgAABAgQIECBAgMCVgFP2am5lCRAgQIAAAQIECBAgQIAAAQIECBCoBZyy9QLyCRAgQIAAAQIECBAgQIAAAQIECBC4EnDKXs2tLAECBAgQIECAAAECBAgQIECAAAECtYBTtl5APgECBAgQIECAAAECBAgQIECAAAECVwJO2au5lSVAgAABAgQIECBAgAABAgQIECBAoBZwytYLyCdAgAABAgQIECBAgAABAgQIECBA4ErAKXs1t7IECBAgQIAAAQIECBAgQIAAAQIECNQCTtl6AfkECBAgQIAAAQIECBAgQIAAAQIECFwJOGWv5laWAAECBAgQIECAAAECBAgQIECAAIFaYP68eOn9zDlJAAAAAElFTkSuQmCC", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plot_chlorophyll_estimates(\"Georgica Pond\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Display mean and median values" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "WARNING:root:Parsing function docstring is still an experimental feature. To reduce uncertainty, consider setting `about` to `False`.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dash app running on http://127.0.0.1:5000/\n" + ] + } + ], + "source": [ + "# Define the layout of the app. Alphabets denote the placement of each output\n", + "# In this layout, we are telling the app to display the first two outputs (A and B) next to each other,\n", + "# and let the third output occupy double the width in the second row.\n", + "output_layout = \"\"\"\n", + "AB\n", + "CC\n", + "CC\n", + "\"\"\"\n", + "\n", + "@fastdash(mode=\"external\", port=5000, mosaic=output_layout)\n", + "def plot_chlorophyll_estimates(lake_name: str = data.gnis_name.unique().tolist()) -> (str, str, Graph):\n", + " \"\"\"\n", + " Plot Landsat-driven estimation of Chlorophyll-a values in island waters of NY state.\n", + " \"\"\"\n", + " \n", + " filtered_data = data[data.gnis_name == lake_name]\n", + " trend = px.line(data_frame=filtered_data, x=\"date_acquired\", y=\"predictions\", template=\"simple_white\")\n", + " \n", + " mean = f\"{round(filtered_data['predictions'].mean(), 2)} ug/L\"\n", + " median = f\"{round(filtered_data['predictions'].median(), 2)} ug/L\"\n", + " \n", + " return mean, median, trend" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Add date filters" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "WARNING:root:Parsing function docstring is still an experimental feature. To reduce uncertainty, consider setting `about` to `False`.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dash app running on http://127.0.0.1:5000/\n" + ] + } + ], + "source": [ + "# Define the layout of the app. Alphabets denote the placement of each output\n", + "# In this layout, we are telling the app to display the first two outputs (A and B) next to each other,\n", + "# and let the third output occupy double the width in the second row.\n", + "output_layout = \"\"\"\n", + "AB\n", + "CC\n", + "CC\n", + "\"\"\"\n", + "\n", + "@fastdash(mode=\"external\", port=5000, mosaic=output_layout)\n", + "def plot_chlorophyll_estimates(lake_name: str = data.gnis_name.unique().tolist(), \n", + " start_date=datetime.date(2015, 1, 1),\n", + " end_date=datetime.date(2023, 12, 31)) -> (str, str, Graph):\n", + " \"\"\"\n", + " Plot Landsat-driven estimation of Chlorophyll-a values in island waters of NY state.\n", + " \"\"\"\n", + " \n", + " filtered_data = data[(data.gnis_name == lake_name) & (data.date_acquired.between(start_date, end_date))]\n", + " trend = px.line(data_frame=filtered_data, x=\"date_acquired\", y=\"predictions\", template=\"simple_white\")\n", + " \n", + " mean = f\"{round(filtered_data['predictions'].mean(), 2)} ug/L\"\n", + " median = f\"{round(filtered_data['predictions'].median(), 2)} ug/L\"\n", + " \n", + " return mean, median, trend" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} From 01a7b1c175068ca2fb1bb5ffc0fb946149f42cc3 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 01:06:49 -0400 Subject: [PATCH 08/13] Show examples 6 and 7 on the docs page --- mkdocs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index 3969a74..d0f23c7 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -54,6 +54,8 @@ nav: - 3. Chat over documents with Embedchain: Examples/03_chat_over_documents.ipynb - 4. US land cover map with Geemap: Examples/04_land_cover_map_with_geemap.ipynb - 5. Global map of water indices with Geemap: Examples/05_water_indices_with_spyndex.ipynb + - 6. Choropleth maps: Examples/06_choropleth_maps.ipynb + - 7. Chlorophyll estimate trends: Examples/07_chlorophyll_a_estimates_with_landsat.ipynb - Modules: api.md - Contributing: contributing.md - Authors: authors.md From 73ef6bb98b913a4bc8ae12dbd83c970fa289742e Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 01:09:31 -0400 Subject: [PATCH 09/13] Add command to install fast-dash --- .../07_chlorophyll_a_estimates_with_landsat.ipynb | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb b/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb index ff75eae..468ace7 100644 --- a/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb +++ b/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "[![Open in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/dkedar7/fast_dash/blob/docs/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb)" + "[![Open in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/dkedar7/fast_dash/blob/docs/docs/Examples/07_chlorophyll_a_estimates_with_landsat07_chlorophyll_a_estimates_with_landsat.ipynb)" ] }, { @@ -14,6 +14,15 @@ "This notebook is optimized to run in Google Colab." ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install fast-dash" + ] + }, { "cell_type": "code", "execution_count": 1, From 51abb00f5dfd2b51b648579a68b254359da3b583 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 26 Jun 2024 01:20:20 -0400 Subject: [PATCH 10/13] Change default lake selection --- ...chlorophyll_a_estimates_with_landsat.ipynb | 2452 +---------------- 1 file changed, 14 insertions(+), 2438 deletions(-) diff --git a/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb b/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb index 468ace7..13cd110 100644 --- a/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb +++ b/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb @@ -25,7 +25,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": { "tags": [] }, @@ -40,180 +40,11 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": { "tags": [] }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
gnis_namecomidcentroid_longitudecentroid_latitudedate_acquiredpredictions
29937Allegheny Reservoir166899002-78.93641141.9427802014-12-264.542550
29938Allegheny Reservoir166899002-78.93641141.9427802014-12-264.542550
22473Canadice Lake15538847-77.56884942.7183442014-12-266.810975
10694Chautauqua Lake15444647-79.40432142.1696672014-12-2611.286547
5793Cuba Lake8968334-78.29247842.2491372014-12-269.676264
.....................
7788Georgica Pond9495486-72.22912840.9392672023-12-0715.486617
7789Georgica Pond9495486-72.22912840.9392672023-12-0710.054060
7787Georgica Pond9495486-72.22912840.9392672023-12-088.188354
7173Lake Montauk9494728-71.92278341.0604542023-12-088.116833
7174Lake Montauk9494728-71.92278341.0604542023-12-085.247392
\n", - "

45297 rows × 6 columns

\n", - "
" - ], - "text/plain": [ - " gnis_name comid centroid_longitude centroid_latitude \\\n", - "29937 Allegheny Reservoir 166899002 -78.936411 41.942780 \n", - "29938 Allegheny Reservoir 166899002 -78.936411 41.942780 \n", - "22473 Canadice Lake 15538847 -77.568849 42.718344 \n", - "10694 Chautauqua Lake 15444647 -79.404321 42.169667 \n", - "5793 Cuba Lake 8968334 -78.292478 42.249137 \n", - "... ... ... ... ... \n", - "7788 Georgica Pond 9495486 -72.229128 40.939267 \n", - "7789 Georgica Pond 9495486 -72.229128 40.939267 \n", - "7787 Georgica Pond 9495486 -72.229128 40.939267 \n", - "7173 Lake Montauk 9494728 -71.922783 41.060454 \n", - "7174 Lake Montauk 9494728 -71.922783 41.060454 \n", - "\n", - " date_acquired predictions \n", - "29937 2014-12-26 4.542550 \n", - "29938 2014-12-26 4.542550 \n", - "22473 2014-12-26 6.810975 \n", - "10694 2014-12-26 11.286547 \n", - "5793 2014-12-26 9.676264 \n", - "... ... ... \n", - "7788 2023-12-07 15.486617 \n", - "7789 2023-12-07 10.054060 \n", - "7787 2023-12-08 8.188354 \n", - "7173 2023-12-08 8.116833 \n", - "7174 2023-12-08 5.247392 \n", - "\n", - "[45297 rows x 6 columns]" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "# If you get a ConnectionError, please retry. \n", "data = pd.read_csv(\"https://raw.githubusercontent.com/dkedar7/fast_dash/docs/docs/Examples/assets/chla_subset.csv\")\n", @@ -238,7 +69,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": { "tags": [] }, @@ -250,7 +81,7 @@ " Plot Landsat-driven estimation of Chlorophyll-a values in island waters of NY state.\n", " \"\"\"\n", " \n", - " filtered_data = data[data.gnis_name == lake_name]\n", + " filtered_data = data[data[\"gnis_name\"] == lake_name]\n", " trend = px.line(data_frame=filtered_data, x=\"date_acquired\", y=\"predictions\", template=\"simple_white\")\n", " \n", " return trend" @@ -258,2238 +89,13 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "metadata": { "tags": [] }, - "outputs": [ - { - "data": { - "text/html": [ - " \n", - " " - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "hovertemplate": "date_acquired=%{x}
predictions=%{y}", - "legendgroup": "", - "line": { - "color": "#1F77B4", - "dash": "solid" - }, - "marker": { - "symbol": "circle" - }, - "mode": "lines", - "name": "", - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - "2014-12-31T00:00:00", - "2015-01-07T00:00:00", - "2015-01-07T00:00:00", - "2015-01-08T00:00:00", - "2015-01-23T00:00:00", - "2015-01-23T00:00:00", - "2015-01-23T00:00:00", - "2015-01-23T00:00:00", - "2015-01-31T00:00:00", - "2015-01-31T00:00:00", - "2015-01-31T00:00:00", - "2015-01-31T00:00:00", - "2015-02-01T00:00:00", - "2015-02-01T00:00:00", - "2015-03-29T00:00:00", - "2015-03-29T00:00:00", - "2015-04-05T00:00:00", - "2015-04-05T00:00:00", - "2015-04-05T00:00:00", - "2015-04-05T00:00:00", - "2015-04-22T00:00:00", - "2015-04-22T00:00:00", - "2015-04-29T00:00:00", - "2015-04-29T00:00:00", - "2015-04-29T00:00:00", - "2015-04-29T00:00:00", - "2015-04-30T00:00:00", - "2015-04-30T00:00:00", - "2015-05-07T00:00:00", - "2015-05-07T00:00:00", - "2015-05-07T00:00:00", - "2015-05-07T00:00:00", - "2015-05-08T00:00:00", - "2015-05-08T00:00:00", - "2015-05-23T00:00:00", - "2015-05-23T00:00:00", - "2015-05-23T00:00:00", - "2015-05-23T00:00:00", - "2015-05-24T00:00:00", - "2015-05-24T00:00:00", - "2015-06-24T00:00:00", - "2015-06-24T00:00:00", - "2015-06-24T00:00:00", - "2015-06-24T00:00:00", - "2015-06-25T00:00:00", - "2015-06-25T00:00:00", - "2015-07-03T00:00:00", - "2015-07-03T00:00:00", - "2015-07-11T00:00:00", - "2015-07-11T00:00:00", - "2015-08-03T00:00:00", - "2015-08-03T00:00:00", - "2015-08-03T00:00:00", - "2015-08-03T00:00:00", - "2015-08-04T00:00:00", - "2015-08-04T00:00:00", - "2015-08-27T00:00:00", - "2015-08-27T00:00:00", - "2015-08-27T00:00:00", - "2015-08-27T00:00:00", - "2015-08-28T00:00:00", - "2015-08-28T00:00:00", - "2015-09-04T00:00:00", - "2015-09-04T00:00:00", - "2015-09-04T00:00:00", - "2015-09-04T00:00:00", - "2015-09-05T00:00:00", - "2015-09-05T00:00:00", - "2015-09-21T00:00:00", - "2015-09-21T00:00:00", - "2015-09-29T00:00:00", - "2015-09-29T00:00:00", - "2015-10-06T00:00:00", - "2015-10-06T00:00:00", - "2015-10-06T00:00:00", - "2015-10-06T00:00:00", - "2015-10-07T00:00:00", - "2015-10-07T00:00:00", - "2015-10-22T00:00:00", - "2015-10-22T00:00:00", - "2015-10-22T00:00:00", - "2015-10-22T00:00:00", - "2015-10-23T00:00:00", - "2015-10-23T00:00:00", - "2015-10-30T00:00:00", - "2015-10-30T00:00:00", - "2015-10-30T00:00:00", - "2015-10-30T00:00:00", - "2015-10-31T00:00:00", - "2015-10-31T00:00:00", - "2015-11-08T00:00:00", - "2015-11-08T00:00:00", - "2015-11-23T00:00:00", - "2015-11-23T00:00:00", - "2015-11-23T00:00:00", - "2015-11-23T00:00:00", - "2015-11-24T00:00:00", - "2015-11-24T00:00:00", - "2015-12-09T00:00:00", - "2015-12-09T00:00:00", - "2015-12-09T00:00:00", - "2015-12-09T00:00:00", - "2015-12-10T00:00:00", - "2015-12-10T00:00:00", - "2016-01-02T00:00:00", - "2016-01-02T00:00:00", - "2016-01-02T00:00:00", - "2016-01-02T00:00:00", - "2016-01-03T00:00:00", - "2016-01-03T00:00:00", - "2016-01-11T00:00:00", - "2016-01-11T00:00:00", - "2016-02-11T00:00:00", - "2016-02-11T00:00:00", - "2016-02-11T00:00:00", - "2016-02-11T00:00:00", - "2016-02-20T00:00:00", - "2016-02-20T00:00:00", - "2016-02-27T00:00:00", - "2016-02-27T00:00:00", - "2016-02-27T00:00:00", - "2016-02-27T00:00:00", - "2016-02-28T00:00:00", - "2016-02-28T00:00:00", - "2016-03-06T00:00:00", - "2016-03-06T00:00:00", - "2016-03-06T00:00:00", - "2016-03-06T00:00:00", - "2016-03-22T00:00:00", - "2016-03-22T00:00:00", - "2016-03-22T00:00:00", - "2016-03-22T00:00:00", - "2016-03-23T00:00:00", - "2016-03-23T00:00:00", - "2016-03-30T00:00:00", - "2016-03-30T00:00:00", - "2016-03-30T00:00:00", - "2016-03-30T00:00:00", - "2016-04-08T00:00:00", - "2016-04-08T00:00:00", - "2016-04-24T00:00:00", - "2016-04-24T00:00:00", - "2016-05-09T00:00:00", - "2016-05-09T00:00:00", - "2016-05-09T00:00:00", - "2016-05-09T00:00:00", - "2016-05-10T00:00:00", - "2016-05-10T00:00:00", - "2016-05-25T00:00:00", - "2016-05-25T00:00:00", - "2016-05-25T00:00:00", - "2016-05-25T00:00:00", - "2016-05-26T00:00:00", - "2016-05-26T00:00:00", - "2016-06-26T00:00:00", - "2016-06-26T00:00:00", - "2016-06-26T00:00:00", - "2016-06-26T00:00:00", - "2016-07-04T00:00:00", - "2016-07-04T00:00:00", - "2016-07-04T00:00:00", - "2016-07-04T00:00:00", - "2016-08-05T00:00:00", - "2016-08-05T00:00:00", - "2016-08-05T00:00:00", - "2016-08-05T00:00:00", - "2016-08-06T00:00:00", - "2016-08-06T00:00:00", - "2016-08-22T00:00:00", - "2016-08-22T00:00:00", - "2016-08-30T00:00:00", - "2016-08-30T00:00:00", - "2016-09-22T00:00:00", - "2016-09-22T00:00:00", - "2016-09-22T00:00:00", - "2016-09-22T00:00:00", - "2016-09-23T00:00:00", - "2016-09-23T00:00:00", - "2016-10-24T00:00:00", - "2016-10-24T00:00:00", - "2016-10-24T00:00:00", - "2016-10-24T00:00:00", - "2016-10-25T00:00:00", - "2016-10-25T00:00:00", - "2016-11-01T00:00:00", - "2016-11-01T00:00:00", - "2016-11-01T00:00:00", - "2016-11-01T00:00:00", - "2016-11-02T00:00:00", - "2016-11-02T00:00:00", - "2016-11-10T00:00:00", - "2016-11-10T00:00:00", - "2016-12-03T00:00:00", - "2016-12-03T00:00:00", - "2016-12-03T00:00:00", - "2016-12-03T00:00:00", - "2016-12-04T00:00:00", - "2016-12-04T00:00:00", - "2016-12-11T00:00:00", - "2016-12-11T00:00:00", - "2017-01-28T00:00:00", - "2017-01-28T00:00:00", - "2017-01-28T00:00:00", - "2017-01-28T00:00:00", - "2017-01-29T00:00:00", - "2017-01-29T00:00:00", - "2017-02-06T00:00:00", - "2017-02-06T00:00:00", - "2017-02-21T00:00:00", - "2017-02-21T00:00:00", - "2017-02-21T00:00:00", - "2017-02-21T00:00:00", - "2017-03-02T00:00:00", - "2017-03-02T00:00:00", - "2017-03-09T00:00:00", - "2017-03-09T00:00:00", - "2017-03-09T00:00:00", - "2017-03-09T00:00:00", - "2017-04-02T00:00:00", - "2017-04-02T00:00:00", - "2017-04-02T00:00:00", - "2017-04-02T00:00:00", - "2017-04-10T00:00:00", - "2017-04-10T00:00:00", - "2017-04-10T00:00:00", - "2017-04-10T00:00:00", - "2017-04-11T00:00:00", - "2017-04-11T00:00:00", - "2017-05-04T00:00:00", - "2017-05-04T00:00:00", - "2017-06-21T00:00:00", - "2017-06-21T00:00:00", - "2017-06-21T00:00:00", - "2017-06-21T00:00:00", - "2017-06-22T00:00:00", - "2017-06-22T00:00:00", - "2017-07-31T00:00:00", - "2017-07-31T00:00:00", - "2017-07-31T00:00:00", - "2017-07-31T00:00:00", - "2017-08-01T00:00:00", - "2017-08-01T00:00:00", - "2017-08-09T00:00:00", - "2017-08-09T00:00:00", - "2017-08-24T00:00:00", - "2017-08-24T00:00:00", - "2017-08-24T00:00:00", - "2017-08-24T00:00:00", - "2017-08-25T00:00:00", - "2017-08-25T00:00:00", - "2017-09-01T00:00:00", - "2017-09-01T00:00:00", - "2017-09-01T00:00:00", - "2017-09-01T00:00:00", - "2017-09-09T00:00:00", - "2017-09-09T00:00:00", - "2017-09-09T00:00:00", - "2017-09-09T00:00:00", - "2017-09-10T00:00:00", - "2017-09-10T00:00:00", - "2017-09-25T00:00:00", - "2017-09-25T00:00:00", - "2017-09-25T00:00:00", - "2017-09-25T00:00:00", - "2017-09-26T00:00:00", - "2017-09-26T00:00:00", - "2017-10-03T00:00:00", - "2017-10-03T00:00:00", - "2017-10-03T00:00:00", - "2017-10-03T00:00:00", - "2017-10-04T00:00:00", - "2017-10-04T00:00:00", - "2017-10-27T00:00:00", - "2017-10-27T00:00:00", - "2017-10-27T00:00:00", - "2017-10-27T00:00:00", - "2017-10-28T00:00:00", - "2017-10-28T00:00:00", - "2017-11-04T00:00:00", - "2017-11-04T00:00:00", - "2017-11-04T00:00:00", - "2017-11-04T00:00:00", - "2017-11-21T00:00:00", - "2017-11-28T00:00:00", - "2017-11-28T00:00:00", - "2017-12-07T00:00:00", - "2018-01-24T00:00:00", - "2018-01-31T00:00:00", - "2018-01-31T00:00:00", - "2018-02-08T00:00:00", - "2018-02-08T00:00:00", - "2018-02-24T00:00:00", - "2018-02-24T00:00:00", - "2018-04-05T00:00:00", - "2018-04-05T00:00:00", - "2018-04-21T00:00:00", - "2018-04-21T00:00:00", - "2018-04-22T00:00:00", - "2018-05-08T00:00:00", - "2018-05-23T00:00:00", - "2018-05-23T00:00:00", - "2018-05-24T00:00:00", - "2018-06-09T00:00:00", - "2018-06-25T00:00:00", - "2018-07-02T00:00:00", - "2018-07-02T00:00:00", - "2018-07-10T00:00:00", - "2018-07-10T00:00:00", - "2018-07-11T00:00:00", - "2018-07-27T00:00:00", - "2018-08-03T00:00:00", - "2018-08-03T00:00:00", - "2018-08-27T00:00:00", - "2018-08-27T00:00:00", - "2018-09-04T00:00:00", - "2018-09-04T00:00:00", - "2018-09-05T00:00:00", - "2018-09-21T00:00:00", - "2018-09-29T00:00:00", - "2018-10-06T00:00:00", - "2018-10-06T00:00:00", - "2018-11-07T00:00:00", - "2018-11-07T00:00:00", - "2018-11-08T00:00:00", - "2018-11-23T00:00:00", - "2018-11-24T00:00:00", - "2018-12-01T00:00:00", - "2018-12-01T00:00:00", - "2018-12-10T00:00:00", - "2018-12-25T00:00:00", - "2018-12-25T00:00:00", - "2018-12-26T00:00:00", - "2019-01-10T00:00:00", - "2019-01-10T00:00:00", - "2019-01-11T00:00:00", - "2019-01-26T00:00:00", - "2019-01-26T00:00:00", - "2019-01-27T00:00:00", - "2019-02-03T00:00:00", - "2019-02-03T00:00:00", - "2019-03-07T00:00:00", - "2019-03-07T00:00:00", - "2019-03-08T00:00:00", - "2019-03-24T00:00:00", - "2019-04-01T00:00:00", - "2019-04-24T00:00:00", - "2019-04-24T00:00:00", - "2019-04-25T00:00:00", - "2019-05-02T00:00:00", - "2019-05-11T00:00:00", - "2019-05-26T00:00:00", - "2019-05-26T00:00:00", - "2019-05-27T00:00:00", - "2019-06-03T00:00:00", - "2019-06-03T00:00:00", - "2019-06-04T00:00:00", - "2019-06-27T00:00:00", - "2019-06-27T00:00:00", - "2019-06-28T00:00:00", - "2019-07-22T00:00:00", - "2019-07-29T00:00:00", - "2019-07-29T00:00:00", - "2019-07-30T00:00:00", - "2019-08-22T00:00:00", - "2019-08-22T00:00:00", - "2019-08-30T00:00:00", - "2019-08-30T00:00:00", - "2019-08-31T00:00:00", - "2019-09-07T00:00:00", - "2019-09-07T00:00:00", - "2019-09-08T00:00:00", - "2019-09-23T00:00:00", - "2019-09-23T00:00:00", - "2019-09-24T00:00:00", - "2019-10-02T00:00:00", - "2019-10-26T00:00:00", - "2019-11-02T00:00:00", - "2019-11-02T00:00:00", - "2019-11-03T00:00:00", - "2019-11-10T00:00:00", - "2019-11-11T00:00:00", - "2019-11-26T00:00:00", - "2019-11-26T00:00:00", - "2019-12-05T00:00:00", - "2019-12-28T00:00:00", - "2019-12-28T00:00:00", - "2020-01-22T00:00:00", - "2020-01-30T00:00:00", - "2020-02-22T00:00:00", - "2020-02-22T00:00:00", - "2020-02-23T00:00:00", - "2020-03-01T00:00:00", - "2020-03-01T00:00:00", - "2020-03-02T00:00:00", - "2020-03-09T00:00:00", - "2020-03-09T00:00:00", - "2020-03-26T00:00:00", - "2020-04-02T00:00:00", - "2020-04-02T00:00:00", - "2020-04-11T00:00:00", - "2020-05-04T00:00:00", - "2020-05-04T00:00:00", - "2020-05-05T00:00:00", - "2020-06-21T00:00:00", - "2020-06-21T00:00:00", - "2020-06-22T00:00:00", - "2020-06-29T00:00:00", - "2020-06-29T00:00:00", - "2020-07-08T00:00:00", - "2020-08-01T00:00:00", - "2020-08-09T00:00:00", - "2020-08-24T00:00:00", - "2020-08-24T00:00:00", - "2020-09-01T00:00:00", - "2020-09-01T00:00:00", - "2020-09-26T00:00:00", - "2020-10-03T00:00:00", - "2020-10-03T00:00:00", - "2020-10-04T00:00:00", - "2020-10-11T00:00:00", - "2020-10-11T00:00:00", - "2020-11-05T00:00:00", - "2020-11-21T00:00:00", - "2020-11-29T00:00:00", - "2020-12-06T00:00:00", - "2020-12-06T00:00:00", - "2020-12-22T00:00:00", - "2020-12-22T00:00:00", - "2020-12-23T00:00:00", - "2021-01-07T00:00:00", - "2021-01-07T00:00:00", - "2021-01-08T00:00:00", - "2021-01-23T00:00:00", - "2021-01-23T00:00:00", - "2021-01-24T00:00:00", - "2021-02-08T00:00:00", - "2021-02-08T00:00:00", - "2021-02-24T00:00:00", - "2021-02-24T00:00:00", - "2021-02-25T00:00:00", - "2021-03-05T00:00:00", - "2021-03-29T00:00:00", - "2021-04-05T00:00:00", - "2021-04-05T00:00:00", - "2021-04-06T00:00:00", - "2021-04-21T00:00:00", - "2021-04-21T00:00:00", - "2021-04-30T00:00:00", - "2021-05-07T00:00:00", - "2021-05-07T00:00:00", - "2021-05-23T00:00:00", - "2021-05-23T00:00:00", - "2021-06-08T00:00:00", - "2021-06-09T00:00:00", - "2021-06-24T00:00:00", - "2021-06-24T00:00:00", - "2021-07-26T00:00:00", - "2021-07-27T00:00:00", - "2021-08-27T00:00:00", - "2021-08-27T00:00:00", - "2021-09-04T00:00:00", - "2021-09-04T00:00:00", - "2021-09-28T00:00:00", - "2021-09-28T00:00:00", - "2021-09-29T00:00:00", - "2021-10-07T00:00:00", - "2021-10-22T00:00:00", - "2021-10-22T00:00:00", - "2021-10-23T00:00:00", - "2021-10-31T00:00:00", - "2021-11-07T00:00:00", - "2021-11-07T00:00:00", - "2021-11-08T00:00:00", - "2021-11-23T00:00:00", - "2021-11-23T00:00:00", - "2021-11-24T00:00:00", - "2021-12-01T00:00:00", - "2021-12-02T00:00:00", - "2021-12-26T00:00:00", - "2021-12-26T00:00:00", - "2022-01-10T00:00:00", - "2022-01-10T00:00:00", - "2022-01-11T00:00:00", - "2022-01-11T00:00:00", - "2022-01-26T00:00:00", - "2022-01-26T00:00:00", - "2022-01-27T00:00:00", - "2022-01-27T00:00:00", - "2022-02-11T00:00:00", - "2022-02-11T00:00:00", - "2022-02-19T00:00:00", - "2022-02-19T00:00:00", - "2022-02-19T00:00:00", - "2022-02-20T00:00:00", - "2022-02-27T00:00:00", - "2022-02-27T00:00:00", - "2022-02-28T00:00:00", - "2022-02-28T00:00:00", - "2022-03-07T00:00:00", - "2022-03-07T00:00:00", - "2022-03-08T00:00:00", - "2022-03-23T00:00:00", - "2022-04-01T00:00:00", - "2022-04-08T00:00:00", - "2022-04-08T00:00:00", - "2022-04-09T00:00:00", - "2022-04-24T00:00:00", - "2022-04-24T00:00:00", - "2022-05-10T00:00:00", - "2022-05-10T00:00:00", - "2022-06-04T00:00:00", - "2022-06-07T00:00:00", - "2022-06-07T00:00:00", - "2022-06-28T00:00:00", - "2022-07-06T00:00:00", - "2022-07-11T00:00:00", - "2022-07-11T00:00:00", - "2022-07-22T00:00:00", - "2022-07-23T00:00:00", - "2022-07-29T00:00:00", - "2022-07-30T00:00:00", - "2022-08-06T00:00:00", - "2022-08-06T00:00:00", - "2022-08-07T00:00:00", - "2022-08-09T00:00:00", - "2022-08-26T00:00:00", - "2022-08-31T00:00:00", - "2022-09-08T00:00:00", - "2022-09-23T00:00:00", - "2022-09-23T00:00:00", - "2022-09-29T00:00:00", - "2022-10-09T00:00:00", - "2022-10-09T00:00:00", - "2022-10-25T00:00:00", - "2022-10-25T00:00:00", - "2022-11-02T00:00:00", - "2022-11-02T00:00:00", - "2022-11-02T00:00:00", - "2022-11-03T00:00:00", - "2022-11-10T00:00:00", - "2022-11-10T00:00:00", - "2022-11-24T00:00:00", - "2022-11-24T00:00:00", - "2022-11-26T00:00:00", - "2022-11-26T00:00:00", - "2022-12-04T00:00:00", - "2022-12-04T00:00:00", - "2022-12-05T00:00:00", - "2022-12-28T00:00:00", - "2022-12-28T00:00:00", - "2023-02-05T00:00:00", - "2023-02-05T00:00:00", - "2023-02-07T00:00:00", - "2023-02-22T00:00:00", - "2023-02-22T00:00:00", - "2023-03-10T00:00:00", - "2023-03-10T00:00:00", - "2023-03-26T00:00:00", - "2023-03-26T00:00:00", - "2023-03-27T00:00:00", - "2023-04-02T00:00:00", - "2023-04-03T00:00:00", - "2023-04-03T00:00:00", - "2023-05-06T00:00:00", - "2023-05-11T00:00:00", - "2023-05-22T00:00:00", - "2023-05-29T00:00:00", - "2023-05-29T00:00:00", - "2023-05-30T00:00:00", - "2023-06-02T00:00:00", - "2023-06-06T00:00:00", - "2023-06-06T00:00:00", - "2023-06-07T00:00:00", - "2023-06-07T00:00:00", - "2023-06-07T00:00:00", - "2023-06-29T00:00:00", - "2023-06-30T00:00:00", - "2023-06-30T00:00:00", - "2023-07-01T00:00:00", - "2023-07-08T00:00:00", - "2023-07-08T00:00:00", - "2023-07-25T00:00:00", - "2023-07-26T00:00:00", - "2023-07-26T00:00:00", - "2023-08-01T00:00:00", - "2023-08-01T00:00:00", - "2023-08-02T00:00:00", - "2023-08-09T00:00:00", - "2023-08-09T00:00:00", - "2023-08-10T00:00:00", - "2023-09-02T00:00:00", - "2023-09-02T00:00:00", - "2023-09-03T00:00:00", - "2023-09-10T00:00:00", - "2023-09-10T00:00:00", - "2023-09-11T00:00:00", - "2023-09-27T00:00:00", - "2023-10-04T00:00:00", - "2023-10-04T00:00:00", - "2023-10-05T00:00:00", - "2023-10-05T00:00:00", - "2023-10-10T00:00:00", - "2023-10-10T00:00:00", - "2023-10-28T00:00:00", - "2023-10-28T00:00:00", - "2023-11-05T00:00:00", - "2023-11-05T00:00:00", - "2023-11-06T00:00:00", - "2023-11-06T00:00:00", - "2023-11-06T00:00:00", - "2023-11-29T00:00:00", - "2023-11-29T00:00:00", - "2023-11-30T00:00:00", - "2023-12-07T00:00:00", - "2023-12-07T00:00:00", - "2023-12-08T00:00:00" - ], - "xaxis": "x", - "y": [ - 6.827380798276074, - 16.025166697089183, - 18.40036670973917, - 23.241562501877528, - 12.237015384615384, - 10.242635430426663, - 12.237015384615384, - 10.242635430426663, - 9.79657293917416, - 9.797697933999162, - 9.79657293917416, - 9.797697933999162, - 12.73119999985751, - 12.73119999985751, - 6.212512962307695, - 6.212512962307695, - 6.361048372833334, - 6.786898370335833, - 6.361048372833334, - 6.786898370335833, - 8.2861550012925, - 8.2861550012925, - 12.488089780238347, - 13.285935613571684, - 12.488089780238347, - 13.285935613571684, - 8.548234217174171, - 8.548234217174171, - 6.117824999855012, - 6.942624999855014, - 6.117824999855012, - 6.942624999855014, - 17.562091676531644, - 17.562091676531644, - 15.266820836540854, - 15.478420837173353, - 15.266820836540854, - 15.478420837173353, - 8.728423361115839, - 8.728423361115839, - 7.750708331853344, - 7.618683331453344, - 7.750708331853344, - 7.618683331453344, - 11.623326531004157, - 11.623326531004157, - 17.34248334442834, - 17.34248334442834, - 12.68805333535832, - 12.68805333535832, - 12.4334721664575, - 12.608284667027494, - 12.4334721664575, - 12.608284667027494, - 8.773489172656655, - 8.773489172656655, - 17.787533337265867, - 17.6607666661517, - 17.787533337265867, - 17.6607666661517, - 18.974316666666667, - 18.974316666666667, - 19.594762498860028, - 18.91359583238336, - 19.594762498860028, - 18.91359583238336, - 10.83343333887083, - 10.83343333887083, - 19.07229999995249, - 19.07229999995249, - 10.829593350915822, - 10.829593350915822, - 24.415970416666664, - 24.330246166666665, - 24.415970416666664, - 24.330246166666665, - 14.080140913333311, - 14.080140913333311, - 13.256233335740855, - 5.348875000745014, - 13.256233335740855, - 5.348875000745014, - 14.326887504984988, - 14.326887504984988, - 9.975489583100831, - 9.84473958323833, - 9.975489583100831, - 9.84473958323833, - 10.847778391208331, - 10.847778391208331, - 10.793995836350836, - 10.793995836350836, - 20.59224168343164, - 20.40517502150747, - 20.59224168343164, - 20.40517502150747, - 11.5835187524025, - 11.5835187524025, - 10.32129887007334, - 5.296008757883328, - 10.32129887007334, - 5.296008757883328, - 9.694074174424172, - 9.694074174424172, - 11.572887502955002, - 12.680304926763329, - 11.572887502955002, - 12.680304926763329, - 10.92946308461538, - 10.92946308461538, - 12.513305618875274, - 12.513305618875274, - 10.979717424425823, - 10.271317424568329, - 10.979717424425823, - 10.271317424568329, - 9.52977701427917, - 9.52977701427917, - 14.100986740423336, - 14.118461741278333, - 14.100986740423336, - 14.118461741278333, - 10.864783380945834, - 10.864783380945834, - 6.311949994735008, - 6.39832499495001, - 6.311949994735008, - 6.39832499495001, - 12.41048839021584, - 14.449002963544167, - 12.41048839021584, - 14.449002963544167, - 10.780513248643336, - 10.780513248643336, - 9.235308333475828, - 8.27250000004749, - 9.235308333475828, - 8.27250000004749, - 7.019741822307693, - 7.019741822307693, - 4.037281979999996, - 4.037281979999996, - 4.711450000095009, - 4.725500000202509, - 4.711450000095009, - 4.725500000202509, - 9.918908331375842, - 9.918908331375842, - 3.266500000095008, - 3.265000000095007, - 3.266500000095008, - 3.265000000095007, - 5.6760992692175, - 5.6760992692175, - 6.509524995260012, - 7.089887497075012, - 6.509524995260012, - 7.089887497075012, - 15.458075000199996, - 12.522750000400013, - 15.458075000199996, - 12.522750000400013, - 11.352893415904996, - 13.144414810985834, - 11.352893415904996, - 13.144414810985834, - 9.150536707039162, - 9.150536707039162, - 16.701100022985017, - 16.701100022985017, - 30.920845838123327, - 30.920845838123327, - 24.99856667356672, - 10.734786369999988, - 24.99856667356672, - 10.734786369999988, - 6.613575000384986, - 6.613575000384986, - 16.541143949109152, - 11.428036369999989, - 16.541143949109152, - 11.428036369999989, - 10.067888660162506, - 10.067888660162506, - 11.9189062531275, - 11.6209437537075, - 11.9189062531275, - 11.6209437537075, - 13.717062157942491, - 13.717062157942491, - 21.808370845023315, - 21.808370845023315, - 5.235149998732501, - 6.695168330870835, - 5.235149998732501, - 6.695168330870835, - 8.05186646507692, - 8.05186646507692, - 9.054824997724984, - 9.054824997724984, - 16.877150000427488, - 16.323383333808327, - 16.877150000427488, - 16.323383333808327, - 6.340749995150008, - 6.340749995150008, - 10.42876250151999, - 10.42876250151999, - 6.725774993015008, - 6.832149993415007, - 6.725774993015008, - 6.832149993415007, - 9.316350012637509, - 9.316350012637509, - 5.425200000259996, - 5.696325001865001, - 5.425200000259996, - 5.696325001865001, - 8.274274999995004, - 20.84420834272332, - 8.274274999995004, - 20.84420834272332, - 10.022200012392515, - 10.784875020132509, - 10.022200012392515, - 10.784875020132509, - 9.295708333225846, - 9.295708333225846, - 11.951820834703335, - 11.951820834703335, - 15.52785416972168, - 15.992804170936688, - 15.52785416972168, - 15.992804170936688, - 7.548502896333332, - 7.548502896333332, - 6.963190223530233, - 6.922883972190236, - 6.963190223530233, - 6.922883972190236, - 12.880502083805824, - 12.880502083805824, - 8.226866678333336, - 8.226866678333336, - 23.96410834262836, - 24.56987500920001, - 23.96410834262836, - 24.56987500920001, - 15.017059850000008, - 15.017059850000008, - 15.383150000100011, - 14.947966666766678, - 15.383150000100011, - 14.947966666766678, - 21.97768334023333, - 10.712591666666656, - 21.97768334023333, - 10.712591666666656, - 8.247246213380835, - 8.247246213380835, - 14.821908343700832, - 14.894908343558336, - 14.821908343700832, - 14.894908343558336, - 6.299174997100007, - 6.299174997100007, - 12.23097257799998, - 12.597859093333314, - 12.23097257799998, - 12.597859093333314, - 34.586412516289954, - 34.586412516289954, - 25.437478338123352, - 16.064177279999978, - 25.437478338123352, - 16.064177279999978, - 13.137541668146664, - 13.137541668146664, - 7.788149997197513, - 7.7972374993475135, - 7.788149997197513, - 7.7972374993475135, - 8.668009645076921, - 14.740909090047472, - 15.9556555708167, - 14.01588741081671, - 17.058175000332483, - 11.16914341128204, - 11.444130699743576, - 8.9499636407475, - 8.200862501092502, - 12.795766667954148, - 13.01589791790665, - 14.661325011417494, - 13.022445492410831, - 7.239681088375835, - 5.614782713888332, - 10.01349999996751, - 8.924688653062505, - 9.785950000072516, - 9.059000000072515, - 9.430825005240006, - 15.289833338028329, - 6.584853293019994, - 13.748902087630846, - 13.748902087630842, - 7.994916666521678, - 8.005991666521677, - 12.989534167557494, - 16.25235000067001, - 10.668975002880003, - 19.565837500637503, - 10.565555026332492, - 11.178088364123322, - 16.176808337563347, - 16.00968333756335, - 3.460263461538458, - 11.396175001604991, - 20.32736136563332, - 23.63325, - 23.893808333333325, - 8.173020000552503, - 8.364245002735, - 9.648448107080844, - 10.621494183976672, - 11.817326542658328, - 18.40607500301248, - 16.915641674326647, - 14.759612410816707, - 10.06033126519251, - 9.83180001298751, - 13.429262410816715, - 7.875180450881657, - 7.574811696016659, - 7.829550013247513, - 9.03188750046252, - 9.134320833723352, - 13.114059583260833, - 14.332258334190849, - 13.422333333590844, - 14.323025002917491, - 12.52502291772666, - 9.009465043100008, - 5.883508328478342, - 12.475095469807505, - 10.660689581385848, - 8.196539580513345, - 11.49597500020001, - 6.345420828145849, - 11.79697339645084, - 11.2150999999, - 12.329424998089994, - 11.71803333357084, - 9.717319166736669, - 9.958535833403332, - 4.989615546551665, - 6.954774995165005, - 6.900774995165005, - 15.837625021742502, - 22.99856666439417, - 10.194382074890836, - 11.783740426901648, - 11.572925000362495, - 11.372350000295006, - 13.48974166686667, - 19.42420000714252, - 17.74571667596169, - 5.258670832695839, - 18.40090628988252, - 16.570472945951675, - 11.99590228999999, - 12.064310471701669, - 11.680468796662506, - 5.161193179999994, - 18.659440153966656, - 23.9204278011578, - 22.941056250190023, - 23.009056250190024, - 9.804183760010009, - 6.488274994090008, - 11.891041666809178, - 7.386072917619167, - 8.048652086303337, - 7.111281253065003, - 9.667049588400836, - 9.766960004672503, - 9.68158750085751, - 18.95225000296498, - 15.583768947189151, - 20.28034166972665, - 12.677968754127503, - 9.239525794064171, - 9.643612165271676, - 9.458646690366674, - 11.03831319662944, - 17.475919454119424, - 8.81157670674, - 10.734131249415013, - 10.652956249605014, - 9.775615044300013, - 10.905390093167505, - 11.507790100042508, - 14.449990929232492, - 9.359035240524172, - 13.311777661011677, - 10.047926521354167, - 23.322425000677505, - 5.707879169161656, - 8.497173512802496, - 18.0607848523, - 14.715031251279996, - 21.95115000953748, - 21.95267500953748, - 11.611949998194998, - 8.381174999755, - 4.403975767454996, - 14.20641819004748, - 16.526245440047468, - 27.888655000000025, - 7.81410208356335, - 7.475702081240849, - 8.18840833796834, - 8.52884586336084, - 11.652867823076908, - 14.885259092869994, - 14.976909092965, - 10.638332721999996, - 15.690243180047467, - 9.43090833975834, - 7.154249996410005, - 7.016049995395005, - 11.798442426230828, - 9.069875003039996, - 9.286875002902496, - 9.79151875147249, - 9.603086531027763, - 8.575667782030271, - 15.080542426060816, - 15.282817426060817, - 9.466881263357507, - 12.903489583475825, - 7.219375019837503, - 10.81472916602418, - 10.908629166024182, - 11.236400005502494, - 10.581402082265846, - 10.556895832170849, - 6.525947913764169, - 7.406870262094171, - 7.406870262094171, - 17.394550002157526, - 20.414433335688383, - 5.990445821263341, - 11.567228414080832, - 11.620549999177513, - 11.493649999430009, - 6.187595826378347, - 9.481478361278326, - 11.445449168556658, - 11.417270002654996, - 17.468722916589158, - 14.14611458561832, - 24.73964166810168, - 11.307158337675844, - 16.555264583533322, - 11.661796963333328, - 5.379083334968329, - 10.120159091856658, - 11.22321462635333, - 15.929565280647765, - 16.120075757094142, - 18.72537500301248, - 9.611522287346942, - 21.12880833582332, - 24.63584166967913, - 11.31265902997777, - 6.008199994490009, - 13.432474999970005, - 10.033950007039998, - 12.775486280585303, - 7.243449998680002, - 7.111465148380834, - 6.572848359418334, - 18.2775958362508, - 16.193941671789148, - 16.789941674041653, - 10.179549586088344, - 12.301112502452495, - 17.516636667284157, - 17.15405333395082, - 10.001806677629174, - 9.658481677149174, - 24.27742499999998, - 14.196309090474982, - 20.301878334045817, - 11.65922708406083, - 9.801663644435004, - 16.165045453760825, - 7.1325700200175, - 6.983946267255004, - 17.149005217576672, - 5.98574999384501, - 7.676470834055848, - 9.844425001147496, - 9.041020005770006, - 22.17366250056002, - 21.136885417431667, - 16.196850000764993, - 12.654299998795, - 13.856099999129995, - 7.452900000217496, - 8.463012512889172, - 8.341130322967503, - 13.821518756214989, - 20.23572500460001, - 28.539149592533374, - 27.89934126150001, - 11.834624166734166, - 9.14042500000001, - 8.372374998999994, - 20.62955837952335, - 10.347153146382505, - 11.839696683948336, - 12.8732750068375, - 18.05923333358084, - 17.947069027872786, - 28.020740285485232, - 8.13296061166666, - 20.13031002597502, - 18.87231003057501, - 23.93335075709917, - 13.042064586393328, - 18.015150759109147, - 11.14652500043751, - 10.611720833865846, - 9.14398959123583, - 14.467879543380809, - 18.25653712014248, - 11.580226430512802, - 11.452312502129994, - 15.453425757094156, - 10.749166669089178, - 9.33653333358334, - 12.181450000427494, - 12.729175000379996, - 15.45200909268, - 10.296874999909996, - 8.735699996624998, - 11.722970834768336, - 12.210929168101664, - 8.978197916886696, - 8.337058332963359, - 11.026712413211731, - 8.294641666069182, - 7.703595833520851, - 8.77161249978, - 8.789987499577501, - 20.06055833371331, - 20.06410833371331, - 11.03940000134999, - 8.42227086030833, - 10.72739000677, - 17.788859203789162, - 16.557325016527496, - 13.815608334483338, - 9.547257501562523, - 10.290058338353342, - 10.427108339613344, - 9.656900010222492, - 9.518521555454152, - 7.406199999985002, - 9.309124999969995, - 9.85039999981, - 10.430906253345016, - 8.970724999050026, - 13.385080416784165, - 14.168343749020009, - 12.62761874915, - 11.308558348148324, - 21.24715000125003, - 19.96103750103252, - 8.705683342555824, - 14.079062930326677, - 14.069637931709176, - 10.321177273855014, - 10.885356440521685, - 13.802583333390828, - 9.56209999965251, - 10.703149999472508, - 15.594965013590013, - 21.45374169886668, - 17.56275000218001, - 12.017006259414996, - 17.591025000200013, - 16.918700000200012, - 7.231368196295829, - 5.948875000192496, - 18.65635001143249, - 13.735625006932487, - 7.139165136666662, - 16.567529033280277, - 3.599396946739166, - 10.966395842428334, - 21.19034166977416, - 12.807508334568327, - 21.33658750196001, - 21.219908336003343, - 9.709151511739158, - 15.022811558741653, - 8.396212272000003, - 5.348161359999991, - 3.426626650769228, - 13.15505453990498, - 15.486616669156644, - 10.054060159816087, - 8.188354371585959 - ], - "yaxis": "y" - } - ], - "layout": { - "autosize": true, - "legend": { - "tracegroupgap": 0 - }, - "margin": { - "t": 60 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "rgb(36,36,36)" - }, - "error_y": { - "color": "rgb(36,36,36)" - }, - "marker": { - "line": { - "color": "white", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "white", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "rgb(36,36,36)", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "rgb(36,36,36)" - }, - "baxis": { - "endlinecolor": "rgb(36,36,36)", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "rgb(36,36,36)" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "colorscale": [ - [ - 0, - "#440154" - ], - [ - 0.1111111111111111, - "#482878" - ], - [ - 0.2222222222222222, - "#3e4989" - ], - [ - 0.3333333333333333, - "#31688e" - ], - [ - 0.4444444444444444, - "#26828e" - ], - [ - 0.5555555555555556, - "#1f9e89" - ], - [ - 0.6666666666666666, - "#35b779" - ], - [ - 0.7777777777777778, - "#6ece58" - ], - [ - 0.8888888888888888, - "#b5de2b" - ], - [ - 1, - "#fde725" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "colorscale": [ - [ - 0, - "#440154" - ], - [ - 0.1111111111111111, - "#482878" - ], - [ - 0.2222222222222222, - "#3e4989" - ], - [ - 0.3333333333333333, - "#31688e" - ], - [ - 0.4444444444444444, - "#26828e" - ], - [ - 0.5555555555555556, - "#1f9e89" - ], - [ - 0.6666666666666666, - "#35b779" - ], - [ - 0.7777777777777778, - "#6ece58" - ], - [ - 0.8888888888888888, - "#b5de2b" - ], - [ - 1, - "#fde725" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "colorscale": [ - [ - 0, - "#440154" - ], - [ - 0.1111111111111111, - "#482878" - ], - [ - 0.2222222222222222, - "#3e4989" - ], - [ - 0.3333333333333333, - "#31688e" - ], - [ - 0.4444444444444444, - "#26828e" - ], - [ - 0.5555555555555556, - "#1f9e89" - ], - [ - 0.6666666666666666, - "#35b779" - ], - [ - 0.7777777777777778, - "#6ece58" - ], - [ - 0.8888888888888888, - "#b5de2b" - ], - [ - 1, - "#fde725" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "line": { - "color": "white", - "width": 0.6 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "colorscale": [ - [ - 0, - "#440154" - ], - [ - 0.1111111111111111, - "#482878" - ], - [ - 0.2222222222222222, - "#3e4989" - ], - [ - 0.3333333333333333, - "#31688e" - ], - [ - 0.4444444444444444, - "#26828e" - ], - [ - 0.5555555555555556, - "#1f9e89" - ], - [ - 0.6666666666666666, - "#35b779" - ], - [ - 0.7777777777777778, - "#6ece58" - ], - [ - 0.8888888888888888, - "#b5de2b" - ], - [ - 1, - "#fde725" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "colorscale": [ - [ - 0, - "#440154" - ], - [ - 0.1111111111111111, - "#482878" - ], - [ - 0.2222222222222222, - "#3e4989" - ], - [ - 0.3333333333333333, - "#31688e" - ], - [ - 0.4444444444444444, - "#26828e" - ], - [ - 0.5555555555555556, - "#1f9e89" - ], - [ - 0.6666666666666666, - "#35b779" - ], - [ - 0.7777777777777778, - "#6ece58" - ], - [ - 0.8888888888888888, - "#b5de2b" - ], - [ - 1, - "#fde725" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - }, - "colorscale": [ - [ - 0, - "#440154" - ], - [ - 0.1111111111111111, - "#482878" - ], - [ - 0.2222222222222222, - "#3e4989" - ], - [ - 0.3333333333333333, - "#31688e" - ], - [ - 0.4444444444444444, - "#26828e" - ], - [ - 0.5555555555555556, - "#1f9e89" - ], - [ - 0.6666666666666666, - "#35b779" - ], - [ - 0.7777777777777778, - "#6ece58" - ], - [ - 0.8888888888888888, - "#b5de2b" - ], - [ - 1, - "#fde725" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "rgb(237,237,237)" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "rgb(217,217,217)" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 1, - "tickcolor": "rgb(36,36,36)", - "ticks": "outside" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "rgb(103,0,31)" - ], - [ - 0.1, - "rgb(178,24,43)" - ], - [ - 0.2, - "rgb(214,96,77)" - ], - [ - 0.3, - "rgb(244,165,130)" - ], - [ - 0.4, - "rgb(253,219,199)" - ], - [ - 0.5, - "rgb(247,247,247)" - ], - [ - 0.6, - "rgb(209,229,240)" - ], - [ - 0.7, - "rgb(146,197,222)" - ], - [ - 0.8, - "rgb(67,147,195)" - ], - [ - 0.9, - "rgb(33,102,172)" - ], - [ - 1, - "rgb(5,48,97)" - ] - ], - "sequential": [ - [ - 0, - "#440154" - ], - [ - 0.1111111111111111, - "#482878" - ], - [ - 0.2222222222222222, - "#3e4989" - ], - [ - 0.3333333333333333, - "#31688e" - ], - [ - 0.4444444444444444, - "#26828e" - ], - [ - 0.5555555555555556, - "#1f9e89" - ], - [ - 0.6666666666666666, - "#35b779" - ], - [ - 0.7777777777777778, - "#6ece58" - ], - [ - 0.8888888888888888, - "#b5de2b" - ], - [ - 1, - "#fde725" - ] - ], - "sequentialminus": [ - [ - 0, - "#440154" - ], - [ - 0.1111111111111111, - "#482878" - ], - [ - 0.2222222222222222, - "#3e4989" - ], - [ - 0.3333333333333333, - "#31688e" - ], - [ - 0.4444444444444444, - "#26828e" - ], - [ - 0.5555555555555556, - "#1f9e89" - ], - [ - 0.6666666666666666, - "#35b779" - ], - [ - 0.7777777777777778, - "#6ece58" - ], - [ - 0.8888888888888888, - "#b5de2b" - ], - [ - 1, - "#fde725" - ] - ] - }, - "colorway": [ - "#1F77B4", - "#FF7F0E", - "#2CA02C", - "#D62728", - "#9467BD", - "#8C564B", - "#E377C2", - "#7F7F7F", - "#BCBD22", - "#17BECF" - ], - "font": { - "color": "rgb(36,36,36)" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "white", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "white", - "polar": { - "angularaxis": { - "gridcolor": "rgb(232,232,232)", - "linecolor": "rgb(36,36,36)", - "showgrid": false, - "showline": true, - "ticks": "outside" - }, - "bgcolor": "white", - "radialaxis": { - "gridcolor": "rgb(232,232,232)", - "linecolor": "rgb(36,36,36)", - "showgrid": false, - "showline": true, - "ticks": "outside" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "white", - "gridcolor": "rgb(232,232,232)", - "gridwidth": 2, - "linecolor": "rgb(36,36,36)", - "showbackground": true, - "showgrid": false, - "showline": true, - "ticks": "outside", - "zeroline": false, - "zerolinecolor": "rgb(36,36,36)" - }, - "yaxis": { - "backgroundcolor": "white", - "gridcolor": "rgb(232,232,232)", - "gridwidth": 2, - "linecolor": "rgb(36,36,36)", - "showbackground": true, - "showgrid": false, - "showline": true, - "ticks": "outside", - "zeroline": false, - "zerolinecolor": "rgb(36,36,36)" - }, - "zaxis": { - "backgroundcolor": "white", - "gridcolor": "rgb(232,232,232)", - "gridwidth": 2, - "linecolor": "rgb(36,36,36)", - "showbackground": true, - "showgrid": false, - "showline": true, - "ticks": "outside", - "zeroline": false, - "zerolinecolor": "rgb(36,36,36)" - } - }, - "shapedefaults": { - "fillcolor": "black", - "line": { - "width": 0 - }, - "opacity": 0.3 - }, - "ternary": { - "aaxis": { - "gridcolor": "rgb(232,232,232)", - "linecolor": "rgb(36,36,36)", - "showgrid": false, - "showline": true, - "ticks": "outside" - }, - "baxis": { - "gridcolor": "rgb(232,232,232)", - "linecolor": "rgb(36,36,36)", - "showgrid": false, - "showline": true, - "ticks": "outside" - }, - "bgcolor": "white", - "caxis": { - "gridcolor": "rgb(232,232,232)", - "linecolor": "rgb(36,36,36)", - "showgrid": false, - "showline": true, - "ticks": "outside" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "rgb(232,232,232)", - "linecolor": "rgb(36,36,36)", - "showgrid": false, - "showline": true, - "ticks": "outside", - "title": { - "standoff": 15 - }, - "zeroline": false, - "zerolinecolor": "rgb(36,36,36)" - }, - "yaxis": { - "automargin": true, - "gridcolor": "rgb(232,232,232)", - "linecolor": "rgb(36,36,36)", - "showgrid": false, - "showline": true, - "ticks": "outside", - "title": { - "standoff": 15 - }, - "zeroline": false, - "zerolinecolor": "rgb(36,36,36)" - } - } - }, - "xaxis": { - "anchor": "y", - "autorange": true, - "domain": [ - 0, - 1 - ], - "range": [ - "2014-12-31", - "2023-12-08" - ], - "title": { - "text": "date_acquired" - }, - "type": "date" - }, - "yaxis": { - "anchor": "x", - "autorange": true, - "domain": [ - 0, - 1 - ], - "range": [ - 1.5249215269730652, - 36.326490989411894 - ], - "title": { - "text": "predictions" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABWUAAAFoCAYAAAA/wpnnAAAAAXNSR0IArs4c6QAAIABJREFUeF7snXWAVNX7xl+6u7sWlu7uThFFURRMBPErKgYhS3dYWCiKgaIgNtLdsHTX0i2dS/P7PWc562WZnZ2Ze2fmzszz/kPsPeee87l3Z+59znueN9Hdu3fvCoMESIAESIAESIAESIAESIAESIAESIAESIAESIAESMAnBBJRlPUJZ56EBEiABEiABEiABEiABEiABEiABEiABEiABEiABBQBirK8EUiABEiABEiABEiABEiABEiABEiABEiABEiABEjAhwQoyvoQNk9FAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRleQ+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgA8JUJT1IWyeigRIgARIgARIgARIgARIgARIgARIgARIgARIgAQoyvIeIAESIAESIAESIAESIAESIAESIAESIAESIAESIAEfEqAo60PYPBUJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJTlPUACJEACJEACJEACJEACJEACJEACJEACJEACJEACPiRAUdaHsHkqEiABEiABEiABEiABEiABEiABEiABEiABEiABEqAoy3uABEiABEiABEiABEiABEiABEiABEiABEiABEiABHxIgKKsD2HzVCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAUZb3AAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAn4kABFWR/C5qlIgARIgARIgARIgARIgARIgARIgARIgARIgARIgKIs7wESIAESIAESIAESIAESIAESIAESIAESIAESIAES8CEBirI+hM1TkQAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkABFWd4DJEACJEACJEACJEACJEACJEACJEACJEACJEACJOBDAhRlfQibpyIBEiABEiABEiABEiABEiABEiABEiABEiABEiABirK8B0iABEiABEiABEiABEiABEiABEiABEiABEiABEjAhwQoyvoQNk9FAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRleQ+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgA8JUJT1IWyeigRIgARIgARIgARIgARIgARIgARIgARIgARIgAQoyvIeIAESIAESIAESIAESIAESIAESIAESIAESIAESIAEfEqAo60PYPBUJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJTlPUACJEACJEACJEACJEACJEACJEACJEACJEACJEACPiRAUdaHsHkqEiABEiABEiABEiABEiABEiABEiABEiABEiABEqAoy3uABEiABEiABEiABEiABEiABEiABEiABEiABEiABHxIgKKsD2HzVCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAUZb3AAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAn4kABFWR/C5qlIgARIgARIgARIgARIgARIgARIgARIgARIgARIgKIs7wESIAESIAESIAESIAESIAESIAESIAESIAESIAES8CEBirI+hM1TkQAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkABFWd4DJEACJEACJEACJEACJEACJEACJEACJEACJEACJOBDAhRlfQibpyIBEiABEiABEiABEiABEiABEiABEiABEiABEiABirK8B0iABEiABEiABEiABEiABEiABEiABEiABEiABEjAhwQoyvoQNk9FAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRleQ+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgA8JUJT1IWyeigRIgARIgARIgARIgARIgARIgARIgARIgARIgAQoyvIeIAESIAESIAESIAESIAESIAESIAESIAESIAESIAEfEqAo60PYPBUJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJTlPUACJEACJEACJEACJEACJEACJEACJEACJEACJEACPiRAUdaHsHkqEiABEiABEiABEiABEiABEiABEiABEiABEiABEqAoy3uABEiABEiABEiABEiABEiABEiABEiABEiABEiABHxIgKKsD2HzVCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAUZb3AAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAn4kABFWR/C5qlIgARIgARIgARIgARIgARIgARIgARIgARIgARIgKIs7wESIAESIAESIAESIAESIAESIAESIAESIAESIAES8CEBirI+hM1TkQAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkABFWd4DJEACJEACJEACJEACJEACJEACJEACJEACJEACJOBDAhRlfQibpyIBEiABEiABEiABEiABEiABEiABEiABEiABEiABirK8B0iABEiABEiABEiABEiABEiABEiABEiABEiABEjAhwQoyvoQNk9FAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRleQ+QAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgA8JUJT1IWyeigRIgARIgARIgARIgARIgARIgARIgARIgARIgAQoyvIeIAESIAESIAESIAESIAESIAESIAESIAESIAESIAEfEqAo60PYPBUJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJTlPUACJEACJEACJEACJEACJEACJEACJEACJEACJEACPiRAUdaHsHkqEiABEiABEiABEiABEiABEiABEiABEiABEiABEqAoy3uABEiABEiABEiABEiABEiABEiABEiABEiABEiABHxIgKKsD2HzVCRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAUdbEPVC0aFHZs2ePiR7YlARIgARIgARIgARIgARIgARIgARIgARIgARIINQIUJQ1ccUpypqAx6YkQAIkQAIkQAIkQAIkQAIkQAIkQAIkQAIkEKIEKMqauPAUZU3AY1MSIAESIAESIAESIAESIAESIAESIAESIAESCFECFGVNXHiKsibgsSkJkAAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJhCgBirImLjxFWRPw2JQESIAESIAESIAESIAESIAESIAESIAESIAEQpQARVkTF56irAl4bEoCJEACJEACJEACJEACJEACJEACJEACJEACIUqAoqyJC09R1gQ8NiUBEiABEiABEiABEiABEiABEiABEiABEiCBECVAUdbEhacoawIem5IACZAACZAACZAACZAACZAACZAACZAACZBAiBKgKGviwlOUNQGPTUmABEiABEiABEiABEiABEiABEiABEiABEggRAlQlDVx4SnKmoDHpiRAAiRAAiRAAiRAAiRAAiRAAiRAAiRAAiQQogQoypq48BRlTcBjUxIgARKwOYFL127J4XNXpWSu9DYfKYdHAiRAAiRAAiRAAiRAAiRAAiQQaAQoypq4YhRlTcBjUxIgARKwOYFyg+bIheibMufNulIsRzqbj5bDIwESIAESIAESIAESIAESIAESCCQCFGVNXC2KsibgsSkJkAAJ2JxAmYGzBdmyXzxTSZqXymnz0XJ4JEACJEACJEACJEACJEACJEACgUSAoqyJq0VR1gQ8NiUBEiABmxPQomyv5sXllfpFbD5aDo8ESIAESIAESIAESIAESIAESCCQCFCUNXG1KMqagMemJEACJGBzAqUHzJbL12/JE5XzyejHy9p8tBweCZAACZAACZAACZAACZAACZBAIBGgKGvialGUNQGPTUmABEjA5gRK9Z8lV27clsoFM8mvXWvafLQcHgmQAAmQAAmQAAmQAAmQAAmQQCARoChr4mpRlDUBj01JgARIwOYEtCibJU1yWdevic1Hy+GRAAmQAAmQAAmQAAmQAAmQAAkEEgGKsiauFkVZE/DYlARIgARsTqBk/1ly9cZtNcqtg5pJ2hRJbT5iDo8ESIAESIAESIAESIAESIAESCBQCFCUNXGlKMqagMemJEACJGBzAiX6zZLomzGi7F/dakm5vBltPmIOjwRIgARIgARIgARIgARIgARIIFAIUJQ1caUoypqAx6YkQAIkYHMCRlH2oyfLyyMV8th8xBweCZAACZAACZAACZAACZAACZBAoBCgKGviSlGUNQGPTUmABEjA5gSK95sp127eUaN8vVFReatJMZuPmMMjARIgARIgARIgARIgARIgARIIFAIUZU1cKYqyJuCxKQmQAAnYnEB435ly/VaMKNu6XG755KkKNh8xh0cCJEACJEACJEACJEACJEACJBAoBCjKmrhSFGVNwGNTEiABErA5AaMoWyp3epn+eh2bj5jDIwESIAESIAESIAESIAESIAESCBQCFGVNXCmKsibgsSkJkAAJ2JyAUZRNniSx7B7WwuYj5vBIgARIgARIgARIgARIgARIgAQChQBFWRNXiqKsCXhsSgIkQAI2J1AsYqbcuB1jX4CIjGgs2dOlsPmoOTwSIAESIAESIAESIAESIAESIIFAIEBR1sRVoihrAh6bkgAJkIDNCehM2eI508nOE5dkyss1pFqhzDYfNYdHAiRAAiRAAiRAAiRAAiRAAiQQCAQoypq4ShRlTcBjUxIgARKwOYGCvaerEbYsk0tmbDkuI9uWlfZV89l81BweCZAACZAACZAACZAACZAACZBAIBCgKGviKlGUNQGPTUmABEjA5gS0KPtaw6LyyYI90qVuYenTsoTNR83hkQAJkAAJkAAJkAAJkAAJkAAJBAIBirImrhJFWRPw2JQESIAEbE5Ai7IfPlle3pyyUZqUzCFfPVvZ5qPm8EiABEiABEiABEiABEiABEiABAKBAEVZE1eJoqwJeGxKAiRAAjYnoEXZv7rVkjafLpewbGll3tv1bD5qDo8ESIAESIAESIAESIAESIAESCAQCFCUNXGVKMqagMemJEACJGBzAlqU3TywmZQdOFuN9sDIVjYfNYdHAiRAAiRAAiRAAiRAAiRAAiQQCAQoypq4ShRlTcBjUxIgARKwOQEtykKIrTJ0npy6fF0W92ggBbKktvnIOTwSIAESIAESIAESIAESIAESIAG7E6Aoa+IKUZQ1AY9NSYAESMDmBAq9O13u3hXZN6KVtB+/UiL3n5VvX6gqDcKz2XzkHB4JkAAJkAAJkAAJkAAJkAAJkIDdCVCUNXGFKMqagMemJEACJGBzAjpTdv+IVvLuH5tlcuRh6d+6pLxYq5DNR87hkQAJkAAJkAAJkAAJkAAJkAAJ2J0ARVkTV4iirAl4bEoCFhL4auk++WbZfnmsYl55p1m4hT2zq1AmYBRlcY8Nn7FDnqleQIY8UjqUsXDuJEACJEACJEACJEACJEACJEACFhAICVE2KipKOnXqJMeOHVPIWrduLcOGDZNUqVKpf0dHR0tERIRMmzZN/Xv48OHSrl27BPFSlE0QEQ8gAZ8Q6P17TBZjlYKZZWrXGj45J08S/ASMnrJzt5+UzhPXSq2wrDLppWrBP3nOkARIgARIgARIgARIgARIgARIwKsEQkKUnTp1qhQoUECqVq2qYI4ZM0b92aNHjwf+ffbsWenSpYv07Nkz9vj4rgBFWa/em+ycBFwm0H3KRvlzw1FJkTSxbBvcXJImTuRyWx5IAvERMIqyUacuS+P3F0vujCllRe9GhEYCJEACJEACJEACJEACJEACJEACpgiEhCgblxBE2pUrV6psWWTJQoDt3bu3hIWFORRtKcqausfYmAS8TuCVH9fJzK0n1Hl+/18tqZg/o9fPyRMEPwGjKHv7zl0pGjFD7twV2TW0hVoAYJAACZAACZAACZAACZAACZAACZCApwRCTpTVVgW5cuVSmbKwNujVq5eMGjUqVpQ1irba4sARYGbKenrbsR0JWEvghe/WyMKd/6pOI1qVkM51Clt7AvYWcgTu3hUp9O50Ne8DI1upP+uOXiiHzl6VWd3rSvGc6UKOCSdMAiRAAiRAAiRAAiRAAiRAAiRgHYGQEmVhWzB+/Pj7PGUhyo4cOVJGjx4tmTNnVmQdibLffffdA9SRabtnzx7rrgZ7IgES8IjA01+tkhV7z6i2zUvllC+eqeRRP2xEApoAMmILvztdEiUS2T8iRpR94dtIWbjrlIzrWElalM5JWCRAAiRAAiRAAiRAAiRAAiRAAiTgMYGQEmU1JaPoevToUZcyZSdNmvQA5IEDB1KU9fjWY0MSsI5A23ErZP3Bc6rDjKmTycb+Ta3rnD2FJAFHouzgadvlm+X7pUezcHm1QYzdDYMESIAESIAESIAESIAESIAESIAEPCEQkqKsMTsW0Ogp68mtwzYkYB8CrT5eKtuOXYwd0OIeDaRAltT2GSBHEnAE4CFbpM8MQc24ffcyZX9YdVD6/blVHq+UV95rVy7g5sQBkwAJkAAJkAAJkAAJkAAJkAAJ2IdASIiy48aNkyZNmtxXyOv48eOq0Bc8Y2FrgIDH7NmzZ6VLly5KqK1atarTK0VPWfvcyBxJaBNo/MFiifr3soRlSytRpy7LB0+Ul7YV84Q2FM7eFIFbd+5KWJ8ZkiRxItk7vKXqa3nUaenw9WqpWCCT/P5KTVP9szEJkAAJkAAJkAAJkAAJkAAJkEBoEwgJUTYyMlI6dOgQe6Vbt24dK8jiP3Xxr2nTpqljhg8fLu3atUvwzqAomyAiHkACPiFQZ9QCOXwuWp6tUVAmrjwgT1fLL8MfLeOTc/MkwUnAkSh77Pw1qTlyvmRKnUw20CIjOC88Z0UCJEACJEACJEACJEACJEACPiIQEqKst1hSlPUWWfZLAu4RqDJsnpy6dF3GP1tZukxcK8VypJM5b9Z1rxMeTQIGAjdv35WiETMkaeJEEnUvUxY/LhYxU27cviNbBzWTtCmSkhkJkAAJkAAJkAAJkAAJkAAJkAAJeESAoqxH2GIaUZQ1AY9NScBCAmUHzpaL126p7MUKg+eonimaWQg4BLuC8AoBNlmSRLJnWIx9AaLF2CWy4/gl+ePVWlIhX8YQJMMpkwAJkAAJkAAJkAAJkAAJkAAJWEGAoqwJihRlTcBjUxKwkEB435ly/dYdOTCylTz+xQpZe+CcfPtCVWkQns3Cs7CrUCKA+wn3VfIkiWX3sBaxU//fpPUyY8tx+haH0s3AuZIACZAACZAACZAACZAACZCAFwhQlDUBlaKsCXhsSgIWEijYe7rqDaLsqFk7ZdyivdKtQZi80yzcwrOwq1AiEJ8o+97sXfLpwijp1jBM3mnK+yuU7gnOlQRIgARIgARIgARIgARIgASsJEBR1gRNirIm4LEpCVhE4NrNO1K830xJkTSx7BraQubv+Fc6fb9GqhfOIpO7VLfoLOwm1AhoUVbfV3r+v60/Im//sklalc0lnz1dMdSwcL4kQAIkQAIkQAIkQAIkQAIkQAIWEaAoawIkRVkT8NiUBCwicCH6ppQbNEcypk4mG/s3lfNXb0r5wXMkVbIksmNIc4vOwm5CjYAWZVMmSyw7h/xnX7Dx8Hl55LPlUip3epn+ep1Qw8L5kgAJkAAJkAAJkAAJ3CMwdv4eWbn3jLzeqKjULJKFXEiABEjAbQIUZd1G9l8DirIm4LEpCVhE4MTFa1J9+HzJni6FREY0Vr02fn+xRJ26LH91qyXl8rIYk0WoQ6qbuBnYevKXr9+S0gNmP+A1G1JwOFkSIAESIAESIAESIAG1Ow+79Ma2ryBtyucmERIgARJwmwBFWbeRUZQ1gYxNScByAgfPXJV6YxZK/sypZUnPBqr/Xr9tlilrDku/h0pKp9qFLD8nOwx+AtE3b0uJfrMkbqYsZl5h8Bw5d/WmrOrTSHKmTxn8MDhDEiABEiABEiABEiCBBwh0+Hq1LI86TVGW9wYJkIDHBCjKeoxOhJmyJuCxKQlYRGDXiUvS7KMlUjRHWpn7Zj3V69R1R6TH1E3SonROGdexkkVnYjehRODqjdtSsv8shzYYbcetkPUHz8lPnatzq1oo3RScKwmQAAmQAAmQAAkYCDw2boWsO3jOElF20a5TApuseuHZpEI+7vTjjUYCoUKAoqyJK01R1gQ8NiUBiwhsOXpBWn+yTNkUwK4AobNns6VLIWvuWRpYdDp2EyIEdKZs6uRJZPvg+72JIfhD+B/2aBnpUC1/iBDhNEmABEiABKwm8NL3awW2OF8/V1nSpkhqdffsjwRIwMsEHvpkmWw9ekHGti8vbcrnMXW2iD+2yKTVhySiZQnpXLewqb7YmARIIHAIUJQ1ca0oypqAx6YkYBGByP1n5YkvV0rlgpnk1641Y3tFsS8U/Vras4Hky5zaorOxm1AhcOXGbSnVf5Y4EmU/WxglY2bvkpfqFJK+rUqGChLOkwRIgARIwGICZQbOlkvXbsmavo0lW9oUFvfO7kiABLxNQNexGNG2jDxV1dxC/Vu/bJTf1x+Vd5qFS7cGYd4eOvsnARKwCQGKsiYuBEVZE/DYlAQsIrB0z2l5ZsJqqR2WVX58qVpsry//sE5mbzshHz1ZXh6pYG7l2qKhspsAIqALeqVJnkS2xcmUnbn1hLzy4zppWDy7fPN8lQCaFYdKAiRAAiRgJwJY/MMi4Mp3G0muDPQot9O14VhIwBUCtUYukKPnoy2pY9Htp/Xyz+bj8kajovJmk2KunJ7HkAAJBAEBirImLiJFWRPw2JQELCIwd/tJ6TxxrTQqkV0mPPefQPbVkn0ybMYO6Vi9gAx9pLRFZ2M3oULAmSi788Qlaf7REimUNY0sfKd+qCDhPEmABEiABCwmAO9yeJhzV4/FYNkdCfiIQKUhc+XMlRuWZLfifQbvNf+rX0R6Ni/uoxnwNCRAAv4mQFHWxBWgKGsCHpuSgEUEsKKMleVWZXPJZ09XjO11/aHz0vbz5VI8ZzqZ1b2uRWdjN6FCANtJsa0UHn9bBzW7b9rXb92R8L4zJXEikT3DWkoS/IVBAiRAAiRAAm4SKNFvlsDDfME79aVw1jRutubhJEAC/iags91fbRAmPZqFmxrOc99EyuLdp6RzncIS0aqEqb7YmARIIHAIUJQ1ca0oypqAx6YkYBGBX9cdkXembpK2FfPIB0+Uj+311p27yhP0xu07smVgMxbQsIh3qHRz8dotKTtwtqRLmVTdP3FDb1dDpiwyZhkkQAIkQAIk4C4BLPBhoW9297oSnjOdu815PAmQgJ8JFH53uty5K/JirULSv7W5OgPtx6+SVfvOyHM1C8qgh0v5eWY8PQmQgK8IUJQ1QZqirAl4bEoCFhH4cdVB6fvnVnm6Wn4Z/miZ+3pFATAUAvv+xapSr1g2i87IbkKBQEKibMevV8uyqNPKUxbesgwSIAESIAEScJeAFmWnv15HSuVO725zHk8CJOBHAkgACeszQ40ARb5Q7MtMYIcfdvo5eqcx0y/bkgAJ2JsARVkT14eirAl4bEoCFhGYsGy/DPlnu7xQq6AMaH3/qvLoWTvl80V75bWGReXtpjTMtwh5SHRzMfqmlB00R9KnTCqbHWTK9v9rq0xceVD6tiopL9UpFBJMOEkSIAESIAFrCRSNmCE3b9+VP1+tJeXzZbS2c/ZGAiTgVQK6/gBO0qZ8Hhnb/r8de56cuNXHS2XbsYvSrlJeGdOunCddsA0JkEAAEqAoa+KiUZQ1AY9NScAiAp8tjJIxs3fJK/WLSK84pvgLdv4rL363RmoWySI/da5u0RnZTSgQuBB9U8pBlE2VTDYPaPrAlL9dfkAGTdsmHarll2FxMrRDgQ/nSAIkQAIkYJ4AsuyQbfdr15pSuWAm8x2yBxIgAZ8ROH35hlQeOledr1mpnPLlM5VMnbvxB4sl6t/Llgi8pgbCxiRAAj4lQFHWBG6KsibgsSkJWETgg7m75eP5e+TNJsXkjUZF7+tVr2CnSJpYdgxpoQozMUjAFQIJibKLdp2S57+NpODvCkweQwIkQAIk4JBAkT4z5Padu/Jzl+pSo3AWUiIBEgggAofPRUudUQvUiOsWzSYTO1U1Nfo6oxfK4bNXpWWZXPJ5h/+KF5vqlI1JgARsT4CirIlLRFHWBDw2JQGLCAyfsUPGL9knvVsUl671ijzQq151/ue12lI6TwaLzspugp3A+as3pfzgOZIhVTLZ5CBTFg/NeHjOmT6lrOrTKNhxcH4kQAIkQAJeIFDo3ely964oMQeiDoMESCBwCCCrFe8ZCGS6I+PdTFQbPl9OXrwmTUrmkK+erWymK7YlARIIIAIUZU1cLIqyJuCxKQlYRGDA39vk+xUHZODDpeT5mgUf6LX375tlcuTheH9u0TDYTZAROHf1plQYPEcypk4mG/s/aF+A6eqKu7uGthBkYzNIgARIgARIwB0CBXtPV4ezaKQ71HgsCdiDwNajF+ShT5apwaBQHwr2mQkkAyApoH54NvnuBXNZt2bGwbYkQAK+JUBR1gRvirIm4LEpCVhEoNdvm2XKmsOq4ikqn8aN39Yfkbd/2SQPlc0lnz7NrUAWYQ/6blwRZXUW9ow36kjJXKyaHfQ3BSdIAiRAAhYT0KIsvCjhSckgARIIHAJrD5yTx79YoQZcJFsamf92fVODL9l/lly9cZvWWKYosjEJBB4BirImrhlFWRPw2JQELCLQfcpG+XPDUfnwyfLyaIU8D/R68MxVqTdmoWRPl0IiIxpbdFZ2E+wEzl65IRWHzJVMqZPJhngyZbtMXCtztp+Uz56uKK3K5gp2JJwfCZAACZCAhQRgWwD7AgS/RywEy65IwEcElkWdlo5fr1Zny5Uhpax815ydlfaYtsIKwUcIeBoSIAELCFCUNQGRoqwJeGxKAhYR6PrjOpm19YQyxIcxvqPQ24GW924oeTKmsujM7CaYCZy5ckMqDZkrmdMkl/X9mjic6oiZO+XLxXvlnaY4U0FQAAAgAElEQVTh0q1hWDDj4NxIgARIgAQsJnDn/71kYYODGNu+vKq4ziABEggcAvN2nJSXvl+rBuzM7srVGenM+XJ5M8pf3Wq52ozHkQAJBDgBirImLiBFWRPw2JQELCLwwreRsnDXKad+bF1/WCeztp2Qse0rSJvyuS06M7sJZgKuiLK/rD0sPX/dLI9XyivvtSsXzDg4NxIgARIgAYsJ3LpzV8L6zFC94jsE3yUMEiCBwCHwz+bj0u2n9WrAqC2AGgOeRvTN21Ki3yzVHJZYsMZikAAJhAYBirImrjNFWRPw2JQELCLw9FerZMXeMzLppWpSKyyrw16/WrpPhk3fIc/WKCCD25S26MzsJpgJnL58QyoPnStZ0iSXdfFkykLoh+DfvFRO+eKZSsGMg3MjARIgARKwmMDN23elaESMKBufL77Fp2R3JEACFhKYuu6I9Ji6KbbHAyNbedz7heibUm7QHNU+LHtamfdWPY/7YkMSIIHAIkBR1sT1oihrAh6bkoBFBNp+vlzWHzovv71SUyoVyOSw1w2Hz8ujny3nyrNFzEOhm1OXr0uVofMka9rksravY/sC+MnCV7ZpyRwy/tnKoYCFcyQBEiABErCIwI3bd6RYxEzVGxaMsXDMIAESCBwCP6w6KP3+3Bo74O2Dm0vq5Ek8msC/l65L1WHzVNsCWVLL4h4NPOqHjUiABAKPAEVZE9eMoqwJeGxKAhYRaPXxUtl27KL881ptKZ0nQ7y9ap8mM6vYFg2Z3QQAAVdE2bnbT0rniWulSckc8hVF2QC4qhwiCZAACdiHwPVbdyS8b4wo2791SXmxViH7DI4jIQESSJCA3omnD8QiPhbzPYnDZ69KndELVdPcGVPKit7mioZ5Mga2IQES8A8BirImuFOUNQGPTUnAIgKN3l8ke09dUdt8sN0nvijZf5ZcvXFbtg1uLmk8XMW2aMjsJgAInLp0XaoMmyfZ0qaQNX0bOxyxLvDQuEQO+fo5ZsoGwGXlEEmABEjANgSu3bwjxfvFiLJ9WpaQLnUL22ZsHAgJkEDCBD5dECXvzdkVe+DSXg0lXybPCgpHnbosjd9frPpy9uyZ8Kh4BAmQQKAR8LooO2bMGDl+/LgMGzZMsYmIiJBp06ZJ7ty5ZcKECRIWFrgVqynKBtrtzvEGI4HaoxbIkXPRsrRnA8mXOXW8UyzVf5ZcuXFbtg5qJmlTJA1GFJyThQT0NrJs6VLImgjHouz8Hf9Kp+/XSKMS2WXCc1UsPDu7IgESIAESCHYCWCjGgjGiR7NwebVB4L4TBfu18vX8uv64TnYcvyhDHykjdYo6rpfg6zHxfA8SeG/2Lvl0YVTsD+a+WU+K5og/QcQZQ+z6w+4/RIZUyWTTgKZETgIkECIEvCrKnj17Vrp06SI9e/aUqlWrSmRkpEyePFkJtFu2bIn9e6pUnq0o+fsaUZT19xXg+UlAlO8ntpojmxEry/FF2YGz5eK1WxRlQ+im2XTkvIyYsVPK5MkgEa1KuDVznSmbI31KWd3H8RayhbtOyQvfRlKUdYssDyYBEiABEgABoyj7VpNi8nqjogRDAopAkw8Xy56Tl+WjJ8vLIxXyWEIFHvjwwofdEmyXGOYJoIgwLAx0/N2ttpTNG7+VmrMzbjx8Xh75bLk6BDv6sLOPQQIkEBoEvC7KQpDt3bu3yohF1iyiR48eEhUVJSNHjpTRo0dL5syZA5I2RVl7X7bPFkbJ0j2nVeYBV5ntfa3MjE6LrZsHNpP0KePPgNXHbRnYTNI5Oc7MWNjWXgRmbj0hr/y4TmoWySI/da7u1uB0pmzO9CllVQKibMPi2eWb55kp6xZgHkwCJEACIU4Au3ewiwfxWsOi8nbTYiFOhNPXBOA1DM9hb4iyKEyKAqUM8wRQ5AvFvnRMebmGVCvkma6xev9ZefLLlbF9sQaG+evDHkggUAh4VZSNjo5WdgXt27dXomzcrFkIsuPHj6coGyh3S4CN89Wf1sv0zcfl/SfKyWMV8wbY6DlcVwnoB9eEHl7KDpojF6NvCkVZV8kG/nG/rD0sPX/dLNULZ5HJXdwTZU9evCbVhs8XZ6Ls4t2n5LlvIqVB8ezyLUXZwL9hOAMSIAES8CGBS9duSZmBs9UZu9YrIr1bFPfh2XkquxLQO3UwPm+Isl8+U0malcrpl+n3/2ub7D55SYa0Ke3xNn+/DDyek/aYukmmrjsS+9PvXqgq9cOzeTREJBI9M2E1RVmP6LERCQQ2Aa+KskCDjNhOnTrJsWPHlCiLLFlta1CtWjX170ANZsra+8q9+N0aWbDzXxn9eFl5onI+ew+Wo/OYQMHe01XbBEXZe/YFmwc0lfSpknl8PjYMHAITlu2XIf9sl6qFMssvL9dwa+DHL1yTGiNcE2XrFcsm379Y1a3+eTAJkAAJkEBoE8BCMRaMEZ1qF5J+D5UMbSCcvSKw5sBZafdFTMbkh0+Wl0ctsi946fu1ggKlX3SsJM1L+0eUbfv5cll/6Lz82rWmVC6YKeCvuE4A0hP5vENFaVkml0fzmrv9pHSeuDa27Z5hLSVZkkQe9cVGJEACgUXA66JsYOFwb7QUZd3j5eujO3y9WpZHnZZRj5eVJynK+hq/T84XffO2lOg3S1IkTSy7hrZwek6dKQvjfBjoM4KfwNj5e+TDubvVgz9eANwJV0TZJXtOybMTIqVu0WwysRNFWXf4Bsuxs7adkJ3HL0nTUjmkZK70wTItzsNHBEbO3Cl/bDgq7avkkzebcOu6j7Db5jTnr96U8oNjRNlnaxSUwW1K2WZsHIj/CPy2/oi8/csmNQBviLLjOlaSFn4WZbFQjgXzQA8tdGdMnUzw+/zBE+WlbUXPPICxuxMir47tg5tL6uRJ4kU0eNp22X78osqwL58vY6Cj5PhJIKQJUJQ1cfkpypqA54Omj3+xQtYeOCejHisrT1ZhpqwPkPv8FOeu3pQKg+e4VKW03KA5ciH6pmzs31Tw8MQIfgK6AEOlApnkt1fcE2WPnb8mNUfOl1wZUsrKdx0X+tJbzeBZ/UOnasEPlDN8gMAbkzfKXxuPSs/mxeV/9YuQEAm4RUB7naNI5co+jSRpYmZFuQUwwA/WzzCYxtPV8svwR8sE+Iw4fCsIfDB3t3w8f4/XRFkz2Zxm56czZc14r5odg5XtO369WpZFnZbCWdPIvtNXZOgjpaVj9QIeneL39UflrV82xrZNKImk+UdLZOeJS/LZ0xWlVVnPsnM9GigbkQAJWE7A66KstirYtClmxc8Y5cqVo6es5ZeUHWoCbT5dLqi+PrJtWWlflaJsMN4Zrvh+6nlDvMULEEXZYLwTHM+pzx9b5KfVh6RigUzyu5uirM6UzZMxlSzv3dDhCZCJj4x8irKhc0/FnSm2GmLL4TPVC8iQR0qHLgjO3G0C245dlFYfL41t9+nTFeUhvli7zTGQG5y9ckMqDpmrpoAdXdjZxSCBN6dsVBn0CG94yvpVlB23QtYfPCfBIsrqBCA8Z2JeEa1KSOc6hT26iaesOSy9ftsc23ZN38aCBbv4AhZbeFalTZ9HuNmIBGxFwOui7JgxY9SEA9k7Nr4rxkxZW93LDwym2UdLZNeJSyrzABkIjOAjcODMVak/ZqHkz5xalvRs4HSC2CKIrUUb+jeVTMyUDb6bwcGMXvt5g0zbdEwq5Msof7xay605Hz0fLbVGLpDcGVPKit6OM2W1KFuzSBb5qbN7hcTcGgwPti0B/T2Dwh4o8MEgAVcJjFu0V0bN2hl7uCc2K66ei8fZk8Dpyzek8tAYUfaRCnmUAMcggbb3hEuQ8IZ9wSdPVZDW5XL7BbTOlMUzE56dAj0e+mSZbD16QRqVyC7zd/wrbzctJq81LOrRtL5fcUAG/L0tti0SApAYEF8U7zdTrt28I31blZSX6hTy6JxsRAIkYA8CXhVlkSXbs2dP6d27t4SFhdljxhaOwijKrtx3RhJJIqleOPD9cSxE5NeuINZBtDOzlcSvE+DJEyQA0R2iSNEcaWXum/WcHq8zZdf3ayKZ0yRPsG8eEPgEXvg2UhbuOiXl8maUv7q5J8oeORcttUctUA/E8WXKrth7Rp7+apV6saAoG/j3iyczCO87U67fuiNh2dPKvLecfwZ50j/bBC8BfHbgM2Rs+/IS8cdWuXz9lvoew/cZwzsE8MwA0aNYjrQyuI3/M9tPXb4uVYbOU5NFljSypRkkAKEegj3CG6Lsx09VkIcpylpyozX+YLFE/XtZ2lXKK1PXHZFX6heRXs2Le9T3V0v2ybAZO2LbLurRQApmSe2wLzx34PkD0b1xMene2DMh2KOBshEJkIDlBCjKmkCqRdmbt+9K0YgZqqeETLlNnI5N3SSgt3VgSym2ljKCjwDsKWBTUSZPBpn2Wm2nE8QWQWwVXNeviWShKBt8N4ODGeltZa7cH3GbHz4XLXVGLZC8mVLJsl6O7QuwGPfU+FVSo3AW+bkLM2VD4qYyTNJYpMeVYoOhxofzdU6gYO/p6oDNA5rKR/P2yDfL99NX1Ms3jd7d4MnuCW8M7dSl61JlWIwo27xUTvnimUreOA37DCACRrENw/aGKDu2fQVpU96/mbI/vlRNaodlDaAr43ioWLzHIn6XuoVl/JJ98nzNgjLwYc8K9n26IErem7Mr9kTOFun+vXRdqt777ECWLLJlGSRAAoFLwKuiLLDAvqBgwYLSrl27wKUUz8i1KGv8Al3aq6HkyxT/VoOgg2DjCWkRDtVsUdWWEXwEIveflSe+XCmubPusNGSunLlyQ9b2bSJZ0zJTNvjuhgdnpIsglM6TQf5JQLSP29oVUXbVvrPSfvxKqV44i0ymKBsKt9R9c8SWRWxd1EFrFPvfAhF/bJHFu0/Jm02KyWMV8/ptwBjDc99EStm8GeTvbrXl8NmrUmf0QkmZLLHsHNLCb+MK9hMv2PmvvPjdGo8sbbzBRvvio29sf57wXBVvnIZ9BhABvQNMD9k7omx5aVM+j1+oaPsCFEeFH3+gh85qRnYs7GhQWBoFpj2J9+fslk8WxBR4Q0x/vY6Uyp3eYVe7T16Sph8uUT9D3RTUT2GQAAkELgGvi7JRUVHyww8/KAuDVKmCS6zUouzVG7elZP9Z6i7AwzUeshn+J1Cq/yy5cuO2DHq4lDz3/yuXjOAjsGTPKXl2QqRabcequ7PQD04JGecHH6XQnZHOYMBDLR5u3QktkmCRDYttjmL1/rPy5JcrpVqhzKpoBSO0CMzaekK6/rgudtIQ/rEAwLAvARTWQoEteP7B+89fMXT6dvl66X55tUGY9GgWroahM2f3j2gliRL5a2TBfd6ZW0/IKz+us40oe+LiNak+fL6CXq9YNvn+RfpSB/cdmPDs5mw/KV0mro090BuirJXFwxKe0f1HaFEW9zru+UCP0gNmK+sZCLEo0gVbCNhDeBLDZ+xQ2bY6/ny1lpTPl9FhVzopBT+k9YkntNmGBOxFwKuiLDxlu3TpIps2bXI463Llysn48eMlc+bA9GHVouyla7ekzMDZao7fvlBVGoQH/peMvW5Tz0YDSwlYS2AbCbaTMIKPgH54dSXDhKJs8F3/hGZUbtAcuRB9U0rmSi8z3nBPlD109qrUHb1Q8mVOLUvjKSKnH4qrFsosv1CUTehyBN3Pv1q6T4ZN/8//7ctnKkmzUjmDbp7BMiE8DxTrO0Pu3hW11bRPyxJ+m5ouEDe5S43YWgSF3p2uxrZvRCtJTFHWK9fmzw1HpfuUjbYRZY+dvyY1R8aIsvQm98olD7hOsViDRRsd3hBlrezTXcBalEVhTBTIDPTQi2n4/n/5h3XSpGQO+erZyh5Na+Df2+S7FQdi207tWkOqFHSskRjFexYa9Qg3G5GArQh4VZS11Uy9MBgtyuKlHy//iPefKOfXLXFemGbAdqm/KPu3Likv1mJVyoC9kE4GPm3TMXnt5w3Sqmwu+SyBAhkopoGiGmsiGku2dCmCEQfnFIeAFjmK50wns7rXdYuPK6Ls2gPnBL61rthnuHVyHhwQBFAwCNWSdfC7xt6XbfORC/LwpzF2E9g9g100/ggU8MEiYfIkiWX7kOaS9J4CW/jd6XLnrsje4S0lCVVZr1yaKWsOq2w2u3jKHj0fLbVGLlBzhfgCEYYR2gT6/7VNJq7873vFSgH1pe/XyrwdJ+WDJ8pL24r+tS/49vkq0qB49oC/2Ppdc9JL1aTD16td2rkX36Tf/X2L/Bx5KPbHKCCLxRpH8cvaw9Lz183qR5UKZJLfXqkZ8Cw5ARIIZQI+EWUjIyOlQ4cO93GeNGmSVK0a2Nt0tCgLn0r4VSIiWpWQznUKh/I9ZYu5X7t5R4r3i6lK2e+hktKpNkVZW1wYiweBSqc9pm5SD5d4yHQWKKaBohqREY0lO0VZi6+E/bozfgaE50wns90UZQ+euSr1xiyU/JlTy5J4MmXXHTwnj41bwQdi+11+n4xIv+BWLJBJ1h88Jyy24RPsHp/kp9WHpM8fW1R7M75/Hg/gXsPf1x+Vt37ZqHZVYXeVjiJ9ZsjtO3clanjLWKHW7LnY/n4CELsgetlFlEWBINjsIOwyJt4z/iXwwndrZOHOf2MHYaXVgP7O8mcCkc6U/eb5KtLQAlEWi1z+qhMBizxY5aVNkVQmdqommBueB373UCDF9wK+H3Q4yyb+ask+GTYjZqeOJ8+4/r3LeXYSIIG4BLwuykKQHT169H02BfCZ7dSpk3Tr1i2gC4BpUdZYPfWV+kUEZt8M/xIwZi9TKPfvtfDm2X9cdVD6/rnVpYrVqFKKaqWr+zSSHOlTenNY7NsGBJAVjexoRNEcaQVVbN2JA2euSv0xC6VAltSyuEcDh00hxLUdt8LUQ7g7Y+Kx9iKgC8n9r34R+XzRXmleOqd80ZHV0+11lf4bjTEL6ZEKeQRihz/izSkb5Y8NRx9YMNaWS7uHtVBZtAzrCWghwy4CqPYux0w9KUhpPSH26G8Cjd5fJHtPXZFiOdIJijl5Q5R9r105ebySfwodalH26+cqS+MSOTzGvWLvGek+eYOkTJZEpr1WWzKkSuZxX5421ElZEIV/6FRdWoxd4pFdlj5/t5/Wyz+bj8cOBzYIsENwFGNm75LPFkapH+XJmEqW93Zc+8DTubEdCZCAbwl4VZSNjo6WiIgIad++/QNZsRBrJ0+eLMOGDQvYAmBalDUa9T9ZOZ+MepwVEH17Gz94NohvEOEQES1LSOe6zF729zXxxvm199YLtQrKgNbOt6JSlPXGFbBvn1pUxQjDsqeVeW/9J8qev3pTdpy4KBlTJZcSudI5nIRLouyh8zGZEfkzyu//q2VfGByZVwiE950p12/dUcV5nvsmUsrkyaBeDhn2JPDQJ8tk69ELanAtSueUcX4S0LGzCi/zc96sq4QXHcUiZsqN23dk19AWkiIpRVlv3EWfLoiS9+bssjQrFUkA2487/z6Jby7aJgc/98RmxxuM2Kd/Cejt8BAsYTXgDVF2TLty0s7PoqwzwdGVK2D0dMf2ffhzJ0viWzNunemOgrA/vFRdLeQXyppGFr5T35UpPHAMCrzBKxaf/3i2wHcUvqscRcQfW2TS6hirg/SpksnmAU09OicbkQAJ2IOAV0VZFPrq2bOn9O7dW8LCwu6bMbJlR44cqbJoA73Ql9ETyozBtz1uieAYxeFz0VLn3pYwFPNAUQ9G8BHAKjFWi13JUK82fL6cvHhNVvVpJDlNZMpGnbqsbBDCsqWlN62NbymILxBhEEWypZH5b//3kDx983F59af1UrdoNpnYybGNzv7TV6TBe4ukYJbUsiieTNkNh8/Lo58tt/QF38ZIOTQDAb0bAy9Py3o3VFnZmdMkl/X9mpCTDQmgyFeJfjPlFkxbRdS2WWyf9XXsPHFJkGGdJU1yWRfnXtEiP0VZ710VCLIQZq3MlNXFwzzxhL1v8TBbWpn3tns7OrxHij37g8DxC9ekxoj5kil1MqkXnl1wb3lDlB39eFl5onI+f0xRLWSvP3Rexj9bWZrGkwXqysCM2/dxvD92P0T9e1kaf7BYvQ9M6lxN8J4BezTYpHkSz38bKYt2nVLPEmev3JCx7StIm/K5HXaFZ1g8yyISJRLZP6KVJ6dkGxIgAZsQ8KooGyqZssbtR2a8ZGxyTwTFMCCcNX5/sZpL7xbFpWu9IkExL07ifgLvz9ktnyzYI90bF5PujYs6xVN9+HxBVvvKdxtJrgye2xf8b9J6mbHluLCoj73vxpX7zshT41epQRbOmkYWGDIXtLdknaJZ5YdO1RxOZN/pK9LwvUVOsx42Hj4vj3y2XMrnyyh/vspMWXvfEdaOTov+yG6b+UZdCYuI8QPdOaSFpEzGLEdraZvvbduxi9Lq46WxHdUKyyoozOLr0ELCYxXzqsKwxtCiLO8h710VeDDiGlgpyn66MErem71LSuVOL9Nfr+PW4PXiHxo58y93q1MeHLAEVu8/K09+uVLK5c0ohbKl8ZooO+qxsspX2x+hRdkvnqkkzUs5zgJ1ZVzjl+yT4fc8VfXxvrar088B+N3/uXN1KTtojqRPmVQ2D2zmyhQeOAbPrHh2xWcBsuid2UygqNjyqNOxfewY0lxSJUvi0XnZiARIwP8EvCrKYnpTp06VKVOmBLWnrHGl21lWlf8vd+iMwPgCBo9fZFIygo8AHsjwYOaK8I7sA2QhrOjdSHJn9FyUfWbCalm657R0axAm7zQLDz6oQTKjudtPSueJa9Vs4n4uj1u0V0bN2inOhBlXRFldzb1s3gzydzduWw+SW8elaczaekK6/rhOeeLBGw/bFvEsgEw3ZM0w7EVgyprD0uu3zcpPHDsmPMlqtGJGz06IlCV7TjnMfkNxUhQo5Mu1FaQd96Er21spyvb+fbNMjjzsdFdFfDPS3zP4OZ5L8HzCCF0Cunjtw+VyS+LEibwmyo5sW1baV/WzKNuxkvJh9zS0KPtyvSJSs0gWZSGEgJ1QvWLZPO3WrXZrD5yTx7+IKfYK+wT4gidNnEgVa/QkUKMAtQog8uI9dkTbMvJU1fwOu8IiI47RsSaiMXfveQI9ANvAgu30lZgdm4zgIeB1URao4B/boUOH+6hNmjTpAZ/ZQMOqPWWNWZn0dbHHVcTWGKzGIno0C5dXG9xvn2GPUXIUZgnoF6yBD5eS52sWdNpdzZHz5dj5a8oMH6b4ngYyI5EhiQclPDAx7EkAhXRQUAcRt1jXiJk75cvFe9WD/E+dqzucAAptoOBG3Cxb48Fbjl6Q1p8so5eoPW8Br45K+9nhcwefPzprxZcvhF6dYJB13u/PrfLDqoPSulxumbbpmF9+Z+ERWGbAbOUbu7ZvkwcqhpfoN0uib96W7YObS+rkzHjyxi0IYR4CvZWirF6o9WTbsvH9IVu6FAJhhRG6BLS9Bhb9j5yP9poo60zs8zZ9nSn7eYeK0rJMLo9PpxfXsRMSiRlfLN4rI2fuVJ+df71aWxV49XYsizotHb9eHbvAX/jd6QKHnL3DW0qSxO7722qhtWqhzBK5/6wMblNKnq3h+N2mzuiFgp26OmCzhQQERvATmLBsvwz5Z7s0CM8m377g2ILNDAV43qPIYNY0KXzye2RmrMHU1ieibDABM85Fi7K4cZt+uCT2R/B1gb8Lw38EjFuXkc2IBxxG8BHo9etmmbL2sNPVZD1rq0RZXRm3Wamc8uUzrLRu17tq4sqD0v+vrWp4+TKnlqU9G8QOVWc2ORNl9ctyXD9a43z11jVWzbbrXeC9cQ34e5t8v+KA9G1VUl6qU0j0Z9HwR8vI09UcZ7Z4bzTsOSECejFt0MOlBNcOBbZQaMuXga2mEO/jK+hUsv8suXrjtmwb3FzSUJT1yqXpPmWjErqsFGXhPQ4bgrQpksrWQe5tW9aelJgsfEQ39GexHq9c+ADp9PWfN8jfm44J7AVW7D0jf208Kh8+WV4erZDHkhm89P1aVTzMn99TWpT97OmK0qqs56Ls54v2yuhZO++rKaF/v2FRNveteup30psBlmDaqER2mfBcFSk9YLZcvn5LtgxsJulSun/uJh8ulj0nL6v+5u/4V5zZMZQZOFsuXbulnm8hzv7zWm3BsyjDXgRQBHLwtO0SnjOd4PnDinjlx3Uyc+sJlRGORAArAn73Gw6dk7J5M6rClT2mblKL2J88VcGK7tmHCwQoyroAKb5DtCi74/glaTH2P1GWWwhMQLWoKYzSYZiOeKdpuHRrSFHWIrS26uaNyRtdfmitNXKBoCjfsl4NJW8mzzNlqwybpwp9VS6YSX7tWtNWPDiY/wjoB3b8DyrjLu3VMPaH+oGmRuEs8nMXx5myroiy2ibFEy9BXqvAJtDp+zXqpQkLM1igGTt/j3w4d7falYHdGQx7EdAVzeH5iWykuNnzvhgtsriQzdW5TmH1sh03zL7Q+2IOgX4O/dlvlSh7967E+kl7UmzHmNQBEQdiDiN0CejFIzyXwBLDalFWZ3UPe7SMdPDT4qEWZSH2QPTxNHSh3//VLyI9mxeP7ab2qAVy5Fy0zH2zntez/P7ZfFy6/bReicsQmfX7AQp9IXPe3ag7eqHykkVxr782HlPzwvwchf5Oq144i6zad0Y9y+KZlmEvAlqPsLLmUPnBcwQWBs6KFbtL4Zvl+5V4jN/JCvkzqr8/VDaXfPp0RXe74vEeEqAo6yE4NNOibNwCErO711UrIgz/EZiz/aR0uecn+VaTYvJ6I+dFoPw3Up7ZDIGuP6yTWdtOiCvboPSDGsQ5iHSehvb9c7at3dO+/dUO22rXHzonKZMlURlEwRDIoIAwi4BdBWwrdDz91SqVhYKH2cnxibKGqrrxVcSmKBsMd4pnc2j20RLZdeKSKuwDUf7XdUfknambpE35PDK2fXnPOmUrrxDQC+f43P/1lZqmK2R7Oki9NTU+iwud+YQiMSgWw7CewIvfrZEFO/+1LFP21OXrUmXovNiB7hraQlIkdZwRpyAAACAASURBVL3QHz5D8FmCQIFAFHljhC6BCoPnyLmrN9XzyuhZuywXZfVn0NBHSkvH6gX8AlqLsh8/VUHgnetp6AJ7cRdCG3+wWJCBjp0Q2BHhzdAewI9XyquKcmlRdXGPBmrhz93QBYkhmE9afUjebFJM3nDw/nr2yg2pOGSuZEiVTGB1gBoKXz1bWZqUzOHuKXm8lwkgoxWLgVaJshDtcZ8haodllR8tKliqa7RAlC2aPa18MHe3shfB+zXDNwS8IsqePXtWunTpIp06dZIJEybIpk2bHM6mXLly9xUA89aU43ratm7dWoYNGyapUsUIM9HR0RIRESHTpk1T/x4+fLi0a9cuweFoUVYXe9EN4FGIbbEM/xGAZ9xrP29QA4jvS81/o+OZrSLwwreRsnDXKfnm+SrSsHh2p93WGbVADp+LVtvYsd3Hk4BXFDyjEHgY2jQgOLYa6i/5YPK0g3UBLAwQcQuo6BeTaoUyy5SXazi8FbCFDFvJwrKnlXlv1XN4DLb4tBy7VErkSicz3/DtVmhP7l+2sY5AeN+ZgsWMzQOaCrzktWUOM+itY2xVT7+sPSw9f90sLUrnlBFtywqyTHz9+X0x+qaqzJ08SWLZMqiZQ+Gu7MDZcvHardh7yqr5s5//CGjvZ6syZTccPi+PfhZTvwCxvl8TyZwmucvIsWW0+T1RFh6U8KJkhCYBfJ/gewVWpPtGtBJ3doK5SkzbeA15pLQ842dRFouXWMT0ND5dECXw4I1bdNeXoix8yuFXDoEbQrderJ3Vva6yqXE3tCjfpW5hVcQ4voLCukAghN+K+TMJaihYaXPh7rh5fPwEfl9/VN76ZaNloqzuD2d0ZsHm7jXRnzcQZXNmSClfLdmnnpnGdaRNn7ssPT3eK6Ksp4PxVrupU6dKgQIFVGExLcDmypVLevTooU45ZswY9Sf+rQXlnj17JliITIuycR/KkOqNlG+G/wjorCWMAKuMEGY9DawWYbt6p9qFlEDDsA+Bp8avUmLIpJeqKaN9Z6FN8Zf0bCD5PRRlkcGAhyYdweIfrUVZTzzx7HM33D8SFPnCgyoiZ/qUsqrPf1WtddY0Mgx+iUeU1dtKUSwC2+AchX6hjs8j0q5sOC5zBLBtDMIeMuKQGYeApxs+Y+Blt/JdVlA3R9ja1rogJLaCvlCroKCglq+zErEV9Y3JG5y+REG0hXiLxT6IxgzrCaBSOiqmWyXK6u3LeqTu7sTRC3u6/YGRrayfNHsMCAL6XiiUNY0sfKe+V0RZvdNrcJvS8mwN/2bKfvRkeXnEhFfux/P3qGy+1xoWlbeb/veO50tRVhf8hK88/OWxQANN4Pf/1ZKK+WN2nSHjFYlCKA4MWwJnUar/LLly47aaz/tzdgvE2T4tH7S60cWsy+XNKOXyZVAJCP68pgHxC+anQf646qD0/XOrZaJsnz+2yE+rD6nZWCnKth+/StlgQJTFu+DPkYekeemc8gVFWZ/dOV4VZSFwQtzs3bu3hIXd7+mJ7NXJkyffl7Hqq1lDpF25cqU6N0TauGM0irTOxqRF2XUHz8lj41bEHsoPRl9dyfjPgy/BiD+2qANgXQALA0+jzafLZdOR87HegZ72w3bWE9DboH57paZUKpDJ6QmsEGWN20ZwsjV9G0u2tO77RllPwlyPel6eeOKZO7P3WneeuFZt6ULkSJ9SVhtEWe3dWKVgZpna1XGmrCuirN56Crsa2NYwQoOALvBmzJC+deeuhPWZoQBEDW8pST2ovBwa9Hw/S/098UOnalKnaFbRXny+FMBQNANbXXs1L64K0ziKcoPmyIXom7Kxf1PJmJqirDfulNafLJMtRy9YJsrqiu96rO5umY5rf7ZnWEtJloSVgq249rAoQgX7GkWyCHbF2D1mbT0hXX9cJ/XDs8l3L1S1XJS9cfuOFIuYqTAMblNKnq1R0C9I9Oex2cxO7eMe9x3Pl6Js3GxdbY1l3DE7bPoOgXjryruo/m4a+P8FoQb+vU0tIg5o/WBxqIU7/5UXvlujCj3BPglWXc78Z/1yoXlSRQAZp8Nm7LBMlNXF4NC3Mws2d/HXH7NQDpy5qkTZu3fvChYcm5fKKV+woLW7KD0+3m+ibFRUlIwcOVJGjx4tmTP79svSKLpiHL169ZJRo0bFCsdG0VZbHDgirEXZ1fvPypNfrow9pHvjYtK9MT1MPb4rLWioDavRVdxVVHe7rzFivhy/cE2tFmHViGEfAtg6juwCV6qOmvV6wqyD1T/aKDa764lnn7vh/pHoh2P8r9GWAYVZCt2zoHC21VwLrs6qtGvh1h+V3O3KPRTGtXj3KXnum8gHKt9qPzizxQRDgaGv5gjLmZL9Z8q1m3dEe7UWjZghN2/fld3DWig7AV9EpSFz5cyVG06/q3Txjg39m0omm4qyyOLCS2aaFElUwbJAi6YfLhF8bluVKYuty9jCrOOPV2u55cse95lix5DmkipZkkDDasvxal/5+LIN7TZobFeHryMyWJHcY7V9Ad5j8D6DQBX452r6SZQdt0LWHzwnHzxRXtYcOCv7T19RW//d3Yn40bw98tG83Q/shvSlKIts1k8W7FHFPeFtqz2rJzxXRRqViLFUGzp9u3y9dH+8BR6N96EWZVGIDYlF2hYh7r2KXWDYDYbM2/Cc6QX3etyCZ3a7v0N1PDqj2wpP2cvXbwmSSnQ4s2Bzl7e+9yDKXrp2U1CgDEVsUcyW4RsCfhNlXRU+rcaADF0IwePHj1disCNx2NHYVq9e/cBQOnbsKHv27FEFYyAA6MDqI1YhGf4jYMxeiM+Tx9XRIfsJWVCuFJNytU8eZw2BRu8vkr2nrijPz4Qe6OqNWSgHz1yVRT0aSEEPDPgxYu0bqUcfLP7RRlE2WLK0dEYUrhWymZHVjDBaUCC7GlnWjkJbEzjLgtW+s84sDqy509mLnQjoLctxt3Zhxwx2zsCnOBAys+zE1Ftj0QsnxmJ/OlMele5R8d7bgaIzEApQvAvCcHyh/QTd9SX19viN/Z+8eE0VSjN+pvry/GbPpZ8DrBJlka2GrDUdrlgpGeeArF18V+lgkTezV/i/9lqUfbJKPhn1WFnrOvZST9jirLY6tyop2A5vtShrXABAJubzfhZl33+inIydt0fw/Gnc7u8q3g/n7hZky8ZNhPKlKKutcXTmcbef1qsMw0+eqqAyDhGoYo9EofgEVj1fLBzCXiJ18iSC6wMf9Ccr55NRjz947+IzGJ/FENZRdHjA39uURzC8gkMx7FyseOTMnQJNwgpRFjVUUEtFh1WiLLzs4WmPwH177Hy0epZtWjKHjH+2cijeUn6Zs1dEWQidKPJ17NixeCeVO3duVQQsrq2BNylAkIVvrPG8rmbK9u3b94GhTZkyRYmyy6JOS8ev/xNt4ScLX1mG/wjobS0YQdzKnO6MShfnQJvPnq4oregV7A4+rx9ba+QCOXreteJdemsGvLrg2eVJzNl+UrpMXBvbNFj8o42iLKr+QsAI9Gjw3iKVgYHIkia5rOvXRP0d/4efIZw9JLkiymqxxVkxsEDnyPE/SGDKmsPS67fN0q5SXhnTrlzsAa//vEH+3nRMZQC1reh5ARMyt47Ab+uPyNu/bLpvG57OWl3bt4lkTet6USZPR/Xt8gMyaNo29bKDl/X4wtfj8mQ+WpQ1fqZ60o+/2uhsdqtEWZ15mzdTKjlyLlq+fq6yNC7hegX0uIWC7SzI++uaeXpeLcoGii/iMxNWy9I9p5UIAjHEalHW+K6KLfHYGu+PaHsvUxbfnUP+2a58tF2xIIs7VvjJIgsxbjFnX4qy+jt/bPsKKmtV29SMfrysPFE5nxoyPvvxHfBYxbwCITq+0O+b2CWB69N9ykZ5tEIeVcDLGEYBDTtBC2ZNrb7j4M8Ln95QDL24hSLOKOZsp4Bg/v2KA1I+X0b589Vapob23uxd8unCKLXoj13aVhWW1QkmGByeU7BTEAvaTUrmkK8oypq6Zu409oooqwfgzFPWnUFacawjQRb9Ohqju56yeiujHqeVxstWzD0U+9APY5g7/Nvg4+ZJIAsT2ZgI48qnJ32xjfUE9EvsmojGaou6s7BClNUv+Po8/vTlspKmUZR1JevYynN7q68qQ+fJqcvXVfeoho2XXcTGw+flkXvVsp29mO84fklajF2iKuiikq6jiDp1WRq/v1iKZEsj89+u762psF+bEcBWRGxJjOv3NmrWThm3aK8q0oGXJYb/CcCX77sVB+SdZuGqkjVCVyD31QKUzqZExhMyn+KLykPnyunLN2ztVa5FWQgHsFkItNDZyFaJsuF9ZwqytBoUz64yZrU44yoX4/cR2sD7HB7oDPME9HtAoLyT6Sxu+NNjh47VoiwWDCEiIvo9VFIVL/ZHaFEWn4e9ft2shvBr15pKYHIn3puzS+DpGvf71peirBbSJ3aqKnWLZhOdOWu0h9DfQS3L5FI7LuMLFJSuMmyeKkyL6/PqT+tV0fC4SV7G53UchwWhl39YpxaDsCgUioGt9s9/Gyn5MqUSFFu0U2ih3rhbx9PxwSoTYiyeZSDOOtvt5845jAs2EGXXHTwrx85fC+l7yh1+Vh3rVVHWqkGa7SeuZUHc/owiLETaLl26qOJfVatWdXpq7Smr08n1Srmx+IfZsbP9fwTgH4RCRO0q5ZPcGZ0/tGL1dcKy/apx13pFpHcLz0RZo1+wuw/bvHbeJ6C3oW4e0FTSJ1CtWmdOLninvtru40ng5R4PWDreaFRUrdIHehgf8v7uVlvK5s0Q6FNS28CwHQyBojmwZUDohzf83dnKta6E7OzzfN/pK9LwvUXqfsJ9xbAnAdiWpEyW2DKxQ3vZdWsYJu80DY+dtK6yGyjbZe15tawd1eNfrJC1B87J9y9WVR7ACPzO4ncXCylYUPFmwPqozIDZEn3ztqzo3cjps4teSHJlkdGbY3bWtxZlM6RKJpsGBJ4oW7L/LLl647YlnrLnr94U+ACnSJpYHq2YRyZHHpaRbctK+6rxC+9x2aJSOyq266AftXV3thZlUQhp+ut1rOvYSz0Vfne6wANb+/pbLcoiWw9ZewhtkeClqTjtVouyfVqWUB66iF9eriFV3SzGprMG8R2M72IdvhRlH/pkmaDw57TXakuZPBlkxMyd8uXiveqdE++eCC3UNgjPJt++EL+ucPhctNQZtUDyZ04tfR8qqXblOfL0ROFpFKBGIPM2V4ZUykKxRuEs8nOX6v64pH4/p06YsUL4tHoy2tICxV9RBNZM6EXAH1+qpnZoV8yfUVl/mI1f1x2Rd6ZuUt1AlF28619BRnbD4tnlm+ermO2e7V0k4HVRFoLn8ePHZdiwYaKLZkVHR0tERITUqFFD2rVr5+JQPT8MY4CHrDGM9gl6PNOmTVOHDB8+3KVxaVF2/o5/pdP3a9RDHh6wsqdLIZERMf6FDGsIGLORYYDeoVp+px1rbyYc9HK9IvKuh6Ls9M3H1WolYmz78tKmPLekWnNFrelF+/26UpzKihdxXWkVWzdRtEUXZLBmNv7rxSjKTu5SQ6oX9m3xRatnjhcbvODoMAoIf208Jm9MjskWKZc3o/zVzfEDjSuirLZCgB0GbDEY9iOgC/FYWQRDV1PG9wq+X3ToBdraYVkFD80M/xPQizNGr05kwCMTfsYbdaRkrvQuDxJFaSCy4uXX1Vi176y0H7/SpYUbZEkhWwrPj3iOtGNoUTYhf1w7jh1jKtJnhty+c9cSUVZ7dGLhrmaRrCoRwN0MxPWHzguq0esw43lvV+b+GpcWZe2YPReXCawvao9aoOxUYKuCsFqU1YuJ6DuiVQm/FerToiy+kz9ftFfN1RMf9jGzd8lnC6Pu2wWBvnwpyuKa4dohOxP3maPiY/3/2ioTVx6U6oWzyGQnoqnemYkaBX1allTeocjA/zaOKGZMLEBBMewSfPjTZVI6TwZVSDIUA8Unh83YIbkypJSV7zayFQJd/A2DMuNjrxfwYJcG6w8s5llhiYBx4fcIv08IiLLTNsXYjzq6/2wFN8gG41VRVoud7du3fyDrFNmrkydPvk+sDTS2WpTVPpPwAMLfEQdGtgq06dh2vBC/mnywWM5euaHGiCqdMEx3FjBI/2XtYXVI57qFJaJlCY/mZ8yMhK8P/H0Y9iGgq0W68vsWWxTs7XoSli2tR5PAqj4q5MKLFNVj4TEMr+FAD6MoiwdAfBEHclyIvinlBs2JnYJRQMDDMR6SEcgIRmawo9Av3BBtIN44igP/XzgOthgoHIeXaYb9CGhR1soqsr1/36yy4uJ+F2lfLor09rgPtOczdtYgS1UH7EuwbfyPV2spcc6VuHtXpNC9hR53ijHpbC5XCsBWHTZP/r103dZb2LUomzZFUtk6KP6iZa4w9ccx+pnBCvuC2dtOxG4bLpErvarC7q51CYqpoECgjmCxD/LHtY17Ti3KBsICgi4YbfS5t1qU1Rmb4IR3Irwb+SO0KPtU1fzyc+QhNQRPkgH09e3RLFzVDtHhS1G2VP9ZcuXGbfVZiM9EvB/gPcH43qmfQZwlAWDsOhEAmd3IIu7w9WpxtMD754ajym8WAS/eTGmSq90fofwcqjOUYf2wqo+9RNmnxq9SRaIRZmqaaOEZvzfYjYFsaWfvMO78buuFA7RBduyCe8UrE8ruduccPDZhAl4VZZ15yqLA1siRI2X06NGSOXNgZmVpUXbm1hPyyo/rBH4xy6NOCwQBM6shCV+20Dri2QmRsmTPqdhJD25TWmUoOgtkwiEjDtG5TmG1KuxJ6BcqtMU2ERi1M+xBAFsQsRURWweRKZtQwPsTHqBmXnr6/LFFflp9SInzf2w4GjTbhYyibDAUtEPxNxSBQ4YsPo+NL2V4cX5/zm51u2C7GbadOQotyjrb+oht8fCBK5AltSymKJvQr6Bffq5fiLAQM+/tepaM4bWfN6hMgri7J3T15CSJE8lek9vULBloiHeiX17jVhDWvmzuCAHnrt4U+JEiXLHL0ejx4oTtpiiWgaIZzkJX1MZLJV4u7RhalEWF8O2Dm9txiPGOST8z4AArRFlkxsIqC1Xs4QMLT2l3axjAWgMWGzpmvlFXkHnLME/AWFti/4hWyv7MroFFPiz2GYs1WS3K6u8tMIDo18XPoiwKsM3aekJdkp86Vxd4/7oT2sO9Z/PigqxbHb4SZY0LdToxRC/6P1O9gAx5pLQakt65WSxHOpnzpuP6BDhO+0tDmO/dvLg88eVKVdAJWcTG0IUj8X94psmQMpnyojVmWbvDMRiO1b6tdtyprBeBwdkT72R9feAbjIVAaBG4l1p/Yl12NKwydFIhbEQi959Vp60fnk2+c2K5EQz3jp3m4FVRNlQyZf/ZfFzgGYKU721HLyivMryg40WdYY4AvHrg2QPhDR8UqEwaV5RFcQUU0jCuQnb9YZ3M2hbzZQ8ze2wp8yRQYRuVthHYLoBq2wx7ENAvyfCSxUtyQmGFKKsfauEj++Hc3eqL0dlDVkJjssvPjaJsMNznqBza7KMlgkqsh89eVRkMOqsLBZpQqAnhbLuXK6Ks5gYPsCU2q/hql3vL3+PQomziRCJ7hrUUCKZmA9sKYVWArYONStyfVQ6PSXhNYgsqXpIY/iOgveXjZi8+902kwBIJLxt46XAldFE/HAsvVSz4JBS6mjbuOSzUQ8h0FtWHz5cTF6+p7ZfYhumPgIC85cgFqV4ki8MdJVqUhUfzziEJL4b6Yw7xndMorFshyuqq6sg6TJ40sfLrdNfSCC+/EF90BIunux2uu1GUdWchxR9j12M11imwWpRF5iUShxBxrXd8OWedKQsbGJ1B6Iko68i/FfPwlSiLQrLwAc+WNoUqzoiYuu6IQCB8vFJeea9dOfV/OpkjIRsNbXUDmwMIzbA1cfQ59cHc3fLx/D2qbzxnpEmRREr0cz1BxZfX2lfn0sU0jdfCV+dO6DxNP1wiu09eUod90bGSYDHCk9DPlnjXwLMFtBGr/LL14jHGhd2ByNpGwIcffvwM3xDwqiiLKcCmoEePHjJhwgQJC4vZXoAs2U6dOkm3bt1c8m71DQr3z6IzZbVHIfxGj56/qopKwHgZBswMcwT0lh5UtSycLY2qomysaonedXEVY7Ed/dKMn79Yq5D0b+2ZKAuvYHgGI0Y/XlaecFI52dxM2dpdAscvXJMaI+a77OGsH9TmvllP4NnkSaC6J/yckCGHB+ZgWZk2irJxf7884eTvNnpLKB5YIK6mSZ5Ett3L6tIr6hijswcavSDk7BgIvnVGL7RlxVd/XwO7nF+LshiPVYWddPEoR5mWrT5equ45eBVjoZDhPwI6IxbFVbANT4fOCvnymUqqkIorAT/Zdl/EiGcoGojigQnFjC3H5X+T1quq4siQSShqjpyvKh4v791QULDEH9F+/CpZte+MWoDGAl3c0KKsqztU/DGH+M4JwRvCN8IKUVbfR+M6VpLL128pMQa7qZDJ5GoYi8mize+v1FT2SAzzBIyi7NKeDdQirV0DtStQw8K4I89qUbbl2KWxYouxEJWvmWhRNjxnOsECOgIe7Niq705oO7G4ArOvRFltVwSPT+zAQ+g6JNg5+3mHGGuzd3/fomwaEnpfwI5Q7AyFEAZRFs8Sjp4/sfiDom1Gv09Y6yBzd9+IVmLBurM7l8EWx2pREfU+1vWL8WS2S6B4G4q4IZA9jSxqd0Nbpemixa7Yq7lzDr1LB22weKDHC+1lYieKsu6wNHOs10VZDE6LsMeOxWwnR0yaNOkBn1kzE/FHWy3KYhvzm1M2StuKeeTytVsqBdxRBo0/xhjo55y346S89P1aaVwih6pI+c3y/TKgdSl5oVbB2Klps3eYnaNqMQKVKCHoInAs2ngSxtWjUY+VFVTVZtiDgP6ScjVLscmHiwUPUchsRYarJ6EfJrHoootzuOJn68m5fNnGKMr2al5cbcEM5NCFEHQmRqpkSWTHkJittp0nrpW597y/nQmuW45eSHB7kC7OkTdTKkHVbIb9CBhF2fHPVhZsZTcbulAUKnrjHjKGFmrwQoYXM4b/COgiX3GzlvWOh4+fqiAPl8vt0gCx8wY7cBAb+jeVTC6IsjqT8q0mxeT1RkUTPA8sV2C9gs8SfKb4I3Q18eRJEquX23Qpk943DC3KJkuSSGWeB1JouxmM2QpRVotcyG7FAh2EtRalcwpEWldDZ8fp4z0peOTquULtOKMoiwJI2Blj18BWZDxzGLc3mxFlYdGEhSTsEqhSMMYiEEkMSGZA+PM5Tz9Hw/IDnyeIHzpVkzpF3RNlUdgJPptxrRh8JcrqLHfwndo1xmIAXpwo7GQUTLUHvTE5wNF9iOdSPJ/C5gY+uciwRAIJEkmM8frPG+TvTcfkoyfLK7sLRNlBc1T2pKsLhnb9PfB0XLrgWuY0yWW9zUTZSkPmqsLQCGMmvDtz1RnY+vvFlULExv5Rk2fXyUsC0drR+6/2WkcbCL/Y7YXA7yR+Nxm+IeATUdY3U/H9WbQo++u6I/LO1E0qsyBJkkSqAAizKq25Hv9lIedWFSax7ThudVsYnsM7zridTn/pYxTP1Syosms9Cf2ShLYj2pYRGGwz7EFg54lL0vwjxw8tjkaot5DM7l5XsELvSWhhFz5OT3yxUhWfC4aHIKMo+1rDoupBPpBDZysgCw4eTMasLmwV1X5Jzop4uSLKau9aZLUhu41hPwJGUdaqF1Gd+eCoUrpxS7O/CqnY7yr4fkSwkULxE0eFP/C8huc2d6xakOmEjCcEXvrw8pdQvPXLRvl9/VG1jRXbWROKuJW8EzreGz9v8N4i2X/6iuo67gI4/k+LsoHom4wtpHgOQFghymohBOL15iMXVLV0d7d76t1g+lpOeqma1HIzY9Ab90Ew9GkUZT3ZHu9LBihMCv/7yIjGavcXwowoa8zihpCDKBoxQ27evqv+HteH1ZdzNb6f6fNiizR+d9yJYdN3yFdL9z1QtMxXoqwu9Gf0LNe/z0gI+LlLdTWdXr9ulilrD6sMVmSyxhf6ufWhsrnk7abhgs9iR8W7npmwWln5Ge139Lvq0l4NVaZjqAXsG6Jv3laCIt7J7BSofQI/c0SHavll2KNl3B6etlLErl/s/tXvv3iXxTttQgERH2K+o4K3KC6KIqM6KhXIJNhtiMB3Eb6TGL4hQFHWBGctysJzFL8wEOzwoP7Zwijx59YQE1OyXVNtfo9Kg+lSJFNfwH1blZSX6hSKHaveooj/0Fs3dLYH/s+VqsfxTTyszwy5dSfmIWb4o2Xk6WoUZe1yk2hTfGfFmoxjhccotkrN6l5XinsoyuotHqv7NJIOX62OKRz2dj2H3nt24eTKOIyiLH638DsWyKE/kyGEQHwxirL6PsD8UFAFhVUcBV6yH/50mdNiYNhqjC3Hcau7BzK7YBu7UZR1d2txfCxQ8An+lI58Y7FwCN9iM4uBKGCy4dB5lS2DB2SG+wT0SwiyjlBkyxi68Io7WwnxXIddOQiIst0nb5Qbt+8ovzV8vjgKWBfAwuDTpysKXrQTCi32+3OrNTwS4ZWIcFTAUIuyCQkMCc3VHz/XC204t1lRVhf1098tOmvOVasKPf+4oqw7Psf+YBhI5zSKsshe1uKk3eZw6dotKTNw9gNFa60QZfWODQhWEK504Lvl1QYxloKeBp5/bt6+43b9FOwyW3/o/H2njWsx48qYdH0AFHJGQWcdvhJl9XPmk5XzyajHy6rT6/cSY42Tnr9ull/WxtQmQVHi+L4vsICHhTzsun2rSbhgkc7Rgr9+vzVaJOnn2lAsFIiFBiw4IFytMeLK/WXVMcYsVEeiqCvn0TVRtOe4XmB0lEntqD+daevo/PCRx65gR4Hie1jQYviGAEVZE5y1KAtvF3i8oAJr3kyp1QsZqlpiSwXDHAFd3RbFupCZMX7Jg6uiRr8WnbWoMxpxdmMVTHdGc/HaLSk7cHZsk6GPlJaOHnjBFa1t0AAAIABJREFUuHNOHus6Ae3F5upLkBWirF7xRNVp+MviReyXl2uoInSBHEZRFgsPWIAI5NDCGFaUYXmC0DYTRu8kZ6vM+kGlbN4MggchR6F9jVGUB8V5GPYjYBRly+fLKH++Wsv0ILV/m6MXLFST7vrjOmW58/Vz94uBrp74sXErVKaCVXYLrp43mI7TW1tRlBFbBo2hC4DFXeB1Nn9jgUBkRmJLIgIFBFFI0FFgGyu2s+I+wP2QUMCfGtvgUcgDtjz+iFL9Z8mVG7eVPQMWHrAtV29/xni0KGv8TPXHOD05J+o9wA8aYVaU1ZlKYdnSqoVZVwpDOhrzsqjT0vHr1bE/cvVe8WT+odbGKMqObFtWkNxhx9D+9XEFFitEWb0gpHf16Pm/0yxcupkQZbWAiGefFb0bSSI36mc6EmW/eb6KNCx+f9HMhK7V4Gnb1fNd3N2TvhJlv1i8V0bO3Ckv1yuiCqchdJFZYxFgYx0DFIn8ZMEeuXHrjuTPnEbyZ0ktBTKnlgJZ0shfG4+qBC88g3dvXExlLxpt+TQPvaPC+D2hnxnifl47YgjfcCyqBYvYpm3EMNf0KZPK5oHNErp1fPZzvXinTwi/cPiGuxPwKy89IGbRZseQFuraOfIzdtanrr3jSJSF5SYy6x2FMePbnTHzWM8IeEWUPXv2rHTp0kUV80KBr02bNjkcXbly5WT8+PGSOXNgChpalDV+MIfnSKdWuqzKyPHssgZPq08XRMl7c3ZJt4Zhcuv2XQFro6k7jM3DImbI7XvZrDrDpO7ohQKhCQEhFYKqu6G3P+p2g9uUVpV1GfYggOrZqKKN4gAoEpBQwOoAL1KeriTjFiv87nT18Ll/RCslvECAMVNNM6Ex++rnRlEWHlXwqgrk+GjeHvlo3m4lxoy9V6VWi7LaZxLzMz44x52vK6KsLhwDbzRkTzPsR8AoyqZOnkSwoGImrt+6I+F9Z8Z+DsTtS2fjOcvCTuj8elGRomxCpOL/+VPjV6nK3o5e9rVY4062GOoGoH4AYlWfRrEFo5xVddfe9q4WsdHPLYt7NHA7+8xzUve31Fk9sLGBeIACtihsqSOQRVlUnkcFeoQ7ouzLP6xTW8thd6G3BqMALArB1g/PprYR6+dFR9uNnV0bbEPGdmQdds7otOoe81U/RlE2bjEoX43BlfPogoBxF/KsEGW1b7YWfvV43mkart6rPA0tyqK9uzVUHImy7vaB82qrIL2lW8/FV6LsiJk75cvFe+/bGaufpVFUDu+jiLd/2SS/rT8S+93R6bs1ahEnvkCC1xuNiwl25Djajq8XziA+QoRE6OLWuM/L5ssoENMcBd6Vi/SJySoNhnoYmIcx0xMLpFgotUtgYRPXUYej3ScJjVXX1jFmrWKXJrJni2RLowrYJhQ6UcWRKPvDqoOC52TcS0hGMwZF2YTIWvtzr4iy1g7Rvr1pUdYoAFTIn0ll0KHSL7ZjMMwRwDbOcYv2Kv8jmJhDlDX6Asb1QtGFV4zZcJ5m/untaHoGwVCV3tzVsFdrvbrXqER29VCYUOjiPDPeqCPwEnU38FIG368MqZIJVrsj/tgik1YfUv5A8AkK5DCKsp5ur7HT/HVWGzLh8Hf9AIpFHGQ56nC29cfRNrS4c9SfP/CAgxccw34EjKIsRodikMg+8TTgI11xyNzYz4G4/eifm9lGhwrxEPwpynp6lURtB8a2YEcWE1io+XDublV8C0W4XAk816GAIAJewvXHLFR/d+Yprr0TjcV7nJ2r3piFgmJUjryKXRmj2WN0Rg4K0mAMVe75zBkLmxlF2UCr9K2L8ICTq6KsXoRBm2+fr6IK+CD0DjntEai5OMpsc3ZddMV1fYw7xefMXu9gb28UZbFVH4swdgy84+BdBzt7IDDqsEKUHdu+grQpn1t5kBrFf1eLD8bHyyjKuluh3ZEo60mG+MC/t8l32Kkap/izr0RZ7RVrzMKG9QssYLKmTa6+exBGUXbhO/UFizzYfh5fIPP2tf9j70zA9ZrO9r8ipqDmWWOMIaaomENiHqK0tIYWraL+KEVrqhhLzPrRUqrVqlZNXwc1JDGmIoKYQiJEBDXEFPM8/r/fivt4srLW3mvv933POeE819Wrcd49rL32sNa6n/u57017eXZkaA5m57AWVD3wb/e76x6a3HZIEofoqYdhQdkZ7fud6q/bHnvZg9KE+gsCzqWjnvIyENyLjgpJnAEWM75inPlwRSYvbGywDztfeeLld9xmZw93yy44p7v1sHJQVvJLsfXdWcMec+fdNtGbysHAtbHesgu4Kz7XRu6oPvwqnbcLlG3gbguUFXBIhgpRZPRemlUm2UDzvhS7alFzwvaruJff+sDr9VqB+lALRaXk0vyjE+oKaw8Z+4Lb/69T3ZaJLlC2cz1S14553uGivV2fxd1vvveN0sZt++sRPjtdlymrEhnKSikb+tVNE9yvb3ncNco4KG14O2xAySyls0TVCXY7NK/yKeR2i84XE2eCCawmzDpgEVNWoGzR4l3H6wJlK9+idtvhuGvG+cm5AvONFIskp1F6V2DMYaoRC7GxYeXCzq0aLMaYwKOFiiZqV1TrASWZUgx22E2wnPYbsJxnOeUE+tLoTBPoklN5QRSZfmnMUbK47DwYk8G47ChQVsCi+k3yC4MG9nYyrbOJ8BmNaSVpEe5DbhmpZAnYh3koLDZCLDmRBARoV110h6Ds/+yyhtvhc0f1suel6/fiHkADmjUDUVfGrD36+Oh/Puz+dvd/3S+/tYr3wFDIxJjKJSqYqsR+f7nPDR33gme5w3aXxraOgZkrbPi6QdUA1QOKKuz+mNFXnbFOoGy4NpOp702HDvBAU6sCcBWzL5s8xdAJmTPL2JThI+1g/fGTy+7z33nANEA1Bbq/SGLN2n0m9/X5ejiqFqwfAtu98vaHbq2Tb5oG9OXvmFBiRqkoSgSqGmJG+36n7qPM1vmd+dbNP9vYez0QJMeP3qZ3h0mXiNFqAc8iXeHYNe504Sg3+qlX3V/2XtdttPyCfpOn/i95S2J4mQXndAD9ZSHy4NarLOou3KPvNJtLXoOqU+R0bHSBsmU929zfmw7KSrogJVlgm/9lkS9AT5asORM2yk/QeylasDX3FtY7GhT1s4Y96phgU37dWWPguSPcI5PfdAia3zTuRZ/NsSCYyn7UfmVbrdshOlJkMqsGC3kW9IqwRKbq8bq2b24PSLgcUfxf7Vxebq9nKXeBHLaW55BjwLKFbUuGnkkhizTe/Rk5LFM2d7Hama/3J3+73+Fki8kFZjt+EnPatm7iS287WBSKIqbsA8+87nY4f2Rhgk2g7EJzzeZGH9PFlO2Mz8Rx14x1l456uq1pjWqD6ztQpEcMgwEmA664bFclJJPCPl1M2So998W2MIZgDqWqKPTtrmLGJh0/zoIu8bfPn2qMwXvP+x8LPQc3/2yA67VwOTggUJZyRMoS2zu0gNRCTyX6GBmOPHKqbqRlyk4YvI0HEGaU+NcDzzmALiKXKavkL/vY54WEPYl7MVtDeaPcPrEsL/YhkYhxUFc03gOWKZubvG/8rNWPgKQG0hqWic1RmsGUZW7MHFnfPLUOzdJDNq8PylqmLMcsmwfDwKMUHyZ5jCn7uz36emf4KqGEawjKthdTVmDZlf9vfbfu574SYqJaI0QrfYOe6E+veMBB8iCpKzmU2HXHwFMZPEnLWvsNvn68N8JWpJI7lik7o32/U88GXjOn3DDe/zz7LDO5Gw7u7xhLbZCIR34GsLs9Q3JWeFO89OYHvgLqjiM3zW4HRuPIZX362WeeYSv9eq3ZkEM4a6c+7i+jnnYbrbCQ26nv16OXR//QTzGmLAx6mPQyRrYHwC8FsltXtE8PNB2UDZt95plnuqWXXtrttNNObT+99957btCgQW7XXXd166wz45b4iymLMDcujAB/3/rG4t7hshnada18BJ557T2HQRZRR2C9lW2zx15h0BDvcIxGDPR9NGZthpdBiMEoHIjQzJHOrHXGrNJutGw5n6KKKUiV83RtW68HpIOTK09RlbUUtkrGYky+mISJebB9n8X9wmxGDgvKNqKF2Vn6AK1hNIcv3Xsd94OLp5Y1AcpinoQhAouD19/9yIUTW9t+3IFZPBQt3lOshc7SD13tcE6gLJNXSsN/1G9pX+5YNyRr03ep+dzfE4YNPHMw4OqMrTyXa3yuQdYFyta7Syr3Q1Mao68wYBTBLKqSsGVeB5OJuGLf9d2uF43y/0a2BKZ8LPqddqvDYKds8a1920Dcnw/w36b2DlUerbrEPO66gzZ0AI3rDr7ZVxhIF9eCspbxwzZo6L77wSdu5FFxBnl7X094vivuecZRRUHkgrJUw1AVQ0g/ln+LOQ3IQiKTYPGM3MGjJ23jwYGcsJIKbP9lkEPKue722MaCsvbetce5y84BweSOx1/xbP1jrxnrDf7CZEwzQNmzd+7jPU6Qa5G+Pm1rFJQVU3a1JeZxAE+Ujd977BauxyzxyhAZMmNEBcv8/qdfm6aLYO/B4qsSkiYK/T7aC5RNnUfrVn0fdR+5tsv2Wdf97KoxPrmFDwFVCanQOnbiKQPdzKC8zrmUwbEkeXSslDyFBWWrMjar3Jv23FaAI+eEWTzkkKmgLCzkAzbp5QZf/4g3reTZxOAO4/D2Cs0XWTdioIm2M0ldqqlzQmuWVRaf20EoUqhii8rNgzZb3sF2LZLNFHkwBsrKwwDjP75LNjD55J3tivbpgZaCsrBmjzjiCHfUUUe5Xr2mFRS/55573BVXXOEGDx7sevRo38xFs7pWoKw+uCoxWX7QDe6jTz5znTkLZcuVm6UhqQn9EvP2aMqkXM7m0uZRubh1U5b7pu6pBmdlGPn7zmv1dGd8tzpTViXQOvagbXu7H2+0bLMen67jNNgDAuRzQRaBsiw2WXRWDYmty4xBpiFIljDRmpHDgrJ1hOg727WrPO4fB/TzwCoBKKsFMGYslP8UieSzaOA4ay45r+M4sZjyzofehX2BOWd1OLJ3RefrAYGyODtz/xuV59AzNGCFhdyf94onlVVKWMcc0r6LXaBsvedJzLOUTqFYXpSJwyjKCTunwC9AGnajfrGZw4E8Fnwb+EYUsWntfhh3wFbNZdbmtLvKNnc+McUDq7ZkUaDkNqsu6jChsqDs+JO2bgNhrAN2FVCySvsa3VY6sBwnF5RVCTn7WBMv3VsLrEg2q0jSIrwGsZH19y6ZrEbv8hf7S/OTv3Q2STlpVJ/+ndUdxB7NUezVNwOUhR0Ie07jIKx+EiiphFVu7wuU5RvKN4Fvx0nfXtXLRIShkn7+ngRld+/rtl61Gih7zL/GOlzlw/O2FyiLjACJ+VCnfvUTb/QeKHhP4EFx8BUPuGsefN53CzIN3G+058u+E5JBst9Z5BKQTUDWiGMpLr7jSXfSdVP9EwjuOfc+DAvK1pVXyn1G2mu7w64e45AwUCALIVCWf+MHAlYgszUSCYz7OdUrjV4DOvTyGeJYVEZU0U+W1BKyJsibKDTewrTmt8E3jJ8maRi2W3hGDO/R88p8le+EjbWWns8hhdEV7dMDHQbKTpw40Z122mnujDPOcPPPP3/7XG2TzyJQVto9cmFHywRx56LJepObUvlwduFHSdp9x2zh5p+zMTFsLVa7z9TNPXHKwMptCncQ6CX6vDVUE/tlv7/e59AJ48ME+xe9WcpokC9QQMmH3l81fnzpve6mR170LsgwrKyuWtVjdW3f/B4go4dA+f4bL+fN38oCrWeylNcetKFjUK4adhLKgD5+8lsO87AvA7PUfg+qGpVU7cf22N5qipEFJgBldQ9ZoKEZWySSrwx1kZyDTJ3mm2MWhxlORwTJq9OGjHcDVljYlyl2xbQ9oMXovv2X9eVblGLfedRmtbtJDPltV1/Mnf/9NaPH0bcJww605quE1bDsAmWr9NwX28rkK8VEQtoEiZOBqy3mJU7KQmYd2o65HnMPAlYoiehYyCWbskO0RstCYEKrtRBT7YiZZ6Llv84pN7uZunXzxjUffvyJw0iVGPfLrT1DjrCgbEeBymX9a8tcc0HZb5030rt7E5DVHh880JMuAEyY604cPNDLOhBVmdHso2Sv2t6V/C+7i/m//+iS0e62R1/yO+RqL+YfvbEtxbTGvIfEB4kd1ow2mgHKSg4D/wWkOJDTeeyFtyqZHMau1M6HAVMBCuW3EG5vvT/QdEfrN2TK8h2epftMDnCRBCrjdVnIbDeUJGovUFaJuidP3bbtG0CbZdQpDOCnlz/gK+sIqupoNyaUZePC6icMc0gNPnT8ll4blaAqF1A3JBtdee8zbf4JbEe5Pn0dhgVlqUBVOXxZX3fm30mQAnYqQlBWf4e1+vOrx3hW+izdu7mfbLK8wwCQf7cq5E3DXIOxEtk9EjG7rJ0nUSMcAt8UJFgUVOAw3iDHQLXmb4c/UUg4UHIxBsrqOeYcfCdsfBnk7Fp1b1tx3JaCspIpWH/99aeRL+BCYMoCyF500UUzPCirUlnYE9DHBf7U1a5sxY0OjymRaP396IG9swbBorZJ45NtyjKAOdeo8nSVGMYckzVhhr3I5BaAbt/+yzkYCwpKdyjhqRroSaIrCX0fkW0W1yyyu6Jz9IDkJXLLsLb7zR2+zOrfB27o0PepGtIYVsZSjKH2MHliAnfjIy84hNiLyp2qXpO2t6CsNSioe7yO3k+LYybF6586FUAAlP3TyKfcideO899pJnFFC7UcUFal5sgh4MLe3gEL79vn3eETUkS4OGjv9nTG8wmUtSyARgwuMGTBmKVIFkfald9cfTF3XgK4TfXVqElT3Pcuusv/XKekszPeg/Zsk6SZitjrYiey+EdioiwsUM62VEVJm7RImmDZX1zvJQAA8nIWfiojvPHQ/g4TwvYOAS24teParhDxAD3/ndb6ehsoa0EFC8rCIIdJ3tniN7c+7s6+caoUQS4oK2Bk7tln9gDJiCM2cR988qmD1RxWlej+VdGSFhCuvpJxWGfruxmxPVqL0XZIJ6xLOkuonB8TrmsefG4adrra2BRQ9nMASNUDgHWMMZh8IQVXN1RtgAEZurX9TrvFm1RRNUb1mI2r7n3GHfG54Srasb+7fdJ0oCwJTuYzjNdbrryI11MvCxmkhZIf7QHKMicn+QfQRnLKxiZnDXdPGiMv9M3ROScAyY/711gvc1ImHyA2PskwKkb9nOA/TzjkeQCtWbcrQn8VwDq0S8OwoOxDJ2zl+K7N6GFNOLmWFCjLb/Q7soQX/meiT64hE/SrXdaotSbM6Te9J+AQC889m7tg+BNeQgGpgJxAyop1RphgViUxJIP+KyzkkObBBAwzsFhIAz0EZSGcDTjzNtdz/jncEVutOD0oW1ApmNP+rm2q9UBLQVmaAvh6+OGHu4svvrhNwkBmYLvssst0YG215nfs1mLK7vK7UV7nBZ2x9Zad32sYoidnnfI6tqXTn50Bg4FD0Ywssmj2HLOuw71tKeAJIIoYqppQH7hpL2/2Rax98lS9M7JduKxSOsPvYnKwTa4RVNhLmjTBiIJZ0zVZ7lxPMeUav799knfPRperLBoFZcV+YzBlUP3sM+eW+cX1/rSNgDxl7eZ3uYuSLSdr3uwImfOAezNyqBwH0IASMyZi3COx7VlIAJzZctTweu996jX33QvvdEXaoZRF9TnxRl+iRqlaewYAwY7nj/Tlzgo7eW/PtnTmc1lQ9vJ7nvYM90YSpnxz+PagS3bsN1eOXjpJPExAiqQvUn2m8kR+Z1w7fKupY11X5PWAmCmbrLSwN86JBQ7Du//hbg8e5EjPMJ+TNjXHwz9A2qQp13EMOnodfYNnV07K/J6K4V8F1MvrlbytUjrt6i8WgP88oF/b/Mou6i0oS/+QTO9sQWWNNPNyQFlVQgC89Ok5ry/RZl4PsEFJavj8YP5GBcY/f9LPg745Yd93treeCTn7d22T7oF1Bt/szYwVrZ6nVbkXYtEzRqBfH5NZawYoe+qOq7nvrbOkN6nFpFLrGbuOqtJubWtBWZJUgE2nD33U9fn6vI5vLxWKMlU6+fpH3B9GPOl3paQeTe+QKQtLj/cN7cvckmnJBJ2yw2oObwlFe4CykgCMyfWFpsIynqV9mAJjEEyUPY8h45Z90ONlrR2uR8MxSqx+2Pw2LCgreYU6978z7SMShtpUBMpqG0x/0WGFeEWlw179lnGHb7VSthZ47vUjr4HMBtjEUgvM6XgXykzxdGzMYtGZjz1jIgUtOvfsXppl6LippB2032Ox1yWjvXxXCMpajeIfrr/0dKBszjiZ2xdd25X3QMtBWZogEHbMmDFtLbrssstmaJMvLkSgrNiaEm8WTfzcXddwZEE7YwiUBZQAWEAE2xoW1GmzQDL2veRH63h9k0ZCDGTprwgUswtV0e5hwv78qjG+v5nU9j/jtrZTA8AwaagaOjaapYDDSCMcsHE5+Ff1PF3b1+sBTchyjTGUTb3mwH5+4lg1NBmyjGmVybY644zOHwtCSmABGpsdFpTl2GUZ/Gafv9nHAywHNAcM6X3sF+Yrpw8d799lvdOpcjvaI2CtaIGAbhgAcKvA8lS/YDi084WjPPMb1vcrb3/gJXM6yrW92fevmcezoOw9T07xjJVGxmZpmxdp8qncvQ6L3lacFCUEmtlHX6ZjURpLgpayYMxOYpHzbtv9YLIBkCgwiiNpTNx22MaecR/G2x987FY9flgl09etz7ndPfrCW01Jate5pykWFseSLBdML7Q6CVtWa0HZRll4ddqes491KM9ZbLZVSyw5r1tpsbkdLHn0K7t36zaVLb92T1+KqtA4HWMLptrHYhomsqLouc25xq5tvugBqwPNX602Z0f3k9oGAxJd0hh7rhmgrABLAXw/WH8pd+mopz1Tj3PWjRCUhc0HCI4xM/G3H6/nNlhuAf9vEZX4N4bJN4ydPB0oS1n/lLc/9N/VIlkp215rsm2TQO0Byj707Bve7C80YKJ9mMny7UCLk/njAZfd72CyEiRZGaOIMlB2ozNu86X2tx+xiZeGIKSTHCa+ZExr+ydWxWFB2WZUtNZ9fpq5X/ie54CyOj8JAozCYD4Dfv77oA29R0SzQpI5P+6/rFtlsbl9hU2R9JU9ryQpwDWYs9og2cT7RuUkOA7gKu8b710sNDaFoKzmNrSJ35DasMFamTVzV7RPD7QLKNs+l9L+ZxEou9U5t3uNnqGH9HcrLfo1L7aNLs5x263ssy+dMZSBwehm85UX9Zm3onLMnGsAFJWQtnSMcvZLbaMBiQ8sgzQLLQYzgFEAUgFJ6Mket90qDu0VyhF/sU1vJx1Jjh37oJW1SwsqtiOjTLlDlZKDsuN3/d54D6gcS7IhZUcMkydF26s0iW00cVKplM3KU/ZB+cfwwzfxA2Mr4oU33/caVUSrpAVCUBZ9VHRSZ8SQqcQcs3Z3GBlYs4Sj//HwVF3ZLVbwbsSU7FCOGosc4Aa2KuWtlIABzLdHwPrd4+K7HfpYyy8yl/v7fhu4H/zxHs/Q+vv+G3hmb1d80QMWlJ3y9gfegboRlpDMJYs0xkkI9Bp0g2fUWefknPtiDTtgufAM4yjcFXk9IACgSI9XC2q0xdEYL4s/jnzSG4UoYCnBCiNSiRCAFlj6Vcqm0SiHyX3DwRu5lRebu6xZTf9dkkAx525VQm3Ua0E3YuIr/tx2nLCgbF3JqKZfUHBAfQv4cw4oqwQJ14MWJ4v3fTZaxs02c3c/Hw1Zrfv8+V4vo1VFCzoEZbvY8c15CsRyRlqI+wWz7K6jN3Mwyzo6BKjYdgBKog1pQwSfOhUX+156r0MaQ3qrAq4092n0OQtBWdpt14Aw9mDuEVQu0v8ECZuRT7wyHSiLXMqUdz7w39lcOSgBlKFGZ3uAsv+Z8LKDOBRjJ1KFQXWBqmVVOs71I4HHt5QxHfJDUcSMH3VfQ2mjCS++5ai0sGGBcf3dgrJfhsoqayKna2RMhmGaC+4zVu91yT2OecGV/299t+4yzfM5UnUeyTb8cXg2OD7nKQuYvIxBMQM9KoSpFMYDZL45ZnXc/yJQVokCzmkZ0gKNqfyiGiQEZSF9IPnXFe3TA12gbAP9LFA2BGbaypxNmX0Dp2nJrpS88sHHfZAJJE6FPWbp7h3EATPqhBXbbrQESwOHLcFQeQyl6pSsyykYzdefb7mi2/WiUV7/lfKQbX89ou0SQn20nGuT5i6gzbfXWMIhndDoNeWct2ub/B7Qe5drKlKltFAlHbRGrFEZJVjB9R1/O9KXnjXKMi+6arGX2CamX5XfY+ktQ1C2yLymGedr5TG04BFLEdM/Jm7ofh30t/t9CQ8upsddM84bBMImiAWg586/m/pNwTE4FgLvW8VgDs9JSTQLAUwQ+TZRSgzTRk7OF/9wbbdZ74Vb2b0zxLExQUA3FBM+zE1gBqEpy2KPSaec5OtcjBaCKgtNHUMldany9tR+msTr99jCqk67vyr7qHqhyGhVC1iSGphqlYXASm0HSxpwn0iZcgmkrGIsF5a9lrWr2b9TVnvJnU95WQ4WaTaopgJkZm6mYL4oVpEFZVMmM81ub9Xj6d1lvxxQFuDdawBuuaJPgGFmhH/BnLN1927qGH7iPt/2XHzusl6FiR+ysGFUkfDpisZ6AKIMhBnuWzfXzYMWHSULEl4JMgK86zZUaWn/JqZslW+I9hd4x7iHDnTvY4f6NR7gEM+1yC11ezkGylrt7Uv3XscbD4WgGZ4MY59/YzpQlmpGwDHKu4kcfXx0atGrDUlA7QHK6r3FfIk1gQ2ZMyk5I01utkFKAnZmDsEilqRDFgnCQAgehmaUnCtGjrKg7OhBm3tQb0YOacgjlcEYRNz88wEe38gFZdlHCRCeQ6prmxWqsASz2HjFhR3VMJDhAI7LQtrEIvzZ7ZX0XWiu2Zzr5hyGnOstu4C7ImLuxn5WX3v0MZs7v9//mVeKZIA+8aKP6TLzAAAgAElEQVTzzD4dKJubuC67lq7f83qg5aCszL6uvfZat/jii3tt2SWWWMINGjTIxQzA8prdObYSKCvdImVh+eBSWo3GDay6zhiPv/i2Z5MCygJqKYtSxRUwvC5pdvL33ddbymdo64YWTfajKqaGBM5h5UqygL8BxLIIH/zt1dyOF9zZdmqyz2Shq4T0JMlQb7T8Qn4BFmOPVDlm17bN7QGZqOSW2lcBZVmYSvdJJW8Cvqw0h5gxv//BWm6LlRdp7gV+fjRly/lPJtW0p9kRgrK5QHez29GM49kqACY+0m7DaRZAk7IyWBkHX/GA1zyLmSHQDgHzZLevSmS1xahvFVhu+wMsZL+/TGW/AIRce9BGjsUaocUbMi6wur7q8fsRkxylypSVY34gUBYWMeMEJkqYKcWCJMiTL7/jdl9/KceENAyVIsaYTXZbAH2A/aqgqvT3APoB/XONDL/q95zr18K0yOSL7WRuUSRfYvtTLt/6m9hO/HcK6FHiu8rCkGcTYKMRzeNGngMxc1LzQCUmdQ67uLOgbGiA1UibmrmvvpMcMweUFZiCCRFzZUA+/h8NccYRxgXGB0VK47LoGuSmrm1y9Qab2S9fxmONePwVX1ECe4ySeub0JFdJsnZ0kFSl0stGrJRcz+vMM3XzFRc5QULywuFPuOsfnuw1WgFlSdSSJKQ8e4/1l/JGUZgiw/ivGzFQlmNpHSizP62ldB4qF5957d3pQFkqEWefuXsbKJtTWq/v1RnfXd1r8iokVVZ17K3SF1ojIAdBH9tgbknSRskZkjloRxMDV1vMSxlQiUalQVHEJNdSgLOqtuzxYjIyFpTtLMzxKv0ebkuFGGs7GJ0wXQkSpeAbVcZe3gnmfs32jvmiUmsVN3C1xX1iM8eDgiQohuWptYUqAZjrYJBHFDFw9dyw3Z1Hbda2dtB8ljUR2rohU3bVJeZx12VUEzVyD7v2/aIHWg7KnnnmmW7ppZd23/zmN91pp53m9thjD2/4hQHYFVdc4QYPHux69OgxQ94TgbIylcF9GyaOhPu3XmVR757cGcNmkfmAyR2zTpmMrs+KbQNQAVTVDZV0MZmA/UVYbRaYBDL+YnJB9hEdWUCWM77bx6GfoohlMsvaNXTsC26/v97nXUBXWWIeX+rctTgu67X2+10l/WWLb9uiHc4f6UXd/3FAP2/AUxSWUQPDkoERoB9zAsuKTZVPNasnKGUlWz77LDO59z/6tJI+YZU2hKAs5SpMclodsFrR6Vtk7tn8O9yMGPPs6w6pCpXdWN1fGWOxYACgjQnoqw05oGwolVDWfkqORj7+iusxa3ev31QlDr3yQS+9gFTC/+6/wTTu7Jhj/PnOpzq1ZE6Va210W0mbsPDh+y9QFg3IFY8Z4mbtPpNPboQmGJxXpYcpsyJpnWMihaFJKnS/wgVj2bWJ/UOFBwu7zso6LLuOjvhdcy/07EmepULjB3psuBqXBXMB5gSKH26wtH/fiJTUgFhjyBCwTU4IlGURxGKovUNltud9f033zdUXm+70d0161VckKe4ZtLmjIoGwoCzv1cTBA/0irzOFvY85oKyM13SPVQLOc0M5dlhRIumyQdv2dj/eaNmsS7901FO+akMRA3myDtS10TQ9YEHDt97/yFdOyJ+io7uK6g0SHIpUKbtNImh9WdR2ybLYbU7cfhUvaQRTjm8KJBVkOEgs4Y9QN1Kg7I8uGe1ue/Ql98c91/Zycpfd/V9HUgvZCL67m6y4kHvj/Y+nA2VhnPOtxJuEgO3Ya6G5Cpt32NVjvAku5mE79f0iGS2TaFVV1r3Gov1YE0LWiWlAh1q3Yi1zPJLEJAxy9OZDbVr2B9SDJRmyXEnaQ1SxEfNTsaCsBeda0UftcUwq3zCxYi5258RXvKkviVISaFVAWcZz5tGM7bwzzQo9o8wDd+rbs80c+vHBA90s3dMDJOQLnpvUXAYN5zV+eaObt8cs7vX3PvLNLarqkxwk29nqLT1jGNW//Nb70xl9dYGyzXoS8o7TUlAWg68jjjjCHXXUUZ4da0HZiRMn+v8+44wz3Pzzd3zmMq+7pt1KoCyLPLl7s4W0CIsYVnXO18x9MJOARo9OFh8w2r/GiTc6DGSk4Vr1fDgNU15LNEp5/+3wJ9wZQx91tpRL7Cc0vRCLFysBvZVvrr64zyphuPPrXb/hy3kVuaLa9nrlQrzbukt6Sv/ZN04oNA6p2ldd2zfWA8q+VxEhryI1YEs9ZOJF5hWGuS1XVXljq0zgZEwC+xFmOODsoycV61DV6dkQlGWAXm/Z1n+Xi8wS6lwH+4iFIn0lJc24j5udNdwBjCJcD3BbVBYoAKIo+8z3UmWBOQxmlbxVSSZwTSzaWbxz/ylbC43qihYIdftxRt1P90Ttx/WW7zlsFgCPDU+/1QNIKR1oacSn5AmUnCljXankvcgQLNbHYufBxIW1kKM9N6Peq2a3G+13+r1ML1EslFztwl1+N8oz5xWA+zAciRSr1ZpEkQjMCY076NzGWNo5x2hkG+nxFum0SzaI81imlQVl/TzYlEg20qZm7ivAiGPmgLIrDBriWZaqxlFVHPvHgGfmiZAFqlRViWwAewrTXQyLSAh1RWM9oMo61hBoiQMidpZKkhCITyVuLChLZQcVHkWh+QXgzMeffOpJCJgSLrfwnN5sC0AQSQGAT1Uc1u3lFCi7959HTwOAa+6iJKMnRHTr1gbKorkN6w8CzFpLz+8BY6JsfGWbn131YPS+AsDTjlYCSrqumHeMQGH9poo62szcDeJAUZWW7sn3LrrLjZo0ZZpqGyWGYvIOkurS/jGjUAvKUiVGO2bkEKHsu32/7qWqwDIo9wffqALKiggWGmE12jc/+dv97vqHJjslOvuedJNntpaxlGWcjnQOHghhCJS1fy8yhrVjl62EtPPhh599vQ2UlQFhzMiu0T7p2j/dAx0Gyn6ZmLL6SMoQSOWzZPnI9nXGEAMPYzI+YISye2T4yfRXiVA3KCcLWHR8ZZcsW+kPI570pS1onaF5JsaSdBR1H363R1+v/aWgXOS3u61Z5XKcHLbJgpLNYrLdqFtppQZ0bVzYA96s6coHPZuHwS4nBKaUmSGRV1jxmBvcR59MTTBIFF3utXYwDRMFOe2oso0GcMqwYH+3CqAJQdkyFmCVayjaVqBsFTZZ2bnDyRXZZCYw3Mc+J97od8fNFmb9YvPM7tCejAWTYSbFRTpNsJcxEssFy61+YK5EhBb6fIcu3Xtdz5wM408jn/Kuxei1oZf7VY6bHnnRmz4qtBgUKBuOG2FfrXnSTX6RaA397DYCbcvMmK645xl31D8e8gwemDy5IZdc3vmzhj3qNatzFqi5x/8yb3fWsMccmv6phYyuXcB97ntrS/84BiW4vMtECkANk0M5/a7S3/aqVAjblJNwsKZnlmkVgrIddQ1F/ax3i23KQFldDww/xnxCkiT8O1ZlIf33KizEX9/yuJ9vShMRcOGsCt+LnOcqtg1Mbr6VLLpbJb1Ut23N2K+NtTywt3v+jfccY2RnMV8OdcNTVZUWlLXGWan+aasm3GhZ9+lnn7UZTi8w52xeromxEKCSZH+j2sUpUFasUNZhAFwCFpGzO+ZfY72e5jxzzNoGyrJORuqlX68FPWhMGTkRGlnFrlnVKL/aeQ2345pf6ICyHqVCCgDyoeO39GSdZgcJ03+PmV5XmvNAKIJYdPhWK/oEoYBqfkNS6clX3vHGwCSGi0JJMklBlMllWeCN48YqQSwoi8kt3gQzcthv7qV3PuWJZczN0GyuAspaGYRmGluFzHHNH8uqYUQiShFk3nzvIwfhxMaaS83nKzljIXIKvw05uL+XeiSWO/oLQ9ohD09uA2X1nDZzbTYjP2ft1faWgrJcxNVXX+1GjRrljjnmGHfuued6+QKYsfvuu6/bZZdd3E477dRe19r088CUHTv+MV8OaSf3ymDkaMY0vVGZB1RpHS8mLyihjxLtRq+wSgZNE1grti2QOrNJ02ymxYEVM9di4Ef9lvbZXzEX9YERYxk9NABm9Df5QG+96qLuwt2ryUiIhctC/s33P3Is9srYN3Wu86u4DyxtQHsy5HVD0hVVypNipUCx80tvWb/JYVrapJIz4HdNTCm9wvSjmSF3VyZWI47cxMHaAZij7KXZEYKyqfLVZp9XC6dmDvyUs5HUkQM4DHqYcYCv6596i78ESpZxBLYL7vDackBZsvJ8d3LBcgvK5iwQVVKF4eHvf5A28VKSoo6pYbPvaUcfL9T/hBl0++MvtzFlrbEBbCEbn33m2srLBu+wmqNSIgzJ9JQtaKymIQBrbtgS9usemux1zrpMJvN6L1wMF+0VJtOLtlVyTGxGQBSSP0TMoIe/i61FWSVJrpyAvQ+LKnXMnGM0sk1OwgE250an3+rQMLTl+yEoy5yLuVdnCutAXQbKxt5fSYtwTbEKCmRS0BCEnU8FV06cOewxd/5tE33VGrJiAP5oUbY6rrz3GYf8ksbJVp+vvY8v/WOMewDBKDWvWrXQqjaLZanjp1irFpQNgcdY2zS2Ie/24lvvO4gsEGxmnmkmn7SlNJs1GqCsKg7rXmMKlFWlh95/EuF8M8RexGCo5wJztIGysPuoKoBBu8XKi3oTMqLMSJNtZM4UGu7x23cvvNPrCEPIgZjT7ECvmG9ErKpA6xMYjiQIKa+nzJ4QMzjHZDJkHVtTq5gXQpg85HyxdbjGPsrYqRbh201yJhUY0/Wcbw6Hzn1nC1UTYlR17s0T3DsffuKrV5hHVQFlJWnUKKEs7J9dL7rL3WXYzpLWKqpG4RgiAVmJIHvsmIZw0ZgmfIRjKGEqXVok0agktLIq0ui1GFHRvQdTeubVdzvdmN/Zntey9rQclKUBsGJ32223adpy2WWXuXXWSWt+lTW8M/wOKDt6zCNTdT3mmMWh+UPYhV2Og2RHXItA2ZCaLre/Q7dYwU9gckOMN0ozyErjBNiIs6PYbbYETsLq0nzRR0ZMxrVPvtmXJiMYD4iqwa+Otq/cMy/Yva+f0LHYa1QYP7cvv+zbCSQL9diqXLe0XMm+YyqXE7mgbOiGjMP0fHPM6vWa0MjjnVYMf+xlL5UxYIWFHNnsZoYm5Ij1H7z58g55EEomn8g0fKjSlhCUraqDWeVc2tb2s2RU6hwn3Cf8TkiDS4teQO5/H9jPg7JFE7A7n5ji2clFmp6NgLJoqzExS4UWPfyOCD+AayrQcCMj34rnsBn3JPcYJNFIDpJQW6Nnse5z6pgbnHaLN3wCKOf+aHIppiwaxkf/82FvDMJzbgOdSJ4LIvVtEeOgzIhEFTO5ZlJqh7S/WDBNeuUd96M/3eNZRJfts25uN35lt6ti1iG5pTJtNzpTi1ixutB549tPpDTKKVmkdLFKpU4VM8pW3GSVMlJJwHObCkBZAAKbmAhBWaqZqGrqTGFlicpAWZWYk5ghQUPAwmZuScDMAyizESYEc65dicm1lp7Pg0h15LZyzhNuI1C2FQnlOu1p9j4CQ/huQgSgnzuLidqBf7vfkXBTpMYaC8ri3g4JoShUKs18Ydzzb3gfDgDatz742MHIRlZjjllnnqbisG6/p0BZ6VIDhq69zPyOdZmMjfQdhdGHPwOBbwgJLOZn6N2SpCBYx1GdWBTqH4B39FNtAMIj69Qqw219S2IJtLCq08qmqI05ZeHSwGYdus2qi7qHn3vDG6mlZBk0fnAOEaRuO2xjz861ofuAEe5mZw/3P6XAPxlW5hIP6j5PdfezEhbHXzPOwSaGhcr9qQLKtgq3kVmbnhM9s6EOcnj9wjNSOIpY03Y/5sycJxa65/ymalHAdhjFShBYUHbDXgu6Oya+4mw1ddE90tyrETJe3Wfgy7Rfu4CyX6YOs9cCKDvivod9RiNkXIlZUbZw66i+GfvcG/6jFQ4M0sGramolUABhd8x7OH4ZPT917akSDbHGKNFlwF79hGHTMNQ2PWv41EVsv6V9qRJ6kSzO62jEyBSKslEmymRvq5SkddR9nRHOu8wvrveJi0ZAWZUhYubCAjknlDkvKwU+dcijDj0yBYMiExLAGMqgKIdSlE2SctoV28aDSScM86ASC2RKJSkzgTE5yYDCdY8f7heCsgjdk/xoVbBI2v43d3i9PiKHNZDbFi2cJTeib7H2xz0b5iKlXgt9bTafPIqFQFlp08a2of1VGMwWiMZs6pGTtnY4K4fB5OinVzzg35OcxAMl7pQ7VdFYzu3P9txOfZ6r9Rm2TSx3GB1rLjmfg21OeR4ZfIGyMnCLlXrpfea4MN1gvIWh7xfvYeTWtW2OvroSKVVMj5SQhKE/68wzuVWPH+qNyWDox56V9rw/nf1c+nbnABiqfBh74lZurtnSDCBVPvHtx5CQZwxJE9gvREoOBw3wn181JgrepfqxihllK+6Fnr2yeSvSL4wZ1jAkBGUlM9WKdtY9pqqr2L8MlD3h3+McCT78C2AVEgBpAGpEzOBnyNgXHKBUleosMftJ0t322MteW/OiBkxyc/tGoGyrmLkCplTZltuuZm0H2ERiDC1WSCNUz3QWANrKaHC9f9l7XV+6H4YFZffqt4yXXygKzXEpeb7tsZf8PBYGIeOfdNU/+uRTD1DnHK/oXClQ1mpoQozhWmVAJM1T1p0QgwjkOkhm9Jyvh9tl7SW9JjiR8/1AkgEzTJjlPMc2pOldNSma+/wpgWW/gdpX5mYChCWZZI+dM1eTRIKS8lT8SBuYZyYMmZTyd8gEVHvFni0BdEhowa4lLt17Ha83HMYND092B1x2v5+DTBjcfD+L3P5Obae+ZS3408vv9xUcMEEBQ6uAshyfhDyJ+WYaoGnMkSY0Eox8G4/ceiVP9EqFZLQgBeFBEUYoGcnvqWdK5BEd4/J91/PPB+MNSX++PTwnFpQlCcB4lkuY4TgcrwuUbeyJbikoa42+evUqzng1dhkdszeg7E13jXEbn3nbdPowehFzdQPb+wrEbA0zbmHZRW67xBBAP+/Vdz/0mU9pveYeQ9uRQUW+IPzA2NKw3dZbygt5W91eZaTItqL1wwcZkBa9rN9XnOSKCYLmz7Cxkx2LvUY1mKr2w5dxezs4NALKalGY49CqftzpwlHehO+q/7e+w4QvFdJx0u+UuqMvyyQsFOd/7vX3HOXMRYZRde6jFvTKfMpZNWTq1jl2bJ8QlC2bMDRyXkCObc693U1+431/H+558tWmgrIyX8NZmESKHLQp0WHCxjnPh8Vx8s0OMft7j9kiejk5oKyAN8CyiRkM5pCFDTgM6GuDBBdla9zz3OQY3zmSUkstMIcHSmbUUOKN9tOfVUHI398+yZuYiDXzrwee8yV3b73/cRsoi3Mx7Ok5Zu3uHvnl1tN0lZx8+aNAXLuBNIRzZUSUEOAbAkM7J0LQVzqjKUZmzjG/KtvIHAMgIpSmCPugbNGj7cV4hm00CwvTF9/yLG4Y3URqPAkX5jn3oIoZZc7xqm6jZ0/GVqn9mfM+NeVdZ1lYISjLog6GV2cKzRtoUxkoq8W+XOTZR2QG/n36d1d3u6zVc5rLk+QQ4AYgR04A3DPeb9dncb8oriJ3kXN8qtZgu5GAtG72AmU572++942cQ1XaRma9HcVORVOU7z4VjMz7qH6DNML97Ohg/oOvhyIG7PGbBWVz/BNUZYFZ89X3PuMuGP6EI0FFslFmQy+99b5D5qBRsDwFylog8bV3P3QkNyTngXwU8z6xOJH9Qz6DbyUALm1CQ5/IAdAlUYEpJus+G8zNVjt+mJewa2StkXpWlNSLadaGsmbhmoJjwoz/3/3i+p86p74NaEwDXgNAA0RzrVxzGGLW8ncqgTDBimnjC5QFKGR+TMCoZo0bhvxVcue47f1uWXNMQGmkMmCLwhquCspKPghdVpL2zQiB96oqkQZumXyITc4jKRlGaGjL7ymD9VDqQAC8fA+kY25BWZmZYi7Ic1IWere7QNmynir+vQuUbaD/AGWvHXG/BwdD3Q259ZYBQA2cvqFd0S3jA0RppxW1Fsusqn6qBOYBQd56/yNHiWjKKKWs4Vff96w7/OoxfmFNWYpCixzK1TfrvYjP8NhyXWm1AHIAqKBTCT1/896LuD/8cK2y007zu0obYdFcfvd//UK/jgFapZN+BTZGXgIwjGhkooSUAKBV2eLRdqlMOqxOcazLVTai8mdMPl57ZyqQGL7nVZmSubdYzzKmTTDDiSoaiLnn0XYhKItkAjqWzQ7u2a4XjfJALGyJs3Zaw/dr1clTUbswk/jrXU9PwzBFc3XdZRZwT7/6jpu3x6x+gQowRwaaTLQCqRImvgAwALbchyKmrEwTcmUlQlA21ESGxbn7H+7ySQBbNlt2H6QNpTLBsu076+/H/p8RCIwegoQYZhhVQqYiMEsefOY1XzGhsMxXMXYA5LnPiitHP+P1yIkYW1yAbq5evBKFuZN8sR+Qbxh/0lTAWJpprUyUVOnjzrytWCjoKDJeF4VkLsrGISplYKCxSHvng4+97qekUDh+yojj4juerMxIyzWjbMU90FiWk/iTzBXgD99uIgRlc5hgrbiOomOKCcU2ZaCsAC4LPAPyAfYRlMUjK2ID8I/kbw7gov3ELPzeOku6y+/5bxtrqVl9A1sSUkHozC1QtlVyCZKYqqKv26xrZvxcftANPqlHco/5BvO/KvelWW2JHcc+h1RbIKHCHCIMC8rGNIzD7WXaQ7IRnWL+d8TWK7k7Hn/Zr4lIAvP9Ql+2UbA8BcpK5xX2KvMZ1oIae1krUyWlRCkVppBmGPMBaPffuJeXHCBypJgkA0FSgeRCGPv8+V538/gXnTWMbsZ9taXuMRBq6NgXHACppPOkP2vPXTSv1HYYhQKcSV/XVovGDF1ZN7N+JpCqAFCNye5pLYEfC/NvIqUtLY3gVlXpNXo/BAbCbh3469u9qe8/f9LPUXVSdV2BQfiwcS80VYdYyV/NNUVgK6tQoFISMDVlVBeyX+nHlKyFXXeznQhzMhxUVaEFZZk/YWSdU8VoWbtdoGxjT3RLQVmaduaZZ7oBAwbM8PqxsW4GlL361tE+IxNO8KSr0xnNDrgWmXqFE2dlt6vqp4qhAjvtvY8+defcPCFa3pXzuIrpFpqbSAsQsGLlxedxlH0xkWXAIpQlJLMDm0W6RVWz45JP0ISODxML45xympzr+ypvA+jFgo4oWwyn+glJChbUGAagOZwbSpSkFtEcR46WsCq/NvssDiYsg/2zr73rJ/WwLEm02Oh97FCfjWciDPuu0RDwwyQIloecY9sTlC3L4ta9xlNuGO91zgAPyb4ymPM8AIKy+G1GaCETK2nT8ae886GDxQg7g1JdhRaqSGLss9Gyjsx7kZ6nGMy5E1aBsovNM7tnjFj5GCQIvv/7UQ42JkwIgEUAkpxolR5WeG6y/B9+/Knbs98yjnek2SFQleMWvaex8/IOwl7hnmBa8Mc7nvTjkMImOGJGkmx33q0T28onT9h+Fb9wtQE7EJYgkggwH8pC84AYkye2b8xsAod0WF51kotl7fuy/S59TltynrrGGLAY25ZFGos1wAPKgAEVYKQ/PeVdv3mM7c7fAUTQRzxg4+U8MJITubrnOcequg1miOi95yR2VBpuK1VUNaLzNtswper1xLYX+4jfikBZJdtigBlAD3NE9GSpkLEhr4YqxpUCjrQILtIwr9MHSnQxnx1/0jbeLJTQWNcqRrMqk6okF+tcX2wfGSIxzmLwCRCJiV0OwNCsNhQdB8AY4JigbH/EkZtGN7egbNkcSXPXOWft7qVu0D6GZHP4Viu66x563jNzAeHufnKKZ6/Km6Pu9aZAWWl8Yr5FchwZAREhpPOrc6JXyZyaKkgCSRC0b4kU68+210olwCQOQ/4COSzjKv0A+3ztwTe7VHI29JoQycKeIwd0xjSQvtHcRSBayrAOsF2JaPr/0Csf9GB1yITXWkKGWLQrpXGrqgi26YyAm9WGX/eUmx0EBZLgzPGqgrIy4GumHvpKxw7xc3qtDyUZUOYTsOrxw/w48/AJW0UN1mKgbOoe6nuo5+/CPfr6hIE1NP/B+ktNI18gUB+5Nyq+i0LJyM76jFR5tzt625aDshMnTnR/+ctf3FFHHeV69OjR0dfb1PMDyl467C7HQjKcSEknqi5btKkNjRxMGoShMLSo9VX1U1VmgXj1x5986l926O+nf2daI5Wc61Jm7vzvr+lNDxSi2gPEAqaw6LHArbKEMvgSY7ZqOZgW3ipVF+Ol0XKfnGv/sm8j2Qyusy4oK9ZDGdMl7MscUFaOy4icPz3lHW9mgsspk3pKyjElIMtoo6085chN/QS70RCzJQRhNJFqhXlgyJRthTmC2AMAjQBuMD/0rjWz7F6OtUXyKWKWhpNqLWQoP6WUC4YDz8JfEyZLAkNz2GU8F5JgYaEK858gE/7c6++771ww0oPUVZNIet5Urinjw0afQ7s/iZCDLr/fL7CIqkm73LaIpc72MfOOouMIPBMbykohsJ8FZeWiHo7P1hX7+O1W8eWUNlS+nOtIK5ZrjsYp5yGZSDmhnQgrCYX8ATIIHRWU8QPEwzLvrKFFKdqLaCYWhVhbABXcz1Ro3kGp+kPPve7BDe4F2nME3wa+EWFQhoscFIsbwIacyNU9zzlW1W20cEO/nLG5KOTyfdOhAzzQRVgpH55ZolmLeBKVc87W3RsANhJKoHKMovnDxJfe9lqLZUBY2JY645l0IDHXhSXYbDantP5oq1y3+bdA2TqeCzn3QN/yXdfp6ZmK7RmhBBoJUBh1nSFRgDs8yUNFEWPSgrICW1P9KD11AVH6/hy25Yqeicr3iqqvYWNfcMf/e5yvwIqxLXPvUwqU1TqMknsSAt6887gtvRn2vpfe62585MW2UwDI9l5sbsdYTUB8Yb1FhFJhsXahdYrmabhW1LYyqZK7fO61lW2ncToF+km3XiSOUEOY48fWEuF5wyQj93kenLQAACAASURBVI2+iiWM2Vf3nH8jjcB4EjN/0lpChlg6b/i9VvWEfm/F2qOsr4t+V+WCpKhk6qtrrwrKipTWzKrYkEyjOWSZVmsZ2UfVALZ/UslAvQfaVsxyGdChYY6WuWXKMv9lPrXcQnM6DOGKgu8L7zrRrDG/kediRt63paAsmrL77ruvGzNmTLSP+vTp4y666CI3//xpfcfO3LmAshddd6cvow+dtO2AeOCmnU9PV5OWNZec17sHKyRDUPWjpImf9Jr2umS0N2BCfLtqSI83XCxpEgnYC1uLkuSzd+7jyy4IdJL+OHLqgE4AbqARWOZyHrZP5YoazMg8NqPcp2o/NLI9SQEW0SfvsOo0OmKNHLMZ+0qnk2PVBWU1GayqhaYsvUTOY9cjQBRA7sZxL3g2FEZbvC+UZYWSGhxDmo/XHNjP6yA3Gpuf/R+vAYd7Lc7dCkk2PHFKvNStkfOGoGxZaU3Vc3E93/z1CJ8xltYrx9B5c5mHOecV+F4kUyFWWGgoJT00hO9JTLFglgh+6txVGMzS7AakefjZ170wPqw+/o4WFgZC6D1hqlA1pIOd0qerejxtDyh10nXjHItJRStA2XCxmgtkqk0q9YMZhPyO9Nf0uwVl9Z6H1Q9Wky0G7N016VUvvyHjkrI+FVMnt4RX5iThuFxWylbWjvB33se5Z5/FgxRlATMUxjFJlWZ948rOWff3skWrPa7042Lu2XY7MV555v/z2MteEgk2Ke8rkTJIqaJvq/PlSuzU7Z+i/bjPANU5GnLS6R52SH8v5UAIlAXU1X9LR6+R9optXgXcLvtW83sRKAtwBIBUNUGGyW2ZgWTYNgHxfG+YwzZb9kEAOue130DNp+t4LpTdT8viIpmB/m57xtBxLzjIHUpsq7y2MzjIh6w1W+0X9pEFZfkNmQMxncNtcUpnviKCEAD/ubdMTQpRxk4AmFw66ilH8hFmHLrpdSMFykq2AsIM62Bb0WbL6zkvQNDi8/bwhnoEAD7zDcJK+KTaqG9DOFe220vXHVYoTMJmhIghMbNQjh8aAMdA2RwzQDnaS7qoyNiM82r9zr9J4CKTEUp08ZvmrDLEUp8AvgHCKazxKX9rxdqjkfvB+mwAlUufs82VCMLMGaZ+VVAWTCHFLq7TTum+2u+OqqFi98WeY8Vjhnij50dP2sZLe4Shag779xRZQBUc2pYqjx3XXMJt++sR3nBPyToLyoKtQLbL6UNJxukbU6evuvaZ2gMtBWW/7J0MKPubf46Yqh2z6qIOqQKFFmOdlV3Ztvhbaj5P9VfIMbVqqb4FpmaeaSb/sueyicLnBDdzMnShXiii5TCcmOQ9NeWdqXpFxihHkxAdD0CLLGpYJiI2ZIqRIEafJnRlOj6d8TnX/Ug5Q3dUmzVZ5vx1QVnKm1JaSUXXpdLoVLkp+2oSTOkP50FuAW3L2ye87Cglik1k9/zTPY5ypT/tubY36WgkYGGh8UTmd8zxW00zAZdeWB0DpLI2haBsMx2g0UUCkOUc0thSe7RAKSrhK2t7+LsmGkWTcDmqh6W6AmpgvgHKwpQtM22pAspK85LyKAImhAJ9b4DkumwwGR40CzhDh+qQKx50Iye+4ptIuSNVCHxnWwHKakxSf1Qtr5ROn5J5cirW8SwggREljOpwbFD5OPvEStjQp6PcODfRJ3Ant1oDkzfYC2FCU4u6lEt3lXcEhkWfE4d5VnZRgoqqhv+5eYKjTYrObjYWlnsW9UtO5QT7t+nUDuzt/vXgc34RI71xfifxzP0Ko0pbtG9um6rc79xt27Rzg0R9bP8Yy9iCsgAtlDRWlSApOhffRUrRSaTVCZkyat8iUFZJm6oyPpK+KmM12vbru33Gd1f389tUCWqda2YfLe75t00qC5TNYexVPbc1RJOJTNVjNLK9mFu24qeVlUZV2mqrxdivSCs8BGWLdNZlDquEukrdMTwErBOb0Bomo/VaN1KgrJKjWn/ZMm19S3VOjKGRCROZBpmB6x6a3NakMtadqiqLZAIPu3qMQ8czx/wxty9UlZN6d8S0lxF1KNvAeVJmXbYNYbWFDMP+vNc6fu4ShiT++Dt9p3c/XEvrXZD2qo4TMo7l76Lfi5ICuX3XzO1ELhOBioQYiTHm0YylOYCibY9IQ82qVpBMmq3IswzXIuaxJE4mDN4mStKQdJptf4p9q37StlQwQ24LjWgtKAt7lsRkTrWIEot67pp5j79qx+oCZRu444CyZ141PMqgE0un2YyzBpo7za7SAAnF/xkc6zhz4kDPpBxtJLI6ZKxCvcactqPZhsFCzM1eAtkM5Hc9+arXd7OsMGm/6jwwaJmoUBp99X4btLGCpPeTYudpQqcMtjLLuWynnOtsZBuyUgz6lBekyi4FypaZWjXSjjr76h6yb11QVqXHg3dYzZsh5YaAjSJQVqySoYf0dwf89T6Hqz3Z46FjJ3t9wJgBnjS05JCa257YdmJXxUr+ygbpRs4bgrJFJftVzkN5/+4X3+2BPTLw1/10o2lAR7uQLyuZzT2vHLZhOC85f9woCpZbnxNv9Hq9yAco0FSERUtJ4X4bL+eYBJdpf8mxPKe0y7rpMpHkeSMoAf77fhu06QfnXqvdTmWwqQl7lWP+e8zzvhyJfoLpcs6ua3htXcsaZDHZzBBIAPgCwyCHSaLzSzPQlviHLA8LyoYSNTqOdWeP6ZJKEziXpS+GQg77kDZo3hAeXzIIlmVet+8FLLN/DJQl2UlCSmA8i3n0KEmuUBbIgqWzhvQzYYCRQCuKsgWu9oU5o6ocdIq5pzZSyTiNU7AESSTnRE41R85x6myjeVFZZQDHHnjuCM8Ytokv+y3nGeFZFiOnTnu0j/Rr+e9G5mAhE78IlMXsD9O/qnMM2lglScf2qgyD7Uc5du63IqdPBQpoWysTpO9tboIp53zahvGDqhMCRhbPQXuGHOOt9qYACHwIGNM6Kv4z4WX3wz/e443XDttqRV/JlpKECUHZIuPottLr/su6QQN7+284/QAozrxbcgBa32CYfHILQFlJ9wHmQGqwxCSYuzLyov8hjUCckWQByS2+QwqSMOgCp0LGTNLIjG33rwee82v0nO9a7jMhQ9BUwkGmh5KCUbLNHj9lrGW3kca9jJi0rrMyJHZ7Wx0EgLrNObf7qjv8G/iuKPSNkvaq/h4a/Greod+rGCvn9mUj20lvXxUN651yi4OJyrwGEk5VUJb13qZnDc+Szihrt5jrbBfiGaw9mFtj/sVc94mX3va6sXwTFDkkHN1H7ZMaO2yFKtuSjAHfQI+X0NrFgrLqQ8x2SQYVhZUFKkuklPXbV/33dgFlr776anf00Ue39fXiiy/uLr74YterV+cr66/yQADKnnTZrY7MYFiCoheymQNBlbaVbavyi7AMUwzfqiwliW0jZs2iGqCCqMrq08IgBgopM8skj38T9gNgnbP5Dfr99Q9N9hIGDOyX77u+d/MWG0lGXmFfiXGrAUqTmI4wLIjdR5UpF4GLGryLtil7Rlrxu6QgOHZdUFbgalXwqQyUhZ1NZpnn4rGTB7otfzVVRgCRcya16C3HSqo1cWk0Ew+AiSYSC6nY5DvFIG/GfQpB2VRZVtVzaXEEsAODkUWhDellypCj6vFj28vt9L5jt/ClW7Gwhm6YQhHWWZsSwP03yQNlJSsx6dRtXcRAeZrTy9Tl9z9YyxsH8VyNeHyqhEGjWp1yIs41lYr1CwximCUAdwRMkP/ZeY02sLiVoKwSEoAEyDrEtNBSz4e00O04HJaJWlCW0i+SHLAN7EJD4xjnGbRtb4eMjw2MS0iKFZWc2u0F/ueWzabGGpXV5bBryt4hlUCynQVlYRazkIcxSQBc7LXhMo7F+z5/Hu0rUzpbki+8VgECgA20uygwT2NRJz211La2EuLs/wM5YAHa+MMP1/Jl0mFICgXDvm+tMb0zeOx8OdUcZfe37u/MlTDOyUmGqBoBTUIcnwkLym6/xuLuguFPOPQsG5XvsokSvq//OaKedrt0xNU/RaCsZCTqzJ9k7JIqOw3vDyQECAbIYJAoqAokFN1vsTJJ3k96+R1fDivjGIGyZUnHOs+TAEH27Qhiitia9jsgYz9rTlfn2hrdR9/yHLA6BGVT2qm0SdItSiYK0NN4Kmd2tOz5TjbqG5BiyqpCQP2EnjAkA0LrS/0GKDtk7GRHhSZBMkfjD/9dJjkgjdrf7dHXoY0cCxnn8htzvcmvv+eNOhsx5dV8IyXzF3oW6Hti25ejtSzGPmxn1hf6VqRkYVjrIh1IAMrue+loP5cK/RUE5kl7Ve0KK+SoFKOyVDH+pKnr+84S0nvfea2ejkoDdKPRj+a7zXqv6rdUcgPdZ+rmJg4emG20G+sPC3CKMa3tJFEH+YdxF/myMEmSw+wPQdmUKZfMxXR+CF1brrKIg0xniQy2zTKBK/P70BpOx+4CZRt7O1oOygLIXnnlldNox2L+tffee7szzzzTrbNOdc3Rxi65eXsDyh59yU1ebzSUKYBFAJug2aVIzWp9KESu49ZhhUqvCa0jBgJCpaRVgTcxdWMi9JrMAHQzUCw416w+06TQokL/zUC9xcqLOhahfGwoe6Oc7rnX3vOlq0TM2fDofz7sKAPRIr5Zk5hm3TsBByktO84jULZom2a1p8pxpKnJPlWfDZ1HoPSth23sB93cECh72T7retZfGGLWSSzd6ubxXvAcxJgzLD5PH/qoL3eHyVY3JKuRMvRJlSLVPZ/dLwRl60qP2GPaCSJa02Szw5C+UjNNjHLAa1h/6HSSneYbQFjdJbRdKdGH0VKmja2Mdo7eViuNfKTrlMMSjD0zJBIBklhQUH57wrdWdVQl2GglKCvTARaVlDmmngl0xJ5/4z231Pxztrmfi2EosJs2q5RY7begLH8TQ+2GgzdyvPMhky6WZClbjMX6Ve9tjgGb+ne/Acv5BJBCTOBwcl/13QeU4bnn/wnGw7fe/8gvCgBwCCbh/6//cn7RruhIsLDKNcpNOMdgVUkMmV6kzqPycrRnecdCUDbF0soBDMJzliUOq/RF1W0F0vHOY9haFDHGlgVlqTKAtdwo8EMbZKRJomzUpClum1UXdRcYqbDc65TZk7YvAmWlTYgx0qJzp5l6sXPnJAXtfri44+aONMiOvx3pASNAl2YELETYtwBWr7/7oU+s/OlH63j5Fd3vVhBHYCbCUCSakUiq2hcy+7QJl2+fP9I9+Mzrvp/R7O6okHFwjjRGCMrGzCd1HdJD1/fsvNsmOoxLkUXi2y4ZJpW45yYWU/2UC8paCTWt4XRMfkPS7Pe3T/J/Yt6JhJeiTK4nN7GGJJg9biqRlvtMKPmXImII3KNqlOQM+qZUp9rI0fQNK1dl5hpbt3Jska34N2txvACQqwiNwQTmqcxf7aKyjAozheQA9N/jfrm1nxt2lgjnS6rYZY232x/urgzKcl36fjfKqBeWwjFXW2Ied+1BG7Z1m5jTmITeNWmKI4GCtFv37t3clLc/dMjnATATRSCnqvR04NT8UJKM2o7ndq2l5nM7XnCn/z7AvCYsKEsVMnq94TMR3vsQ8O0CZRt7O1oKysro64gjjpgOfL3nnnvcFVdc4QYPHux69Gjcsbyxbqi3N6Dsz34/1AMyocaewIZmMsDqtTK+F5NbFlo4oPNhVogJVIUVKkaSpehvf94dfiJQdQKk8sOYu6RKR1UWE37oQg1Bq/UmV20GlIM2W8GdNmS8v+QYsKfFlMTjNYnJyWw28x7FjmWBhhTQxX5aNDVD57SZ1yQ2HMesC8rWNbxikKYkN+WWHZYkWd28i25/wpewxsoxqyxmi/pSZbIqVQq3FQOnFdnqEJQty46WPRMAZ0yESdhgaoXZRCxkjNIsV2TpLHXrNrUkJxVixc4128xu7IlTQdkhY19wGEcQuOYesHEvB0uurLxTSZKcqgDJY4TlZGX9mfP7WTc+5id3GGzA8s8N7tEJ/x7n0OwmmKT9dre+voQrjFaCskq2YB601Tm3+1PHJnhKmum5YgGEmzXsBpgwlslhmQQhKCuTEDGLKbWETaWISQWoj3FKpzQ2J5TcKWP9cCwZexyx9UrugI2Xazs8z/UKg25wn3z2mZtwctrspaw9YeLSbg+Tav8By7ltV//CXFC/69uZSmiVnbe9fhdD7tQdV/Ns5qKQ1iAAZJh8sPtpocdi9SeX3e9NXGwAEAIUhpErj2D3K0sctrIfBQDsucHSfhFfFDGTNAvKUh7ZiNmrPbdAS1i5aD6TULAM3dw+kWSJtk+BsppjYbaInl/V0Hcs1+RMJn43HTrAJ4qauWaQ8Q8eEbN0n8lX++i7qXkLUj0wy5oZAkA5Jt8TGJ7tGVp/oJnJfSZIsCIdIFC6PdtjzwVQCmAqQ8qidoSgbJGWO4D+/f99va3KSnIGlNDzboqxfPk9/3Ukrxpdz6RAWTF2dV1UT4qVahP1/A4oiz4rzylBQgLWuOLcXdfw7U5FWHmU2i7Usm2UQKExvUiT3cqYWK16tTHHt8VKTZz0rVXbKlBTwJfIYJwDUPaSkU861lxhAkBtU4m67TfdL1X5MJ+auXs3X0nGXJk5c2cJmXurqknfXsB8WL5VmbJcl96jRvXQrVQH6wmqHxVUpDAXO2eXNdyEF99yvKtUJ/Lsk6BjW9jVRBHIKUKIjotEHHJ7YQg70d+RTaFvSNhZdrRAWe7xkEP6O/qzLEkoogJ6tpAHukDZxt6OloOyALJHHXXUdFIFsGVPO+00d8YZZ7j555+/savooL0BZQ/47fXe4TJcpFEKDWPLskc7qJnR00pjRE6d2qhOFnXMs687JukWJFUGs0iAPdYwLUpiDE/p5chkIyyzY0LCB1URDpi2pErbxD684eRGJRId4SIb9pFdWBSVXQqUtcyxzvD8iclEW+qAslr4Ueo9etDmlS5Jmpup7LsmkzL4sbp5vx0+0Q+i531/TYcZgQ1pNFZ1arbHsAy2lBaqdHvsJLdSBxRsLC1nMvvvf/Sp11++p2L/6vCAZBh7PfHyO56R/Ne9102WAWEmBSvJOvQ2ck3owaILa4X1Y8eLGbJocsH2lNEduMnyWaBsFa1fAQz0LX3czKhj0kip4EGX3+9LvpDtOGTzFXyCEYAzFq0CZTVectpHT97GbXjard6wIaYpp7JwlXuJBRAzZBPjjWsJQVkBrNIdtCwTto9JlQBeU4IZ05tN3UsxgMvK5NlfgDOgFvqZNvRNF9DAuzPy8Vfc7LN09yXnOSENPrst7ygAcKx6QNsJYOxslRfhNcv5W0YWRX2SK3Wwxi9vdMh6wHRmoSdGsY6dKilWyWoVyYeyxGHOPa67japYUklBe9wdzh/pHghYhxaU/cMP1/ZJObSyARsbCel8P3jclh5U5H915HXENldbUqBsWDFTte0klDgXySUWqmUhgARWLpqIYQVY2f5Fv4vkcNx2KzvAOd5/SYMJlA3XAI2cT/uSJKPygKjLbG6kHdKWvOPITduSi1/IiRQDfY2cN2dffeNzEkdiHEN4oUy4yDRNySP5bGg+A+jOek+SdG3rmbV7ek3bv9/3rAfcAImrRAqUFVDGsWCZ81wrQjNPQFkkZGgrwbyNOZwiRs6xbSTxA9AblueH1xGy+UIvlSrXrbkjiX9YsKxHY2FJFKw9uHZIQXovwmqY2DFEFGHtefjWK3l5s6Lvg+bxHAtQlrUJyWeY8lSOKvTNUZk/fycpSxUIFSFIR2k+BKucuTwgLf4L+DB0lrDGzDt8Y4k2eYdGpGCUrM2ptinqB80V2SastrPzSOZxyFQAfr79/kf++YcoIE3uIpBT9xGZNmTvUiC0TNLVXub5VA7TDsvYlhY4VWr/u/8GHpSVFnXqWvWNwkSS6oguULaxt6OloOx7773nBg0a5HbdddfpmLJfFlB2r19f61+oGKtm1eOH+RLKzkL55yP79Kvveto6i3AA0DBLbgdsFjY5oeyn/fColPbE7Vfxk4HciE2mtK81D+BvIaNDjpfaHhFzJu82lCXW32Kli9LtEYtWk1fp1uReSyu2k0MyxxaTN3YeLeCrguKtaLM9pkpG+VsdUFayG0wUYGFXCekjpYAFLaIF5lvdPJxsmeDEQG4lA6poYIbtVlmXLSUJt1n5uKGeedqK74kmc5jzUb5uGaRV+pht5YhL2QvGXnPPns6sy4iESQUasI2GrqMsuyvJFVgAMI8JmzBg0n7gpsu7H8GUXWlhB+M8FVVkJXKkFer2gUz0cgwkSAKcesN4DzASaG2fv1tfL7dTFK0CZSUdIadXMfFilRbcExZZWuzLlCdW2imJAq4pBGVlAEKShWRLyCKNuWIffvUYhyNxDuinfiyq/gj7+qDLp0rtxHRIQ/MhtT9XIsnKMyDXsMxCc3pG9UoZwJH6vKNZZmXvhu4P+nKM10Uh8EBJuNS2YjICygJOk4S2kdJwFlvvmgP7uT5fzyuXLhujyq6/kd9PHfKon8sWucHr+Epc2zmWBWWHHLyRW/3EGz1ggWZzI6F5tGRmkDMAIMhJcui8L775vidPQDpQpIBdJf/rMjxjgHXR9WthzfOFAcw8PWbxCYBmhN5b+op5P6W5Gts1rw2r5Ro9rxKjOk4ICDV6/Jz9Vb1i3eK/MAFcxSGP1lGh+VGRDqraJsCDZxUH9VjiUduGxkA2ycw2Ig5ZoG/jlRZuqw6686jN2uSAcvomBcpaVmqoVxyu0QBlmVcjAUaIcANgRCIsNJ4K26WEZ1HVIPsw32H+jJY8QdKZ7xKJ6KohozZp9Kb2VzLp/mO3cPtceq+/f5APAOGIsmtjG/UxgCMmw1RapXRD2d6+ezz7j73wpkN+R5Jsaqu+OVQNAhgTMoTT3AbZA/SBqTjB6Jhjkxjj3nSWCM1tKbenSo8qWarc6jBlxTDPkRcp6gdbLRAmpiQtAjDPM4lJOcFaCWk15AVOuWF86fiptQfPBO+W5s9hu8S41t95ljgv3wjL2BfGggzCJXut46WDYqbr9viqKAUDYw7RBco29na0FJSlaSmZArRmn3rqKXf44Yc3dgUduDdM2e+f/S/35zufcjHwsU2U+8h6xgTNvjS0bzFaggkFK4YPWgjK1gEgWaSyGLLC9WJdwMChFDMnGDj5yKTKxq57aLID1FPgMPrj/l8YsTDxRstWkSoXVdkq28UW8prQSbdH11eUpc65vmZsY7Vhigx9BMqW6eU1o01VjiHTFPbJBWXRmwJQQOweUwAc7OvolJUteJXZVjbYLqrPHjbBIY8RMxdjEsBkoAwILOonta2IGWAXp2ihNjMEZpIVxTmWqDO4Sl8Xxi2ALIN7UcgQATCYyWujofKtcBIaHjfU/OJ3sfT5N6A/k2Ym/WUMaIHlZQxmGMg8Y80AKmL9JMY25lwwR1KBed3el4z2k1cCqZrjtlslyfiwx2kVKKvyKszPSHxo4RpLPEmXF93fK/Zdr00DLMYwtwYbISgrRpz0k0MTklBCgH6Qbl+R4UrY71V0aNtKbPdc2ycDbEijTDqdAuFzy6wlz8HYf8Fua1ZivEijsYyR1Oj72+j+uZIEnAfZKb5Xsfts22FBWe4PupQ2UiW2VpM8hzHJMetIHjTaZ9q/iia1ynExiqGqgJDjuBZxWjA2yq4Kk16qCGABiglnitVv+0XVXPZvKVCWBOw5N0/wBmUYlVWNKmxnjQkkB+89dgsvwwKbjsRrM0JyOdLNFpuSfrvvv685mOXcP+5jsyKsWNM3vVnHLzuOgCkYfTx7ijOHPeYYv5phPlfWhqLfNSZdvd/6DqPlohAoO3C1xRz6wCTQMAcKQ/Moq5Ev6QptK615u8YDNKWUmpCZVO61pUBZK1EWGmFRmk21kAJQFlIP98WGQKYyGb22ZGFkvAyvQzqe9tzW7T73umVeW2aGrXcNtvZBf7vfVxaQ/KbakciRmVI5OYnjPTdYxjH3CUvhbbsl38XfAGXf/fBjn+ixzwW/CZRlPcOYRiABgGmx/HEssYoqUwgUzNGZq3eWsNWMJKdl5geJgrl7HVAWjWPmn2VkjKI+CE0lQ1M/K5VHEg6daRtIW/A3SxqJnU9jI88EpLuU7BygL/dWAW7yylsfeEk+DNEhchACZSEYnb/bmt4IrExOR20gYc/7WGfd2Fmep87QjpaCstKUHTNmTOm19unTZxozsNIdOsEGgLI7nvp3L5h/+ndXd5QY2FCmpApTopWXJddlBt+Nll/Il+KplEnnFQCZw7bSPnKItAOwBv4ch1EdR2wpFjCUfoUh0wL9PVwYh0YtTDwZ3MMQG4m/hyUkYtCRQUUjktDit8q1tOo+2oxXTN9U5xUoi2YNZQWdJRAWJ2NM5IKyfU+6yU8I7j56M3fF6Gfc/9w0wZfb5oL9uvaiBa90ke0AJMYL5TynD3nUm4zE5C6kT1p3MYU77DqDb/LNJBOdKg+SyD+6mUXs0zr32jJMX3rzfc8sqDq4YhTFN+Wzz5zLZWjDhqA8mOw7195oqOSqaOLKOWIAqfSo+J1JCWXtOaCszBBsqWTsOlphambPIxZ9WWmetCNhJ5+98xq+tCo3NLnL0UPLPSbbSUpA77WkRCi73avfMtMcSuXBfNsBCUmIsNgZfvj05ji2XD8EZcMkoNqgk8XAOjEzrF552XVqoptTxqtvjjVH0fF1f8XI18Se38uePbZpRPtaOutV2Ill/dKK33921YOeXWQXGqnzSPOtSPOafS0ou+cf7/GLaxuYcsBkCqP/Gbc5tLpVTpxzvQLlqzxfOcfN2UYAUNG8QseRcQ3ad3xriRCUlcP0kIP7ewOfuhFqyH/0yWeewUMSPrfE1IKyLHRJyqWqbVTmntMPsWuq8q4IQGT8u/vozQtJCXX6LwS0VakEkxzOIKBsHSmIorYIrIORS6Xg5r0XcRgrca2T33jPs/ZaGWg0khAJTW8EUoZAYSvbEju2gPKbfz6gNGmtd1IgTaqi6NEX3nIw1uw1NLMYlwAAIABJREFUh0CMpLdUyoyOdv8VFnKshwg9g6ly/PBaUqCsdNHZPtTr1pirYzHO3fboS15j1wbsbariysZMkTxyKjisyTDnilW35jwLSroUkWI4jr5/rENJFpLM49mHOEDE5JHC86O3yxwGE6jv9P26QxawjHl+16RX3WfuM4csCRFLjgmUFZDGdtJhFVFLyW/kdw687H7P8MVYG/mEzhKae0vmatOzhrtJr7zjYE4jbVEHlH38xbe9tncjvhrCDNRPktrSf98y/iVvNo5fxZILzOmJfTZ47kmil1UsStIO+SoIWylTLjFzdQ6AdyR2kDWxHiuaq2L+ePp3+rgNTrtlOgmS8N6HpnFV142d5VnqLO1oKSjbWS6yVe0AlB140lWOcqdYuaHYJXbA4INRxTG+mW3XghJaPoMxIFXovGrLJVhs5IQyo7bsTaZbLCApD1xhka/5bF1RKCuYGoitEQ/HiZW2WjfClNGCBWVDoFWsR/S3AA39ee5/zrHYA9wE5GwkAH0lel/nOMrSsm9RiaZA2bN26uPLUjpLiD1Ee6qCsmwPIMuAl6PHFV5z0YL3xkdedCymLMtQADLPGSVZgMkp47oquqJhu2AC8w6VMTIpB33zvanahmRXmxkWlMWNHbC0SqkSpassCgCoq5T9cD1cV8hqyb02vrFodV257/pev09SKmV9qcWBZa1aUyjKjQ/efHk/sStjnqp8B3dVdLVTIU1DvoUYfTU7VBqYcmDV+epoz2pf9N9YGBSVUda5LjFjBYS0sUv7L+uoiLDBRBF9PRgbLCSQGUmVEqrkn/1DUJa/4XCLlA9jBSZpAJfoaQH4xIxYikDT1HXz3QhdblPbaiEXM4ITu5uE4YTBAx1SPOiiEjkgXiOGlWII5yZb6jwDzdhHIEYKKLXn0DNWZvpiQVmYIDABbaTGWC0YSSbyTOVEFZAh53hVtpEPQE5ZtVhnNkkZgrJKgjbKrraGOboeMesBqe78xWalLH8Lyqo0OgXKUu6LtqI1iarSj9I5zEmI8+3hG4T2JvMbStCJZixsJQ1EApdELqGEHAzEPj3ndUcAytaQgirqj7NvnOAAwJBiQn8ZxhksTZKeRJV5RZV+17Ykh6NVgKOfcYwHHS1DJpJBDutQ3zMAPMDO1LOhknpb+ahxXv0ik0Zb+cc6UNqVbJdKZvGcvv/RJ748WpFaF50x9FFvXETECEkCCfndg7KPveTHXhtiBqsaJvUcVElikUxj/FbUYXDDRO197BBPWihbv2gNhinhoH+O9bI3JMyZrxKxhHN4nQDWIgYAvPG+7rJ2Ty+flBtoe4+f/JazlaP6pgq85Fj4HDBmaS4uwI/1xha/+o/X+K8yluW2r5HtQpkSzZ9IAmECVweUpayf9RwB2zinEiO8Bgy0IJEpYKbaeSwAPaQ95q1om0O2ssHfeF7ttzvWT9LupnqK+V2qWlPfZB0DkPjOia94ANuS1wBpYUWTaEW2grGJuQv3PRV6lmD+k6xtxtjVyDMxo+/bBco2cAcBZTc97grvHhmbyKqUTgOdJum25KuB01feVVR/siQDVljYa66Ei2vp1MmpM+cklJP//f5npwEJGQQYDGww8QQ40f9WWnRuz2RVZlZGXCmjCZUV6JixAULAlQaZmJmOBWVDUFpC9IAyTCiIOn2iNrJ4ePKVd9231ljcA2mUxP91n/U8s6tOyCSAfYuASU0Iqmgf1mlP1X0EgrBf2aRGx0bcHjbpiCM3dUdcPcYzVm12L7cNRQveWMmiMsVMHNFWgsmdksRANgMgJ2ZMVNY+TZpiJmJ2X8qQ0NJrxaLGgrKffvqZd+vN1RhjgspzDejIYM5CPVeqSyzjsLyqrM/0u54n6QRLD5D3jURZKkKWZOjMDbiKGD6gr5g+qWNJ9iAmbWH3kR5yGYs399rD7WSaVmYUw8QetkzMTKrs3OqnspKmsuOEv2syLWBboMt2fRZ3SLDYEGOcv/37wA39s2e/13Zby9qJgbKSDQHU/POdT3qtWoEJsTJXsZwoIc3RYqUtktXJ0U2WERzmKIyXYWx85m2+/JGJ9MiJrzgYxUSO8Zg04kLWRs690iKjSMc85zit3kbVQGWu3bQDKScknUJt+rCN04Cyl4xuq/TQdqnkaJ0kWpVy3Gb3pb5jAm+Kji8wxI7DISh71D8ecngU1PnO6NxFklZK8P5sixUcbOeisKCski4pMFIL3bpO45qj5bB49T0VK0sL3Emnbps9hqauW9dspXwEBvC3Pfst7UGe1Lez7vMlNi6EB4A7SuSpzoNhSLT6GyJ9/nAOIOmvMqZh3evO3U/3+MlTt00aoOpYAmUpLSd5DzAWGxvEfoWxLzKNAHgdSxIWVnu+/woLOpIIYo/HngWNxeG8JQXKnjXssTbm64TB23g5Ohsa4/gbc2sAZdZ+NjAfYrwqMwoskySzx6SCC6kpkptEneosyWPlGOEqcUU1wUnXPeKQS2K9DWGJkJxE0XOjBAPrVKpb0RnNMQizxxRz/8I9+nrGLaFnUOAlfwNM05hFkhr5RQhEyHLJ66XO+ib3vai6nQgdlk0qDwEqerjuOqAs7VCVS6ratqitgLqrHD/UV+MpwmocjZXM8SB9XGa0ztmH+TWJkLJnVJJ2SO2Q2EiZcllJEY5PVfc1Y57zbZRMY3hNquwre9b1LPEuI2vUBcpWfZKn3b4LlG2g/wBlN/jFZX5QiS3I+YBSMkOGZNd1lnQsJolmC+vnXoKAI0TuyV6zAAhdAQVqVNHs1EIiZEQwaD8y+Q037rk33bjJb3qWXyyk6yqGQSpbKzYjxyB7NXHwwOkmNdLxYZsUeGVB2VCjScCvZcdpUlKlT3Sd6hsGxNff+cixUGEQwZ14vWWL9aRifaUBtmxQFyg7eIfVvGZkZwkLmsNm5N6zICkKgbKUJ+/xh7scUgP8uyqwXQTKqszZLhjspGrQvx52lLWkBulQ2yi3v8VuZPIz5vit3Czd08YDcgF/4LgtvUttM8OCsiRJaFdOeR1tEBDC4H3joQMqGQHIybasTCd1rfqmqUyOyQ3swTItsg8/+dRhukV/kw0Xsx9wGKCYDPahmaAsmmyYRJUxo1SKVoehkXOvWXRQKUAUTYxU/g+gCQBZNcQKb5bhnJgJsFC0iBOAjeYeGXgbltEs7bAUwCJpnanfy+kNXqwL7j8feNYnXgDh0eeNab4pCZAjF6A2c196DbrBGysgiVNkLiJd61TfChwl4fDK2x/4xR6x6zo93Wk7FrNnpJnL+E9fVAmNmUUa5XxDrrr3Wddj1u5eXqYj4guH9W/4RGhRiDkMI4QEZyosKAtzXkwnbZ9KfFYxAGybL1wy2pfzlhnXtKJvpaEu9+2ic1D2Hsp2haCsyoXxMKCKqk5IkkrggD0GrB6AZAAlwIIiAxoLylLiiaxE7JshzUvGV8bZOoF2H6XjAGmUyheFys4l2aVvKyZEuWXkqePLuHDLlRfxpmgKfT8BhUg2k4AkGdaskEHqYVut6ADoAJS2XnWxNla/dftu1jntcSRTEFbs6HmhrBsz144Ikuok18vAFrVNoCysStZTMLhj4zaADPI7lvUfaqQLzBWYikQd+uJUAZL8HPH4y75CCmYn8x+F1j+h7n8KlFU1X8/5engiRRhKbPJ3gJzbJ7zsTfhsYEpGVVxZglnVn1TM8JzlhubSMnPO3U/ycTkmgFpvgA2gZ8y9U5k558shzGgeBGP4G0vO6zXQq8ouMEdAn9R+j/QNgEzG2odgzrjrRXe5uyZN8Ylwxnx9B1WdlEukye3PRrZ78pV3vIaslRlQok7XVReU1bo9p2okvAZIQ9+76K5p/oxxF4kpG7oHzN1IXsaiLJGvuQnfB4xLbYWvPd5x14xzeBIoGBPAU/D+ePSkuBEnCSCIhAt9bTY3etDmyVul66CKFAPQLlC2kafauS5QtoH+A5Rd87BLvfYNuiuArTa0ICSzxWCJG6Pibz9ez5tstWdowgdTZjNA2Uumapogr6CQhEDOoKN9BACWlXsxaR/3/Bvukeff9Itf/k02SINF2XFUOst5UxkhlRKzDa7qTNjDsKBsONH4611POwTObYmIdFbk0l3lnunjziKavmWxr4iBBGXHlusx28VMyrS/BM9zsrFl52zm7/qAU2bBIp7AUIlMX2oRIlAWkBBGHVHnw1/EQpKeqAV7GVilI3vk38d4Y6SYmRDt0eRQjM3cPlPihswlutRFgXMyAvL3HbuFY7BuZlhQlokYZYdl5ficX2wzgCYW83Yyn9M+aTjHFt05+6998s1e64oFIAx7fXPLSpLRJeR7KO1oTbZZoMJogEn0sy1X8CVQZSCqXJ2L3keuxWq5ASK3ImQ6lgL1yIz3Pm6I696tmxt/0jaFSYBU+8TszgFvcq4R4zHeazuhbDPPCxZ2YlbruLwzRWY10lFl+9j3Vt97gLlbxr/omUgA+oD7MQaeWLpVJUTEvLjl5xu75Rb6ogTU9o9MOrp1cw4WVSxktMacgm8ADAgih32tclY0epnEVwklTIsYqAIGOG6OnELO+QFSJr70ltt29cWzvnli6eUYXOZKNVlQFuY82r42UozIWNl92TUD+iLB0mjJf9l5Yr9vdvZw98TL72Ql41TVZBlAISgrRl5Z1UJRWwVipeRtxNgtA/osKAv7jgRrDJQVCNKIzipgEiCT3O6Lrk/MVTEU9f2uy9K159JYGL7vmkMCylHhhkEOFUDNCj33GDYiicE6h3kBYClRxn5stB1ITfGtC4EQeVaUmYA2ev6i/QUk5YJFAmUxkh4+4WWfsIHdSOLQhuYgtiQenUpVUrCtEp5iEsNk3mC5Bb3eKfqyC35tNg/6hYbGAmU5hiUEpEBZVZ2lZJ9kEsjxAGVhg/LO2IBMImmeorl+FVM9e3yRMIok4GL30YLkodZ9uH2b5M8efd1vbnncr3nFHmfbHM1qmebxPVpxka95yaKYf03RMxdLxuodRY6IdhL0s7T8SWjwDqkiCg1vvu+A7IDtqWD+FKtObcU7JY19+x3X+l/Xlfuehe0TkG0lGXOvQaxUAZ/sF1uHi+UKcx/CRiwWmms2N/qYNCAqkhPzMuZoMtkMj2VlvPgNjXeqmZEjue2wjaPnVoKyrA16llgPIMlQZ22e27dfhe26QNkG7jKgbO+D/+QBjJh2jpgYLPIohbWukzLraOD0lXZ98/2PvWEFwQKUQd0LTa+0sINtpJCZVpnAuj252KkpwCrVUJWW6sNXVjYmcWyOF2NQ8XcZUGiQiZ3bgrL8bsuIYmXs1z002bHYqwJU67wCAk/+9qqe1UQ53k826dXmNlrG6AvbT0mJwEwY2GjVhGHF9HN0iyo9SA1sHLJeYNKwkKe9ADLHb7+KYyALQ6CsROnLNG5STSQJEWMhSasxzBqqnJMEys+vetAnEFJlxWKLlrElbdtg0HFtaL/FDMTC65AWWSvE9i0oy70gW17WJiaM371gpANMqjq51bXJcKsoY1v0yKlPtCiXWVOZw/LHn37m0KOCcf/EKQO9MynsJhgjJE+YtPDN9iYLqy7qjctSIWYIyQXYlamQdnAVzd2qr1sZo2H0U6/6b2Qj7CixEUMTj6pt1fYqK6XMFVYJEd4fbSsNRv232Fip6hOxk9k+BsqK1cB4Qt8QGLylQBVpllctL9a3pIjRIw1IZG4AfWMx/LGXvewQrCAW1KcPnaozmMO8ajPkjOj0lt07GWgVLSS1kOFYaKHd+LMBUQmGsnPZ3yXXkONUzn5iEocmoLFzikmIfiEVEqmwoCyVKgB3NtCaRyvwjXc/8s8tASua8a3MPTk8J0kgErcAWiSD2jMkr5Ua42xbAPOQrbKGsCEoK2biWkvP55DsqhNlkixI5mx97u2O+pL/HJEGDCwoC0AIay0GysJYopopBKaqtD03McgxMeXZ9aJRbdVzWmQ3Q6IoBtRxTr2nJIcA4RnrMGNrRlim8QW7r+WvDWYq3zSq0BTNuL5UezUXC3WlZeaaYpM14/rLjiF98TIzTh1HICASIDyzmDvGkkCqoLPfPcnVcCz7HZIcG1IH6y+3wFSd0rV6uoM3X8Eb+yA3cPegzduqsSwoa439UqCsEjYpY2QlnmgXoCwyPMyhbFC5cOqQR0s9FKpIrtjjay6WQ4aw+2n9lWPerTGT5/APIyZ5UBZCFIlgIidxyD1H45r52hLz9fBmTlXNNhlPGFesz4KANMY9xkwCMA3Q9xf/eNjxzQb0FGiXY1opgLxMxqvsHcn9PVZ5popFXVddUFYVdyQrqhIoJMWFEZz0mmNzZc1twIJIzsWibK0rxrdM2pBDYPwOQ0l1/Z35GZhQkWZz2dirY/EsQai6er8NvJRYFyib+wTHt+sCZRvoP0DZZQ642OH2GTPm0IsNCMqCnQGPrMPM3bt5gKeOLmbd5lrNRAaiLVZZxH+ow2ymFshoz1BynxMS266a3Zf2EAAKzFRA6yK6vkTPaVNK81bAmxhwsfaHoKxdhMCSZdAkM/3DDZb2u2vxVgWo1nkFygJ+034tBDjmIVc+4GDsASggZ1BmhMYx1df8O5XFU0kc26SA25z72uxtBKjYcggmygCe93y+0EVzafCOq02TjRUoCxMRDcDcCW3Y/hQLSUBVuEgT+xWNPZ4ZWKop6QDaBWsUUzuccnNCelEMvHf9YrNSfTH1A5lTviPNDAvKovPMs0qyhuc2FkiRwMYGSKqaWLDHixluVbkuTUqkE6dy9DLWKqAJpipo3wKwiTkhbSbKSffacBnPwiwzVhAToUyr037vOE8rokxGQ2zJsrYWtU1lyZRjwUZqNMSwDMFqKktw7LbMcDlr65yU4lOWZQ1ObHv4ruz8u1H+TzFQViACk0qeRVgeu623lGfuAMofsvkXWpVidVtzuNxrP/zqMQ6DFSQGKFeLhcbolFkD+6i9TKr37b+cL1lVlMmaYL6CCUtVTTqOr/YXAfHaBlYj3wfMKqieyQkWgLPNMtN0RnlauFywe1/vxF0W+//1Pu9anKNbqcVqmZGfBWVh/mmsKmsLvxcB7LH9ZbZVdeGd05aybZQUT2nM2f0FJtpFXQjKxkxTy9oQ/m6NsGKLTbaXp0HR/MyCsjLbiYGyqlyJmfzltl1VF3ust5TX0y0KJVmUkFKSsRljvOae4bOk+azaFUp45V5nbDs9F7z7R2/b2ycAYfFjHgozi3J0/AFy3+c6bUkBdSKm1JVKqtOWcB99c8qqb7SfwBSYo5PfeM+TGEgawsK28a3zRnojKetXoueQ7SwQ/YXuPkzZBbz5meRvNEe2JfIWlLWAcAqU1XieAmUPvfJBB1uXAJQd9cSUacYx/k5pP0aMMIth8lmDMXvdqmarWnkqBiqJCapXcoK5CHMSxn8qkYpkiDgeTF8wAPrsL3c95Z9/KrhI2hBW4zV1fpnD8o7OO8esniyRm6DUMXUMy1AXKIuPBYQjAjBNSQNIEr6q6vOEjcbh1L2QvivHodKOPqUKtZUh0pudn0s6heQEsmJ1QVkl66tWTCCLA4DNWv72wzdx3zjpJt8FMb8QeZbAbsW4NhZl3g3MF6geA69Aliyl/yoj3fAcRVUsfKdZc4bVxPYYWr/xvPDtIYHQBco29tR3gbIN9B+g7GI/vsjrU8VYohaURVeLlxX9kwM3Xd4vctqTLauPLZcLCwAQgxc6NLFR9inUoUp1kxaq0mas0p0q82Lxy+SerHoRqwITFiaaREqnTFnyOWft7gfOWISgrC3TFjhjM84s8ljsVQGqdV5NjPXfKrPmv5lEUX6HjhPPBQZgRaUhYprqWDHNQ36zk+4jtl6pw/T9wr6nZBAh9thEiIkfmjiAfEx6YBPvt/FyPmsvMBKQnJIsmEkwUqsGzHDY1mH5l8q8QqBK7tFIT/BcEamycE1EaTcLupzQYjJ3Hxkk4JLa7BIhC8r2+fo8DnZ4EdtMjNRGGJf0kbRduc+U11UNASb6luaAR5wjLBVX2RN61twXJrA79e3pjRXKpBC0yClj3Cnh00pJEcvujsnjiOVatQTO3hcl7kLpm6r3Tttr4RkCljGAWUaM2hcghu9zaNio3/XN4b9TcjEqGWYbSnkZG2HuhItfaWyV6XzF+kFjHWA8SchYUHED06CsnFjPfKhFVrZYE5ieMtIsun8qfyvSwdP3lVK6M4Y+5s0C0dREnqgsANZJqPCu/WyLFdtkNbQYzH1ntPiA2Q7DvShGPP6Kwyhmw14L+gR5Kiwoy/yAhbGCBdVi8/Rwi8879X+zzzzTNPqIKeZK6lxivKFlR8IWySYqdGIVJGV9WvX3KiZTYh1a3cgQlLVs95j+f0772salhD4lx8CQZMAZt/mkSqiHqXNYUJbvIizeGCgrULwR0FBgVQqUstcdzrcbMQwN+1PanTJ40u8AABBEFDE5AeakvL98i6qEmMZc+27rLuWNX5jTP/zsG/7+KOlZR9c6tx267hhRporJVu75qmwnCaNchqYdGz/85BOHNiRO6wB9NmTEhEETST1C60/+DTucd4OQHBuADOsumJE6ppIEgEEYvSKlY0FZK4WRAmWV/Es9/0qc0xYPyk6a4rWHbTA/gRXMupVtSKTEQhqoaATDyM4Nvk1ofpOcL0tm6ph6V3OkgthH1VcQNa6+9xkHWUZaufxeRHrQOSe98o7b9Kzhfs00c/eZvJluVfOpGPFB74Fd2wCmaT2v80tWhTbQlpT8kgVl2RetYsgsrYzYmgtQEHaxNHHrgrKa6+VUINlrlJwbFXf07bKfezzENOIlb1HURyld5nCfMqmBEIfQ/kXEClVuFemrq8oUJv7/7r+BAxTvAmUbe+q7QNkG+g9Qdr49L/A6dDGgxIKy+2y0rEOzq9dCc7lhh/Z3G5813JehU5LN4rbVYfVYAbVYzLLACDO22q6MPaL2anJeltGJXZ8WieiSLT5PD182VsRKw1ANEJNIOfoK+Cj6kISgrP1g7njBnX4iYDWCZf6VC1Tba5XYu/5GmRjZRwUT5D0uvsuXkcEwYqBOTUDEPNG+sYw5v6l8iH+ngNtWP2+x4ysxkHL7JeMHCEYJDYEhx2nfWd399PL7PbuC9wRgvgjYKLquFCgrwCE0RdNAJidYjp0acPSu5xjucBwmSmTdmQTlyn6ovPTuozdzsGubGRaUZXLL4iHFioNxsu7gm72LbaO6olq4FzHbi65Tukz6/rTpeGWAMlbzUaY8ZHvJYMMW5n1ngVGW2BC4U2Ygou8OZU2YBrYixBRMgQoDzrzNayMPPaS/g31RJ6QBm9L1rnpMsRvCxVeM2W4Tc5xHZXahYaXaoBIs/jsFyu5w/kj3wOflYxyH7+/ZN07wju7oyiq0QLLGErnXGnPHDveljJMSwLLnSDqaACaURCoo+aQqJxUChsPryrkGFu58l4vOobHzH/tv4HrMOrPb7jcjfDl/jr6sdewGJCIhtMIiX/NsfNhSuYk4C2oCrheFKiR4jn/Ubxm37EJz+cUv446NFCibeub0TeIYVZ8VJYVhUQ15+AUPiDRSiZBzb9lGCd9cuYUY4BqCsv79PPkmP3bXde1mXsS8uWxxTakzDLQUs8mCsmHVku0jlZ428n1sqzYrkb3hvKGxbpt2owHXcu9huJ0MHWPMZ1UhsE/Yt1b+atgh/R1VI7khpjHzzg2XX8jxbZV/AMms3+2xlh9febcBTVsRkoCIgW2YbKFTjHfAZXc/7Rn9/Lf+n3/zP76RZSZtddpufUaO2qbc/E6gLPJQrA9IOu35fxV8J2z/hVGjNfi0RpIqRaedVKDhd0DIN4Q5yLrLLuAZnSIkcCwAexjqWhdZUNYeJwXKwnBFmi4Fymocoi2M+cjBUMFhg7nnsLEvlEq5yIy3TGordq8kdRfT6I1tr2c717gQcy804Jk/0ocAqlQuSgc+p1K2Lfk1/xzug48+8VhDHfmy0I9Cc18IUefcPFU6QmsbfYP4m2Sh9F1MAcJKKEOomalbN782SK3R67w3sX0E7luJPplVCmwuGzeK2lImpxjblyQv6wFJp6iyNcbkFpO6qA3ZoOzbHzj8NVLGeGKUh+cqquykMpTnpgiYFogPCe5/9+/n8JvoAmUbe8K7QNkG+g9Qtsfu5/sB/aHjt/SDpg0LysLyg40ll1UNaO0lOk/WEfCJYDAeuPpifoBX2a/aLd3WUGs21U1iItWZZCmjClMQxhw6PzGXQp1b4Af/nTLCkE5tEUMlBGUtQytmyKLsMWVPuHXmshQZmGB7sagkUm1iQXTgZfd5wBGNy7N36uMXoWGELLEU40lsOPZPAbcNPPa1dxWoXsZMorTosKse9JlZG5Qw0Zc5rqWxRqb0+jSQ4x4Je0YhUIh39JHJb06jnxceXwuxXOBeE90qTFOxIeoucItunAVl0Z6CPZwCsbQAzk3cFJ1XjFXJCFR9uHofO9RPAHlvYGMxKUIWImfCq4kppaJMaJhQDjmkfxszgQULJVIpIx+1VQYiZWWgmrC1UnOrCDxT+SbXickXfV4nYJdgksa9k3lIneNoHxlQhiz0o//5sO9/9LhZNBJi+WhfQC9AZquXZttiF6yp5xmjE0yJiJ3X6umWXGAOz9wJkz+5TNZYX0hfs4hlo4qMcEwOj4eOLIYsCumDlWkVC/iMGZiV3T8lO+29CPeRUZTYNJr/5OjLIhOCKZsNgJ2/3/esQ9YhpRkctqFK+T+GfpiLhsH7sfSCc3qwarmF5/IlwwRzPEBTmF1E6j4JxGUbzffK+le/W6bv9Q9P9gDK6l+fxzuutzLanJZLjEVsG9Y/dSp4o/EoBspqbC1iuxVdl0pvy+aXJHRpz9sffBzV47WgrBzQY0xZmE181x47eZuk8WjZfdA8JwXa2/1lRMh3B+BNzPAiQ8Cy8/O7mFOpBbXAf7ZdeoE5PEipEPuJ/w4lXMrOraQI5bo95+/hKKtX0N9X7beBA+wA+C3TlWXBjwFolQgNPMN9Nb8XIK4TAAAgAElEQVSH/IDUWSqsU32V85dtK5mrXFkxgbJU8Ky06NyeiRa+C0o8hmZ4Yi3TJlumLI8M2HyMR2gPW6M86a3q+bWgrDUSSoGyGLoBYKZA2YvveNLrGhN8F5CDkTa6+o/rvXvSq54cUFTVgzQR+8eMtsvuhcbRXDkfGZTlgrgCnxlvr33oeW8uaA3Mctqs7zIkjBffnFriXgf0krwFJArWHEh32bDmoiKv8LtkVbb8n9u9TGMqSaM1JwnEPj3n9TrFmk8zjrYidE5rPqrrpJISPeZGQFkZj+eOXXw3Gfv5Bj10wlZeV18Johh5xSYnUv2Tm9SV1ECqissahNtzFVVDSq6jSIKJ8ZYkNHINEFpIBNZ5PlvxfMyox+wCZRu4c4CyH33nnOSH0oKyfKyg1qs0kYkfrCXAkPZw2pVrM42lHG671Rf3rothSb6YSDkTSo6FTg7ZkaqLD/bV4E3JIg7LsdJye3ukwcnfQsapttN1Fn3MQlDWsklVympBdu7Vd347lU2VuzikPXaxz38XOQQDHgy+YaprLMEC++iBK08DnIixq2tNlVWLecZ2dUpVG3glCnfVZLDMOEkHgfHL/WQCb4OyGMpjqkZswc69XfGYG/xAOv6krb0hgkLb67+LdP6kXZmrdyu2W5n2qb1GLYIpK2Ny3MywoOw3V1/Mgz4wOZiw2mCgXu+Um/09Ccsi67YHcLTIcb7ouGK4sg0Mgh//ebR/T3OMGATKwuyD5ce3+fzd+vqFMQmA3ovN7TA+LNOnpMwTs8OUnpPar0leTtvq9qWSUrHvlJJauc9oURuQIWGRYaVf6rRZTJBYhj9Wbq8xFbCBEtu1l5nfjX7y1elkeGxbxFxMgbJKDrLPARsv5+aYbWYPyoayIgJWU/q1Rdefo6+pxGmZyZCYTjpfGVtY22kRWkcvk7JZJAZSfcg5xMa5/9gt2vTkxNwGWCTpdfGISd7AhSQ1OmgKacGzmML0Ap1mG7k6vqlqiNi9sfrELN5g+MACTwVzAuZMPAcEyW1Y72GIjcffU1UhqXOov5BfYCGPFBHR6oWOWOAhQFf0TEsTTzqWMVBWlQs5pjaxc8X0EFNtwqiRkmG+3YCaNulkQVn8CACaQlBWeoApB+vc75uS+JZVmNqXd4p3S3NDfVerMlTD40vbNQY8s63YjPwbZjjVOgoA7tU+NwWuOq+XdMD1P93IffrZZ9MkPeQDIYmdMokIxtRzdl3Dm/rmhsbiVOWexmAMCzFiYtxBZkExfvKb7sZHXky+27ntiG0nsB4AA+Yc4FhZCJTlu7jNaov5kvtQ6klJ4VCGQoA/57DsWsmbMc+jb4//97hpfuf+o20MUYa55uinpnhnd4USsSlQVrr1KVCWBChrI6IIlJ3w4tue/V5UqSS2qzUgK+tT/S4CUs58yMod5HqnnHfbxLbkLqSNiS+97WXXAAuJkAQSa7eAsfnmmNW99u6Hrq4eMvqq3Hd9hzX35f3mG2vHGDF8+ZsSj5L3iq27kY9hbcIadsSRU80WNZ6TQLjupxv6Z7bZoe+IJWCo6gmmKtrFjYCylqVO0qwsJG9hqzVEpIlJqVjN59SxZbRWdm6xWlMVwhYTsMcqApyZX+PZESZ77P4aKwCg/75/Py9P2Oq5SllfzOi/d4GyDdzBKqDszmv39KU8VkdWpUvtwZY9+fovAD+kC7ZfYwmvkxqaI2jikDOhpOvkDlmmgxfrZmVMASBvHf9SoWbN/2fvPMD+KKo1Pop0QYj00Ak9EGog9BI6CIgUQbCgEQREVCAkCAImhCLFi8pFsHNFEIVLJwkQWgo1dEhCJ/TQCZ17fxPej8lmy2z5f/Wc5/GRfP/d2dl3Z3dm3nPOezhfm2L+Oy0ymb+r4mheZEWSlFVBhjwvOzIDRALhDTt2p9U8aZpnyYgujo2JkKMy6s8umei1jiAeIQJJDcAoQEbEkiwrMmqlodf4BRUW6wWu8RpEnyrPvaJCYk4E92+dP26mqNkxR27p00LLWlpqKwslNhJpk1+SlA3JhuS1ldIdM4ni1ew/bIYA/ISh2/iNQYyRVgYetw3eyhduaNJCUnav9ZZMTd/mevqOVCl6l9XfUEag7D3pXM6DJMZ7zjONiTTSudqgcU+Dd1jVO8sgJ9CI5JtTVERCkUVFutoxFWzL3n/yeKVHppEr2iSEunBVr6cq92DH5quqyQmYlrJPYSw0gkOSUmQChWQkOcC18/S+Nz3lBgf5m0Uosgnn24CRFvrO+x85NiYQtGwIZdqEspklEqyMxehrilQqej5K6db1mb9Y4BfJSZA2SRRUmrOl6F4U4ZXnRErTa+Td2OU3t3qyk3RgyHSwTWKoTQOFwXi2OHuP+Oc9XodPFqOlp81gmoZb8h5DOSAis/ZYZ0k/7zJWprz0tnv85bd9vx9/+R3/32TJsGYSKZtVmTlMDS/jxKV/eq8grCAO2cxjWU7ooucW+7uihsus47RpVaRSGilLRBzrvLBwUGyfOK4MKcv6jdRbIsqSMhshKYueJ4RVkrAUmVpXD7EMKauoRGkvFxVqjMVOqetZDp6wAGLyu0H6Po4F2a1Hb+W/LTGmtSeRxszDvNcyyaZIXitPV1YRghDrROtSKBnHbZHh0Nntt7dlRpereCtreNYyKmSkdlVYDifQ3cdt27b2Lrpu0e9kuUEi4cwmKOH3+60bdT9gSCQsckoUd1UhuLA4sfZsSV11zZ/0LcyOEBnJHgm5G77tyTlHmQtoTq6+xFfaairQlhyxWaTsH297wteHyCJlQyk9SKE7n5zmHXWhQaq9xHt8zSO5uuSKXg0LnBU9C/2uKD+yrBiveYW7VBisDMmntRjBM6MfetHPJWiFE6WO4bgo0mwOHSScE5vOnsRAznqKQ/NMiZRVIAT7kRseedFnCWHh3lUR1nnfJZ41zzzMHOEbguQBY7cogyf2eSWPE1EcBodIQkm1Ico8r2T7+k7FylVIBi90erNGfe/Dj93aSy3oKIYVmrIr8+4fuctRP9u8ECKR91mZEcpiSjYkEj3tApoHIFyJ/E0zaQkTTXvpjzbyz9xI2cLHlXuAkbI18BMpm6XDFUbK7r52b18FGs8kBTkwovS2OeMmryfKx7pIA61GV73XSBUvuQ4fWzYARM0Swi5TNFXswrRoEZTXZ1UtVwVtjs17oVURMS9qBlITT2ReWrjSHvAq8TFT5KaIqaxICXl4IV+u/cnmXn8uzYi42PbMMb56pYpK5BUeS7bBAo7NJR88rnHJQRv5yKOzRk3y+j+qbp3UlqIdbYzUZmyhlTpjK/ZcbUCKSIdke0r71t+nDN/Rp6uXtVCvDxIH0wIk+R7wW1ixsmgxpEkxz6uo/iqSoGyhpDa9uc+80WXvP+/4kJRlXLGZTi6mSImkDxD+I3+6udfHbsKWO+Yq72V/4uSdojYq4TVDUhZ97mMuvc8XfokphqZz2SyyAGPx/K0Nlnabnnqjjx4iooUolJjFs1Lw86IolMpUlLZZB1OIiZWOvdrjmYz8llMiTPeqei2lXsUuWLOuIyIyrVK5MiPCuUgp+Ip2U7tp769+U3RUFikbkpxIVbw+/UOvcZe8N0XuFhV+y7pXaUJnRbqjY8s1YiRnVvnFNX5+wbgvou2K5k9tnqqk5soZk+WQlDRG2gIe+YHtz5oxH+621pLusnufnUU3F/kQNnBJhxPyFX8Z+6Qn56TTljdmpeEeo9UvAob2iqLhdU00f9H+xZKFIXWMiBP+rfTP2PeMStgqsggpi8MAy9L3jm236DitrcqQyLwjRJlrEyqSOyT5NNdVLexUhpTlHrX+I43z9mO2bpMgCElZacQnSVkVaUn7FhXhF/5ehpRtywb4rACg5B7qarWryFBWlKGvrH7cNX6eSK53FXWle4qNrFfWw8LzzenuGDqwLYtO7ciBJ0I4L3BCes86F6fdb/dbp7CiuxxsyQLGakcRg2RBkIWV5oSQ/uLpe/bzDsG6hvTVnr+/3es2Q5zybcojAPOuJ9Ip1FBV5kSy0GgYkRoWShTBSBT/19ZaInWtp2AbIjOP/39HJc5Rmb7DWaSs9nVZpGzoEICUZb+D3EFoRJSyziQNHmcZJFuaCY/YFPNkG9JKLTpf65QsR1xa30ROH7jJcu7GR2YEHRHViWMAS4ueTLYT6jvzWxm5s7AtcREUdDtp174zkbLJa+qby99VkE5O02QhRYht5jv6icQOGTEytILR/MWKpBrY6zIH9Vlkvsx9dbKfWjOEa31lbzBfMmbrkLLK7CySk1K/5IyNdaDe+eRrXl87z9KKMKYd30agzj27D1hLWqgTHP4WalAnz9Gajn0QuuRppmhauJRLf7Sxl34zUrbejGGkbA38RMpmhYyHpCz6PXhKk6mPpMdCjsZ6RKp2V+nSnM+CBZKYBUoyYkXFRmJTNKVzmpUmlddfhe+jMcoGvCjKUClZeI2JmkmzUQ+/6NAOJaUT72maiZRFA5JIHIg0opWJkmExmJdyqPRI0j7wGCfTMoiI+tp/3eo1SJGs2G/DZbw+JwvVrKrbaX1kgfv1397mN6pagEnXj8UsqZdpmp7aEKjN7268rCO6qTMYFc0hv2JIh7C/YbG0stWsw3bSSFl5kH++3cpe6iE0pZLyN6XeZeEYalcWkYta4JQt+KSIv7DCblPPNSRliRAMK/LqGqS5MZaLsCjbJ7z2vHtVyPaQlEVrGDKZheJDJ25fqEenc0XwQchtttLCnniGhP/0MydHTKSQpCWyPM9lxkdZ/JLHS/8rudFQZW8i/urqfCkFMmvzG3sPii5II0wVxY5jishnTGn0fEPOHj2p7TJZqeQccMAFE9zNk17OjJQNNXIZAyxwSfVPZhlQiJJo/3CDG3ufHCddL5yyaSm5KlyRV3xB1ws1wtBE/8MtU7xzN8+BoPe3jGSKrqciJ1ma7+H3g+9T0rTO0d/DtOjw3Zg0bEeH0zM0njNOgKTkQRr2WufEFBeTI412YkhcjlOkHf/NZptnlTRtFvl77IZObSiLh0js/9zzrJd0wmLuvcxYTB6rdVMZnfBwo897I+1JKrpfNGhDfwnpJCcLysb2VdFmRZqyYXv6/oWyVCEpi6MakiW5Zj3u8gdmZFrtspqPHKxqZUhZpQpr/SGSqUrkX9hf6eEjg0HQQZppHZJcU0mPVuf07f0VBxlTZAroELEfkjucq/mINXKRrqwIRb4Tz7023c/pZBT95pvr+D1UloV7LqKlkybNdcgpHD5pes1K+y+qfVCEB78ToAHRDnlBWvM/frBhZa1i2kNyATI0rKugDDQRaOqXSFP+zfeEvR6GkwyJJgqw4aCAwP/BZsv7IlShaY6BSObZyiTrk0XKSpIji5QNxwVj4u6nX/N9CI1CTRDC7LfyghfURySowLesaf1RFMkvGZaw/kjRtZS1CcbgRz0MSWVx7o0/38LveYssXOPGZrAm22T9wzqIZ8ncGEbKJo8lWGyFITMCJeRMk7MoKb2FzBlrpaz9ttYNRHkT8UlEZZrJEVImqjYtM0fZjTiS+LbWIWXZwxMhnMc36F4kIYL2L4WYYyxZuBtH4qvvfOD0/7SRjOTPalcRq1lRrQoICM8vCiBSlHaeZIbWUASNIcfhNdFH7BRz+3ZMBgJGytYYGiJls/SLwgUCCyM2DGkfVYWWx0ZrVOkyerZ4PzGKeH197d6ODQBkMTozMkVMhAvrvOvJGxZGAMf2TylWEjHPKtai9vDcPDj1DTf/XLNnpn2woeZjyscfojXNRMoSxULqT9LyNiY+LeOMMb6QQtpCRhFFTLZU8CWqt6qpsug/Bm3oI4sUuUmaNZudtBRyRXvomnle5qr9qnpeW5GDnVYtVdk2FJ7PI9uL+hUWUdFGRZv4tHRXRVXQbp6Woq6rCCmiRCDh00xEEwUsqA5cZnwQwQn5gf5bskJ40b0X/R6SKj/fdiWvIRY6ZhjvyCdAYFEUpMnrK8o0z2ub1f9wwUqKHsQ/FrMw0LlIyhDxTxQD7y1adkR7sZFiMxijIaYNbjJaQP2OSQUqekaxv5MpQMRYSB6y2GN85nm9Y9vnOOlxxhYiyGpbJESaRIRkIUj7euSkHXwTyvgItdn4O4UR+VuaHX7RPb7Ked47rDkYcunN9z701aOTEbGK2K+qAa8oSPqZVshRG24K/hRpmMlBx/0SFTLqoRcdmmZ5UdA6J+ZblsRRzqss6QOlv+dF8oj0om02aRTYw5SqnJV6J4mLGMevnhGVxllr5ZkqB3NMUSSP2gmzNpLyFjom3ACFBXZi3i+tTViT/fvuZ33xTyzUqYtpp+wxIlTL9Ffko6KBiWqjMA/OZ4rkYSJDFZFIquzV90/1EVF55Brn6jvGf5N2S+R6jEnmigw2ipAxrkJSFucrUi7J8STCPZagz+pLGVJW8g6KQE+u+WLuN+0YFQzLi8ajwBOBEYpsVTvIP+DAY6PNfM/cFeOYFBm39/pLedJQax21y/vOe4+JhMkijeWIwfn2zQ2W9vIyFFr042LgSu4nA1dMhUbZZJJKyPqOaQ2NVAqSKaER0drvl9c5yOMqle5DHJFSICIfcoWMNwiOOpaWUq1o9GQGmqLGuV44v4rAoS/gBHGWlv0Rnk8brFW9/MLqi7lz91/Xk8PMWcm5VzJrWaQsmUxobWKQsvc8/bqXkgiNgIUlF5zHOzLzgmSkIRqjz5qGuyQeipxGaGuyHhx5xOaO6MUYE1m+T/+l3Lgpr3oynD0hafdYzDvFcSo+yH+X+T6HfZRmOOtbAprySFnOo2AT5Lkc04xj1siSF+IY3o8Nho3yROIfDljPgWHSOAZik/ViXvFwFehClo1smSLL0jvV/lsSNaFDv6jN5O+KUiYpE2dxXnam3sus7Jm0a0s+Q78xR0LusoZiPYXFygkVRbWiEQ7JGloRKav+sVclyCXNtK/AYcY7iERbzN6r7LPoScf3KFJ28uTJbsSIEe7UU091vXp9Lh4/ffp0N3ToUHfFFVf4Zz98+HC35557Fo4DkbJZEZ4hKUtEEeRSGvEogehWRstKj5KbYhG9x7pLev3F5EdeJGtelegQGC2A0zQBiwAMheg5No3kLGqjyu/a+LDxZROBsYE7aIsV3AtvvOcJXYjZLFPELr+HaUSKMibS58rDNvXFz+pYcoEu/SSRT2lE+ND/3O8YdyyIWDSlFdCp06c655JOwiIo9PLHtBdWCs4jX4rakrc7LDCx/rBRnmAPNbrUTqg9nEzbSbuWinSw8CIKO81EbpRJg1I7aJ3iXYUURTO0SQtJWaK/2ASFXl+NqzJ6wLH9U7EuFZCIPY/jQlJWEa95Gkhh2zqXdwSyALJ79tm+6IsW4GhjM4XFLDK0oc+K0JNXnOiUtEjCMvdcdKxS7dgMENmBScctNgOi6BphdGmV56b2VVgxy5GhIl2kT0EokwVBVB9OFAhaCAMsz/nEhgSigagJxnSaQZiy6Wfsox+Klh3aa0SGykTc5r3febjRJpF/aVH5RLnu899jfWZEXkFBtU+U15D/3O//STrppBff8qnkeYUdFelLBWiyOMqYIvqyUpkViVMUyaNo7fC9UqpsVjSkNhyk/D42bMeZCjgl70HyAmHxj7z71DcgtmCdoq5p84htVvJZH0lTcQ/+noxeK8JcDgRIiX/d+ayP8MZCx0RRG1V+T0a9xrQhHXVFEmmNGabeqzK8CHdF2LPRvfrw9HmSd5WIJ95HiKDf7bdu7nosra8izxXpFZKyRNAiFZIkZXHGUSiqqma9+lGGlNW8+qvd+no5DI3fGKdC1jMKv81oZWY5fhWAkSRl0a3nWUKQEC3KOj1G8kROd0UdhrIwScmxouh3EfyhNnBYkDErspFvIt9G4ZnESJF9BJ2Me/xVl1XkSdrOMfUj0p4DEWQQikRHMufjrCWjsq6pDkkYkCEsk0S0HC1cM5lSre+e3oUsGSKRkbShzEIRXVmkrOamLFJWzlbahJTl3URaJzQie4nQVkRv1popjSwsgzHPZ8vTb/KOG2Sl0kyyHGUk6Py93f2s+9nFMzTxycBkDcgaE+IKywveCPsRFrOtkzGhZ44+6JqfFfLLWtsKV42ptIhkRbPDf9zwsy0ypcdYf+1w1s2e0MfpTZR60lQgkL/HzMX6tiS5F0Unq/hpmQyLtGevOa1oThBeMVr24XXC/QukNTIX7OsnvfSWdwLEylWIQM0ao2GdGV2/iJTFOUVGQ5Y8J+1ofsfZ9u9DNnZkc8bsl8q8oz3t2B5Byk6bNs0NGjTITZw40fXr18+dd955M5Gyp512mn/uRx55pNOxRx11lOvfv3/ueBApmxViHpKym6+8sI90zEpn2+Hsm70GU9mU5tgBG778LLT2XG8pL96eTEWWllNsRKI2Y1VSfTRp6R6yPtix9xh7nEhZUiXwMmNlNc+UasqClgkJMW90ZFmM1U1/030kSVmRcngl2bSkOQN0zt8O3MAdcuFdjg1tbJpMLH5Vj1OkKhrGaEDGWigjQAROGRmI8BpqRxHpRSkfKmTChuLhk3bIJQO4zj7njfML/azCUKQDbXjyaE8QFRWPSsOGxSOLSEjZu596zafG7dxv8Ua0XUNSlo0QJKMmbTZpm5wy2nuKxxy5ldega9K06MzbQGZdL/yusYiH4Imtnh0uVOQNf+Xt932U0CLzzekj+IgWosBbkembkqV7CcFAClhsKmjR9fJ+l6MsTM08/fpH3Tk3TG608J9IyrDQQpl+a0GX54nXYl1FnvR9QwKAYiQs+LEmnQXJ4ju6J41TonaTRRti7lsbBoqrhKm1fA/QvWW88cyI2mQhnGfScucY1gwfffypj1rKK3gmoqOsU4xrSO82TAkP+ydt7jwZCY5XBA7/rWKdNzzykiPdOm8NIcKsaKypIvOF39/AF8osMkmnkFoZo5EdykBlRQ2rr1XWFZ8Xz1rbO4ylX0tbMYXOiu436/fzbn7cR8yVcYyjS4q2MfMjGuOQDckNHHNen6Ez5Gl4b359/aNeOgBL23BC0HzvT3f46CvS6iEn2ViXNaK8tj/7ZocQxpijtnLT3nnfEY2F4WjhXkNStkxUVFFfypCyVKGH3JBm8Hf/NMFHR5fd3Id9EllepIOvKKfkHKe1ANkwJ+za19GnmEht9V31MZQmT9+SeyQFf4QyJuE9iJxOFsfVOIXYYb+QNKUvZ9XoEGEoCbCsDD9p08ZGqoX9gCDZ89zb/X6OdcRlh2zS2JpJzoWwOLT0g5Ef4P2VhQWbkkEH6/1qpHdEUz8ADVhJEiTxlG40f1d0Mf8N8ZJFyipCNIuU5Xyt2yBlWRtB6IfGHoFUe3T488jQrLT6onc0/F3Ec5ask4jwLVZe2Kf+x5rOI/AJHV/eK+StBv76Jk9QxtYWCKMc86LEi/qluTHMMioiZaVJnVZQDf1Q1l8xkg6KnmauYB7DURFaOGdmjcXweOkSJ3kKFb3rt9QCbuIzr0dHmmZhJ+ce2RM4VS658xm3Xd/FfBAX7yLZNnwn6b/ei6LnEP4ear2yLiR7mMAJ3k2ii/OixMN2RKBmraXDfZLOKyJllUmU5xCW1A3fOaKowcFI2TIjYNZjewQpq9tOi5SFhIWAHTx4sOvTZ0bKVUjS5sErUjYrrU7p+YT1s1lJkwtQ+6qIyQsO6VKhjlFmV/XC6gBeejaxpIclIw/LasTi2aEoVdkJi74k02PCqNN6wzr/bBEoLGCogMhkmRdhlNYak+pOZ9/iK2pC8iHqjnB3bIG0mPsTyacFJl4rniVpL3zM01KRlUJPMRlSOdDyO2m3vo7iFR1tVaNAwojVKoSC7jtJykoDLSt6UKnSscVPFF1B6imyIEkTWUa03rhjti5d1EokGIvHH/39Lq+HXGeRFvYvJGXP3nstR1q5FhmKsKtbACVr/K36i2sd0RNVyK5wscHinfcja6OXvH4YgaAIVqVu6thYTSrpdWbpgdZxXpV9b+VsCCMLFeEXRomXbTd5vJws6L+x8ShritTK2/BrUYyTiU2anJdE/hx72f2+SAimlNmyfUg7XpHGob5ZE/IPIh/DaFKeFVEWbG5Ii7z0oI28M6TIwoJuzD+kerJBzdM/kzxClaJRSgvO+t4odbnIuRmSsnIWxmzi9e0u+v4rLTrW6aU5Nav4WvI5hPrmWdq80v7m3GS0ddFzVco+MhT/vOMZx5yhwp5ZshdFbcb8Lr33rOjfrDbWOWmkozCUNPzSgg7kTGbewpGC4192yjfW9NHEGOvBI/810TG2IcuIGK8TXajxjgOY5yBS9oSvre74Xofrdulc1kl31T2VIWUlaaI1QxGpGPMsRSgWFZmTHiCZYROD4jAiU3H6X3fEZm7tE67382pRZJ+es1K8cRorKjDpLCrSlZUDOumI0Dc0a51dFDmp4j0EU0AoZMm0MQbX/dVIX2y3jFwU+4Jv/mGcd5oTfUlKb1399vCZS+eRWhZkqGDSyU0GteheOSaZzaKsLtapFArLCnZQ1DRtMMdDdDE+eC6QqWnyBTiTcADmkbLap0DKkqpNkEtoWqdofZeVjaMinlmyUTHviwqgZskGScc+lGWJaVd62hRgu//Z1x0Rt+zdnn9juk/9J7s0xvSN5Vi+XUTLVjHN0byL1z74gm+iiJRVgBFFyiFCJfMj8hOHDoR/srZKWv/gCeALcHRcfugmMxW7U5EsziuqLcMx7NvJfEzON4p81vXT5EnKYKdnz7r+9imveI13shThaLQfQ+Lh3DFTUrOgi64l2QaO+6991/FZWnyTkEPAIRvb/zSpL11bztNkX4pIWbWZV1hd+yUcqHzriCw2Urboqef/3uNJWYjao48+2p1yyiltpOwll1zixo4d64YNG+bmnntuj+Brr83Y/IVGJO2He5w1S/EuHTPpxbfdHufe7id2Bi1aOhTYIpoqzbThjKkyXOaxi3DROZBM+/Rf2qd/JidOVeZEZ5E0tCJTWmyZAhFqU1VD9e+Yis36yk0AACAASURBVOlF/Yn5XaQsC/U7n3rNL6CyCpjktacFNBE2kLMIdBMxwkTVhGmzSno1JASp9hgfvT5DrvYTe1gYReS7FmxyCuRFTzXRz9g25NUuq/8UasvFbrbT+iTSVJG6KiKSJS5P6hHR3FnagclrSKMta+GkqJiqFetVKZaiR7v/9lYfBd1UOnpIyhKJLd0rPPuQDFjRpix2HCSPEzESU5wrPDfUhAz/HqM9yfEhKatNXrLISWxbSiHM2tzoWwdBwPhrtSntShtkRVvE6pjF9E/Rk4dttaIjghIjRQ+d2RhToce8FG9JnmjDpMgC7oPoGuYfjHR80vKbMGn0hYWcpJkaS/in9SNJ/LCB3+vcsT7iAqfAf360sZebiTV9D3DakfpG5Hee/plS46usL1QlPnzWYT+lqZal5ahjQ1JWxVl0brKwWti+0o6zIuR0rCKpYx28OFI//OST6A2yogG5XphaHfYVIgpCCivCI/msQ83k/5nwtN8IqxBqVmGx2PGSdxzpwziWy6ZrixTh+8kmMk2vWBFaRL3+4C93+igxyHWK7CA1QyTrb0Y/5tDDx+qk6Ib3GGpX8m1AKgAjsgtHY/ht1ya/buFC2i9DykqORZqMcj6UzSYK7xuCAJmkoiKvWTrnirQVQa31Vx4hlCaZ8Oxr033wAJamWaqgA/RJWaOGlpWVIJ1aglcgS5OmiLuseY6CwmQByfLWT5KWiA3YAAOcNjj7iS5jnZtV16LOO6vITq3HQskTgn9kkgpJi57TdxJiEOdoXvFd7XMgZd95/2MvHwRpOv2Dj1NJWdZQjCGI76zsA0VZQspSJwTya6Yx/NmYUNFEiielSQ+pVkpMynsW5oq+zlqHqF5A2b2H9sYEZT38/JuO9wG9VGRBylgo+VPVAc71wu+hrl9Eyoro17uq+iYKsEmTYsq6N743yFHgDErO9QrM4L2BRCzS7lXkbXI9wDtI9ossNqAmq88UNsaBt9Mai7mr7p9BZEseTfO8ou6ryEKF9VLCYnVaB8RkKNCnMGuFjMPQ9J1P3mMRKZvXptpC4g25N/gtImX5byNly7zdsx5rpGyKzmwaKZumMXvvvfd6UjZPwBrhZjynELNYnpakFnNNR8uGelr0gZD/ffsv4yfUpBafjk2rSpo21LI8VjHDUp5Eji2r1xPTftYxImWZGJ585R3vNczaYOVdRwtqHROrY1em7/poQwawqZcQuibqcPGpKGelSMvLzcd34nHblo7MVD/x8JIGSPGjOqaFWNk0TJGjXLtM1EKyryrcpUq0ShX99V79/HuQZnhevzzXl9oKVOTdPxXCIefSNuJsRPEGQySWvX9dU6ncVFhnoYjleTHLPCtFtZDyOPKnW7h1TprRVwqi8Y6XqYpa5rocK8IwpqBW2LZ0lLSQ029FEUI6TgtB/q3FHWlDpPbJ8ir/hn1RanoWOSgCsknyMA9nbaSIuFt76QV9xFJTRb50XaXnEa3AgnSbM27yC+4YTVTaUBRCnl5hMm2+3wnXex1ZIrtIQSaaEKPCMYXNmrALbn3CUYAnLJyiea6oGGXe9ZOLXKXCV01xFUH4p++s79cgLIhZJOO0gVDJ+v5VkUj67Y2TfTXjrNRCkXpF0j0hKSsiSgXI8s5VlgHzIFFRWTqZyYieJsZD2IaiffjbGXut5Z3aSVORJf6u9M/Yfmiuo+0Lxz/lI8HBHPxjdf6T1yINEltw3jky5zEiWNEOjUlFDdtXtLz+ljb2dE+QrWxylVYfEtw6v0oUdx620nHGUU5ELyTRibv1dRDFISkrvdIy8g1Z1y1DykqLXJkAWpvmFewrGkuSKQkLPaadk1VdW84j6TEq8pYILki/1ZaY3xG0EZoKCYWFesIoyzRpMkXfk0L/y6+t3tYcz4nowGQELweEMhOPnzxrle+0YIWwn8m9UJ5kCg6bb5x7uycciAbMM2Q6IEeRDKCmxF8P3CDa0VP0PJO/KxoYCR8iyrWuTWZoaX/Fup19wkzv7d/v8us6sjMIHsqLkGcPi1zO2ksv4AtmEsxAXQuyM9IiZWPup61A18EbuQemvukoAhmasgO3PfNmn8adJVsjwjSm5kNWvwjKITMsLUqe8YZEC0YmV5nCvPoOkEXKPfA+UHiQegVlLMy8qKM1zTUVGMN/f+ELzj2R8g7xm8aY5jg51iCmF5xnDp+xBBYEUvGexlroFAmLayoimqC1/9zznB9f7KOyTI7cNCdxKIVQRVYxvKYy3JL9ALeNTxntn6msStAKjkmtYUMtds1bsQXU9V1M2w8mA03U3zwd5fBbG0blJ3FAgx28kYwjqABewkjZ2Lch/TgjZSMjZdPgk3xBKLqedhwfZDYLCDcXRd0pnL3JxalSfrQwZTG67wbLOCL3ECE/fc9+bd1WRFCs9qFSZEjRII2yjGmxxzmxgtZl2s86VunwRCyuueQC7pHn33Q7rLF4ZnGmrHZCUrZVUSwQEJBxfFgxkeXyEIcfchVOC3WCtUGsmt6jCKW8Qjqxz0Re77SiWnltaMPIMVOG51fBzGsnmSpYtOCLvS8dp/SgtAqcIrCqaJSpffWX94yoX1k4Bsr2WceHpCzRsWEFcSb624/Z2keCt8IoOkDULwUI8ELHmgoA4XSYc7YvetF5LPZbpCJTnCN9SG0I1YfYwnL6DmbNBVT7Pv26Rwu//7H3XnScNrxEKPFtZeznOQ+L2kv7Hc08FudsZv78vQ3aIqoZL/8YNMCTHlmGs4koQIiBrOJonCsNQJHmyx1zlWMDzIb89Ose8cWtsOTGvsr96BwiBiEZw0gzEbV1yV+Rytuutqhj/quT4kohl8dffsftvs6SPqVOUg9ZeooqdFglCk/Rd1lR/orsKIrCDUlZpa4rfVTOsrRnp3ed3/I00iFRIFNEWNQZB2nnon3LegrLwlHOR44pIqmT1xChxvrvf8Y95e555nXH86TYZZViXzhJNjp5tJeHkeGcWWCeObw0AGtC/nv84696Qj/vGaThgfOCdwNjfrgrRX9bjhUcXOil7rzm4v46bGhZn3zw8Se+H+iH8q1q0vi+4KzAgYeh0Xf811b3RZhCUlYR+VWc88n+liFlk+O1jsSI+qE2i3SVswq5PPT8m75iunRg2fAzR/P/obGW6bvEV1zfJb/iPvjoE+/ICkmQUAoorS8qmEsBKYonyiABIdtC3dTwulqbsE6B4Je1Rf7OPbvXq06zUOeW34scuCra96+DNvLBLFmmqFoyFf5wwPqlC9OVGfMKJtAeMYuUJdgEp0naXk4F0bQnzNIKT/ZLxZ2Imt1i5UV8tmVe9mfWfalwFJGyr737ga/t8dSr77QVVz3/2+s5otYlR5M1liVzUaQ1nocvGYdEZhNlec9x284kmSJnYJV1uwo/k0VAWjrf17J7H/odzid1IoL9nPWZc5X/jiFlVX9DziOeA2MA4jR0WpcZvyoISHEotNy/NNsXfUGpL8/5JXfG3mv5IsNZ776uI4c+zhzWfqGJQPbYrbKI1+euaiIddT5rW76Ddx67jV/7al+eVVeo6LrsCdgbYOGz1XozNtKXOZRMKRxCZM+GpixIIuYJtJGlOb3C80T0prWp41QED8cPpCzZvEbKFj31/N97PCnbhKZszKSE/iPRskQ75Jk8SXjT8G5SXKeuUfGeRaeiLSH29h+wrP9bskBK0YIo2RdV+Cwq8JF2D9LR5bdkwbG695x3vkjZGEHxvHZEyhJRcOWPN4nS1alyX1q8hpOMoky0eOG3YVc/7ChSE2ofKaW+bMSO+ikyKdZjl3d/eJyJFnvwxO19ZHSsaQHJO4GnuarpuRMpRgQoCzFsyvCdGtFwziPmpEWYpTkac08iNIgspLiDLFngIaat5DFJUnbTU2/0WstYVbmF2H6IqFLhn9jztAmD2CJCh28XFlvxXLIJnCMNM+nsqQ+xZJ8W4FkadSrGUUUmJRaP8DilzqHDusri8/vvQl6KYpVrcI4iHNCLZPMggyjHEQRZGBpafXy7mOdkeZIK0iyHUIYEg0hXOqZkBminSacYadRsHMJnr0jQrOJOsfhJoojj+QZecvBGjaW4arODvidzW9IUPZ2WLlzUf6V4ZmmkKoJUUbtZ7YWk7NHbr+K/LYrKufiHA3LXR/omZRVk4ZpEPBH5xGafyupNW5huGM694XUkK8HfyhYvVWEdIoVIE0a3kfeIdwZd47JFOxVxE4tD0fNLtqPNI39POvh1rGSU9O9QIgFZjOsefNFvnIkYb4VJI5q2s0hZFbKJlb3I62cZUjapiSkHdB1yWBqURTrJWZqBFMvE6R8SUZJ+Kno+oe58GKGV9o3P0pVVsEaWlIRI52Q6uaQNiIaG7Emz5Pxe5KgUaZLmaFf70mPm33XSy4uw1e/KyJKsQhYpe92DL3hnTqhhrjZCMoi/xeqlqsAkY+P7my5fmZQlOnDq69Pd3usv3VYELSwqpm+rxl1adofGL/2vQ8r6b9dnzrzkN53iqBRJLdJKT3t2KkbFnv/pV9/18gFZMgx5zz6cM5OOiNgxo+OmvPyO10LFYkhZFRxUVg8yUjgOsSr3on4owIT379Q91vRkHt9/Im8lXZK3LkwG2IQ4qAYGf2tCuk9rXAIuwI8gOzKe+U6xB8Gqcglaa9IGGZC8V5jkzmLl6VhXrzj0aq/TO3n4zKSsvotIY5EJKCsiZUX0prWpNtpk7yBlD9nEZxkaKVv2rZz5+B5PygJHWNgLknbQoEG++BeasXmmSNlkNeV6j8T5ggSk2ZRNJcu6rqJcpE3Gi08qGR/XJIEhL3nSe53VtipwxhDTyTa0eOXvZQtM1MFY5FysVlTWtUTKxqbr1ukzUQjjHn/V/WDT5X1xNkV2hGNEUTxhMR8tcKsWIFOaiCbMqvfwyafOLX/MVbkLgay2RSzXJYZDUpbiC2w8qno40/oqr3rSu8lE2H/YjJT4CUO3KaUbGV4HnVecO6qYS1QpEWRoVpEKXMeSpKwWTVTTHj90YKkI1rL9kMh/bDVata+oViK0qLaqCLZYgq7v8de1RVBpQZTUX4otpKbvZpbmqN7XsLBNWZzKHC8PP2Nk1cXnd1S7rlPRO+vaisQ/91vr+sILvFdLLDC3J10hyi87dOO2lGk87wf++Y6ZCNk8LzzXZLwz7pmzqIBLlJTSSYnWIFIHayLtWPdINWoKj4TalkrTziriF/tswuwKHEPg1pRdOP5pr5uZNReLOM0iE/P6IQI8S8ZE6ajoilGcIsvCDaaemfSPKZ6RJPHDdlSc5vojNnM4QtOsLS32RxvnRmpXxTx8fko5T7alfvL3LImDrOsrMhxnOVqLOJr4NhEVTpRpGdIHAmrAyaO8IxRSA43H0D755FMfqU4U6bsffOT1Infut8RM0YdFOCkaj+OyCpGpKIzaahVhntdXyT1lkbIiMpuoa1CGlE2OaUVcFkkPZN2rJH3yUk51riKhkseKeAsrf0uflHOJYmONeffTM+ox8P9yiIbF7whC2fO/x/oIwazI1WQxW9qXjmNWVoKiiZNF/7T+QicV7cs0I8uCbAtZUS0MrYtwMt7zi21mCZKBoGGthNUpwlT0noW/a95TxHkWKRvzPdcxWY68ZBth0WiyIqpGyqb1TQEg/Ka1iqRt0rCVvATHU3ODtXxVO+XaRxxZgUmtUwW/lPnuqg9kOTAfMR9OfeM9R+R4le+LsiJpt6zEVxoechrGkLKKUBYO2/dd3F37wPNexoQ5papJ7oTzqcMA+a0CWiLi8xzgeQU9ld1J23X7SRvwJ3wTkUpgf/DDv93p583QQj3YMpiEdXXCMUxW9cMvvOmlIWJ0qXFwId1CEB/ZpKEp0I6sAiJbZUWkrNokLjBNKoZ2qCFBgUckN8nYZB41UrbMCJj12B5ByoponThxYhsCEK9HHnmk//f06dPd0KFD3RVXXOH/PXz4cJemIZuET6Rs1TD+rEfHBhoh9qaiZRVBif4ZJCqT13c2Xs5Xwk1WrdYmWHpSRcNLlTbztHKz2gj1Zepudov6Gf4uci6raElsW+1Jyib7pEVE6OGW8Hgokk66Apqds33hC+7+E7YrpYnENeWV578REC+jqRT2mUmGAgUSSY/FmOMgSCBKqhD/4XU+12tb26dMQpRlRfeU6Z+OlRZbsgK60qHRliJVu6qRUgj5BwlLJCQp3Wzis/SYkUxg4UWkBNGkeZYkZeUYakV0ZbIfqsR79y+2KVUkD7kCJDFIgxq42qKOiCwsts/SsuWc+3+5nddcDdOk/dhLSY9Kw1FFFCA+0JZKmlK0q0QpVh0va55wfZuWOW2UxTfmuoq+hLw+a9RjnixjcUZ6InMJJDVpTV/8whfc9/48wVeTJ01tg+V7+Uq2RbI1+m6QZnnxQQMcGwp08PjGhWRPXpGomPsIj5EMSUgKaGNUdfGt9ikaAemA1f2eJe9L64YsPXhFu5SNhuQ6iujIKh6kNNKiSM6QlJUkTpEOpO5TTqm8DXhR9fWyYyF5vMY7f8+K7A3vUemfsdeVhh0RMqT1IhHC/V51/1S/cS3jfPjVVQ/5tOC6KZx5fWfDx7uODBSSEWmGZiXkI8Z89NivdvRplu1prHt/e+Mkt8e6S7kNl+vlI6pV2boMkRnT5zKkrKK/pZWvtU5Z2Qv1S4V6i9J/dTwRakS0Xn7oxj6K2M8Tn2lshvIOEPtr/PJaR0RWMnpL6xv/nfhM3zoGJ47R+jL8rqAVTmR+FikjaZ5kdJqy9kith0TLsjBDBhkZgiryTN/+NGeWsIotjByLS95xesaSJahCyiqYRtdR1kJM/+TgQPIAaZKm5rG0cSTpk7Q1neZp+oz8BYFEVU1Zm0hUIFUh01ipUiBVEec8JwhZ3rM7jh0YVZ8ivA9JPfC3JggvtOGRMcgjZdlv3fHkNPfjrVb0a7hQS70JvGlDzpc2rJeY3zsglXEYOoWSz1VBI9f9ZDPfv9Cuvv/5Nnm3Jvd3uoaChPRv9g33Hb9dpZotFNmDYMbynM1F4zov6Em1ZlSQTG0VkbIqmpY3Tqi5wtqP4r6XH7KJ3+M3MUaL7rc7/94jSNlWPUCRskU6sVWuL12UX+3W15E6U8dUaAF9QUTaeTkhkgnzT0b5agGdJJayrq/UtH36L+Uje8tY+EEKQ/fLtFHlWJGyseRN1jU6kpRV2qCiucICCGjKhLIXEsOvgjGpO2wGsaoFqjhXaQ4IgpNWV8ZYIJx38xSf6sQzq2rS4mLBfu8zr3mioY6cQLIfSteDQIIAk2lRX8XbHl5Dz5ENF+QsUZfnjJ7kvZ9p1UoVCRrj8EiSsmzCnp72juu94DylpCaqPBtSXogmRo+wjG7tS2+97yMnqcrLdwxSEMsrHBX2T1q2oeC9ip/ouCKNTB2nVB/+nbYoUQGiJtJjYzFWNAHHxxQriW03PE4ph6SJETUnMoB3gaISREmh2/fW+x/5zT4LQdJOr3ngef9didHsVfoYmyXSDFWRVpse+lM36yG8JxVtC1NxFc1dJ2WPayAjgZMUa7roG+ntODjSqm37650/3iGzUaVYyOdE9bLuxF0/L8oj3IRPUpMvOaZCwpLURSJJOReiniigPJNTKm8eUyGTkGSqMq6zzpFzhd+zrhFKVJSNTlcE0VK95vHPEUcfmzX+TrR2bDoj7x+V71kXVJn3y2DGOm7OL82WGZmsAne0GVuroMz1yx4rIk2kbJiSDVZ1rQwpK1JUEXR1ZW6k+bnTmot7uZciE0ETrt8hY/Y8d6zXUA0JKjkkFKGptkMyrSjaPdkf7QHCjKUwo4lIt6Rdevezjj3NLv2WcKxtZJKpKCpKqsh8zovJVtBaO3nfnC9HWNUifEXPJ+13ZQjpm1mFlCXqnuhH2TE7rOLYH8aY5hHIbxz/TZGySBpQ+AiTzryyVsK5WH0Ma03UjZSVY4Z9E8EnPmX7pbd9PY+qWYIK0kBz/83pH/maB2iRkkZexgjQYpwRfACpW9dUN4boRpxBMRbK9sTOQTHtaixxrNZ1oQMoq3iWAjnSSG5FhtJm01nMtBnq8vLvmDVsFhYaY/yO5ArSK1UszABI7j+UQYDjiLlOVkTKiujl+CyiVeuV5Raa111+yMaOQBAjZas8wc/PMVK2Bn4iZYsqBVa5hBaKfIhvO2arWnqlSj1Ay4voCV78Azddzh3z7/vbqo6rj5NffttHI5GGinZbkamqeJ7mUlYbWvzxe50ozKI+Jn/Xoq+uZEJHkrJUeSXyU4tvRTgrBSS8Z+mWVdmohjpPZTeYYR+K0rvLPsMqx//kn/e6y+55zlHZ+B8TnvFyEEldsirt6pxwYqQ6Jx5G3qev/+529/HHn7i7j9u2cqQx1xC5SyodqYF///4G7tLPRPeTzpuwoEUMSZkkZevgUPZcbUzLRhFA+FHEhYwCKrXyPcNiZV8USRp65MP0PNoqE/mjwmGKug1xEBlVd/NQBltFynHOdqsv5gsGNW1KpeS7w5gLSRei/IjyUJEhxu2/DhrgnYIcO+GJV93SveZ1Gy6fr7MuiYRhu6/h0/MVcR5W9+b5Mw83Yck5TaQSG7bJw3asFBGhfoVRHEjR8G42aUQqEF2crPLMpnOHs272Dpwq3zw5X7M2OSLO9d3LuidFu/I7mwQ06oh6Sat8nWxD37+8Yicxx9TBG41GtBqxrOgsOc84pgrWwpJ1GvMHmzVkZKhyTFQO35ciU0R2TCRgUVtN/K5vbRq50kT7ZdpIkrL6hiVJvjJthseWIWWFy8Tjt/UOK2VAxaaTJ/uo9VpsFtizr0335D3jC6cojgDVMEjKMIEb2QlERZP2LxMpS5prMiCgCEOcBsybRGVJvqhIF1r7hmR0qiJsiwjG0GkSQ15Lfmr22b7o13BhPQRpyTdJVBVhxu9yuPPMjrv8AYe8RIzzXW0jj0c2lKxMXQJ9WxQc0BQpG6Zyy3GoArlpz0n7GvReD9u6T+kI1CTOSutXNoxI4tjCsWnPTeShfquSraQCnsoQihkfRcew/sqTCkqeHzojKciIo70Jw8GAxi1SO9Q/QBIIkwMolEPR9dL2WWFfwsCKUIKqif7SRiibxb/LvHfJPigTjL8XZRkV9V/rhiQpqroMyLrgBJMVkbJ5RK/aEF/E+u2yQzbxWblGyhY9qfzfjZStgZ9I2VYVb9HHmMgUJp6qpugRIvUOv+geh1eDDSEFlJLROvJ8pJF7addP09+L7acWx62K4srqh0jZumR6R5KySf1SaX6lFUeoQ8qGhUJiU7nTcFdEAcVX0JTrCAtJWTzykC1li0sV9VubLC2+WDATedfEZjTUlqIfo3+2hbvjiWk+4j2Zsgf5zP1iRZEjHNORpKzS4crqbUk3lcqfaPChqYzFVhBXgbFwMx4Wj6Ctf5fQpmRzyyZXqajhWNE9JsmyovFU5/cwva9qob+i64dRCRyb3CjfMukV9+0/jveEwz9/OIOQLWuK+JWWsiKWwujkug62sE9/H/eUQ8tOc6MWnkQv3hIZWZJ1j+FmuEkiWddTwZKk3qnIRNLMIBMhYcqYon7QJaPYSGg4iPjuQbpnaUfq+JCUBc8RX1/DR/Dm6UDqXEmqII/BOEszEaJXHraJdxA0bdIWpt2sTZTmW//9OHgjHwFUxpBkIapK1ZJ1HcmtpH1fwvaJkiUakFTzOtktZfpcdKyIsNP37OclgzrSkqSsUqSbeh/LkLIqaqOgBPUlVss8iaPGZ5a+bxruysqT3nlZolGkLPsKxmpZUySgajPgaMXhmjVXkgrOfJrMSNL6rii7Rdejn7Gak9qLJcevJHTSimmVxaHM8frG8H254LYnSpOyylzTNctkjGl+VCV6ZPHIeKhr1ATQGk7zF+sHsE+S3kTxrTT0avfxp582JofCngAiVvt5aq4gz1cGmyQGqsmhv1chZVUrpD2jsbO+K1k1E+o8+9/dNMXhTAqj1iWvkXbPihQPM9yS11fmTisc39rL6poPn7R96fVU2F+RqUXzehHGWY7xax54wR3897u8jJHqbtBWESnLMVlEr/oSFle8/LBNHHIfRsoWPan8342UrYGfSNm6pGlWF5qKlhVZQOrsPueN9aLMVFFm45kki8IIOzZwaJbuvOYSmdFBKgASW1wnvFeid0ilmG/OL7VkA5WFq0jZ2IqjWe10JCkrmQlFGGnyJwWJSIHQ6pCySqejvTraydJs2nLlhX3Bno4wihLg5SQKhbQ9IixZ+Ddp0lZkM9x7wbl9ai7k75gjt/S6O3Us3OzTziMn7eCmvjHdV71PapmG2pUx0SAdScpqEzZuyNY+zT7W2ip/9prHF0yCkMGU+lbUjqIKw9T3MNWW8/MqvSfbz3rP0HRi40tUEM9srtm/WNS1Rn4PNbuyihLVvVBIjNJWqEOoti+561m3ztIL+mjIKqbNNhsznFFhtKaik+t+y8N+qWAWms3Dd1/DSeczhjgsuj+irpDrwPIKWRS1k/W7Kg+HESaKcmUTfeVhm3pN3iqGVAiSIck0OxV74PvGdy7PQlKW9NuTduvri8UU6UDSprT18ojOGImDKveucyhmd+0DMyJls6rbizzmmCrSAdLF1TU1d3zr/PG+SB5p6XzTs0zFcWJSs+tgUeZcvqvPvvauTwWGvO9IS5KyquRdhsjM638ZUja56dU6rqoci7QW//fQTRza0jGmaER9u/W9CyPX8toRKYscCZklZe2MkY857pv1JQQYhbiKshKSZDbXVCo0GUQUNc6yMOovNvVYJFGyYG7burbivZfFSserPgIE9OiHX/Q6nLHOaNpIyjSlRSRm9U0BIfo9FsOiew3l7FRgSk7fJBlIFg6OniZJQtYp1JlQdoEiZ/OcgEX3RCQk8ybrJKxI3ietPTlaWpXtVHQP/E6QB4Qe8w79aNIkBxCOI7gB5MUg35MFgOVEyotO1xya1J1uot9a79AWzm1I2TpG4ULWQqxh68yNfDeJbqUoF1kLMgXo8OwI3pKVIWWzMqBUxkDMOQAAIABJREFU6JA1JXPOqr8wUrbOWOBcI2VrIChStpUVtSU9UFX4n9sLPTEUg4L4OGSrPg7B6mSFU15qUixPu+4Rn2KKkaZy3C6rp6aZolFLNCUkLx7GrmAiZaumiOkeO5KUJd0Dwk/RSVqknbZnP0fRtdDqkLInXfmQQ1MLK6pUm/fsNTE0lSJYZZypaq8mp1YUQFGkGkVgmLDYIDeV2hZu9kMvsSI+iWAjkg0Lj42JTu5IUlYab2WjSLU4Iqr/koM2csggYOjgoYdXZPKmh99vaTPr3DKRDW2FlL7b3+F8wCBwIHKw9l5Uh6Tsfb/czhfZa4VtesoNbVVdkzqETVxPKb04HogCDOcaXbvJSGCK55FFIvJXpKYKU9W9pxWGXO3TdVtRrVtOUkX58g3i+8+4Ripgr/WWqtx9OXqSZLKif/MKc+iiISnL39iIoFseE9GibysFpdZfNl3yIqYYWGUAnPMRJ0SeYFka2FTcpvI2RjZDWWeESEL1U991vQcHb7GCozBPmiHpsflpN3SqKNk6eLfiXBVKEgmpat95shhl+hFLysoBiLOESFlMUWNpzvWsPkD8/PueZ92/7nzWa81jZaq0E1G9zknXe6IOJyTzKvuO2MKkjPWbHnlpFlmDWMxExq2+xPzuDwes76O8yX6huFKWiTALJUTyiv+E7UC8QcBhsd90vp+QRPx/qAuKjjqkWXvLhIQFsKa8/HZpUpZ7176Q/y4zF6l2gjBtipS979k3vA49JtkXSVQlgw6kK9yUdALXVEASa2vGHhIR4bsZO56Tx8lRyt+TBGNMm9qvVqnbEtN+Rx8jUjaZtfud//8G8S3FMY6DHNO3uvcCczu+10TLpxkZwTibqmYc5GHy0SefOoqTYlUKV7cKb60rJw/f0WsiyyTDAS+g7x6/lSFlk0Sv2pZsIs4RSFmcZRYpW+8JGylbAz+Rsr/55to+DaYVJi1OJorxQwaW1qRUOq48OpqIiaaETEUWIa1wBx+eiyY87c4eNcmn0mF4n4/ZcVXH4kmmD2orip21Ak/a1CRXpuJoWl86kpSlP2GUhdI2/3PIxr6qcGh1SFlVA6a9OppG0mlU9Fmrnm1euyp4J/3LQ7fq40mBJk1pwkRuQjaQ3oGWZxPe5TCCKqyuLKKAFDJSydhkrfqLaxzvMFa0weGYMOq0bop2WTwVyX/b4K0ci61Ym/LyO16PirTJG362hY+wwWIr8a5z0khHKlRYfAvsVhw6Y8GFFWlkhn1VJLbSJ/955zOOYhQYZBikWHuaSNmYCMY6/Qor8264/FfdRYM2rNPcLOeGMgz8GEbFyvlQpCNYpkPJ4pUqdthUerOi6euSpGn3pHRangPab9udOcZvNmOi5YswUippknjXNdGZ45p5liRlkaIgyitG01Bpx3nF8mKJmaJ7zfpdm0J+zyK+pInJMWW/aZwz4ppH3LljprR1QRG5kijKi2BUCm4Tz7sqRp39vGSkrNZRddNQdd9EMxPVrMI1WXhITzDcHKtYVUzmGe/N5fc+50Y+9GLbJVjn775Ob09klLETrnjQFz5F6mjA8gs5CvukSWGVaTP22NARipboARdMcEWp2ppzJHnAtZT5UhSNGGqtQ1QQyBBjInpCjX5Viq+jOxpz7eQxIiV3Xau3+/iTTyqRstLyp23knwjQiTVlqHB8U6SsZIJo8x+DNvSSNlkFVE+84iFHhDZ1UhizTZnGEGQ9GKdl/pS9llK8qQ9z01Fbli6cq2CSPGdc2T51puPFISQds1o/SxpEUnoEIkEA5mnisla588lpjsh2viVNm/YOSQmVpq9Tpj2IYvZ86HrPPtvnpKz2AXA9rKVlMaSsMhKyHNCKWF8FUvawTdxKQ42ULfPM0o41UrYGgiJlw4VBjeYyTxX5F7NxSTbCQosF1xq9v+I9S0rvw8NIKjc6fWiFZhne/PNvedxvEkgpwNhIHbndKj4dW+lWsYUFWoFP2TZFytZNH+1oUnbD4aPdC2++50j75r+xB0/cfpZJX2ldVQTJpYlK23W8xooA6ciI6p9fMtFRnVj2+2+t63bo22wqDsWmIHVYLLNhalIiIYzACjdM0nWWJ12yJ5CxaJxiRd5LVZzXd6LsO1Xn+E1PvdGTwmGkb0x7oZ4RKdVEpLLRZZwTWVFkZ458zFc3P3G3vj6tFgu94DEV4cNrKKqcFEzfjxsm+Z+b1Dstuqfwd6J0h139sFtvmQUdRHGrTAVWaL+pqPCwrxRWwtkhC7WttTlvcnOmyIK911vKEUUtsv2UPdZ0e69fPdJU/Vcaepl009hnp+JnbADJBGBjU1VHNnlNontXP/5aL8cSFrPjO3f4RUgQ9PZFFPMMJ8VT0971EX1o0aqYFedxfp4pbTGveNY2Z45xSPtcf8RmlfSLi3BWpXOOS25+dK4ievl31mYm7zrSbNQx44ds7Radf6423e+sYl88+01OGe1wxY08YnPXZ5FqMhVFGHT138NI2RF7xBeai71vikWuc+L1PqoyT5JH2qhhdXfN5VnBEu9+8LG7cPxT7g83P+6lRDDWZUgHEBiy9aqLlg7coA3VkmBs8Z3D+dCemR1yuHAPFLEt+pYoal/ffTlTiRAjUizPmJeJNMX4nnO/MXbjoy/7CGKCUpAlwfTti9WmjblOzDFIIu3x+9u9tjbrvLLyBVxDxUf572Sh2KI+SEqG45oiZcPCnaHjjZRogovCbB+NF5G3Rf2N/V1BFaz92O/WqaMRXrNsYa3w3KTWbey9dPXjKEpKJtQSC8zlDt96JQcOfOv+MWiAJ8s70hQEFX67O7I/XBtCFCdGsmj6eTc/7lijk31BZrMshpSVdFhWQILkRRQkhIOzaK/Z0Th19usbKVvjCYmUVaXIGk3lnlo1WpY0pG3PHONfVHRxSC/US6bKmd/deFmHnlCRkS5/zg2T2lLZOR492jnnmM2df/PjHUY8FPU77XeRsnULtHU0KavCT0RisphIpvjo3qWVVCW1mGrnaCzK7hg6MIrwSuKuqsBNaj+WffaKlNV5ZfRCY6+lqDodXzcaO7xuGIEVyo7o+yB9YTli2NjcPvkVH+meRw6Qtki06hvTP2wsqjcWL47b/LQbfcokEboU/4k1FR+ieBQkTBNGcPHyn0XcxkQYh9c854bJPjoa7zkRuFhTRF4T99aqNvR9of1WFDwJ0xq5xq/36ufTTjG902U08YpwUISGopv3+u+xbsIT01yRVmFRu+31e5iWWldHNtlnReWHz0CRGGUqHRMNh3alLI9o1TEis/P0kZXW3KoCV6G0QNbmQ+OFfqc5SYvGgciftjn32IFtlcVV7Gv71RfzEX6QaDI5HdubICq6n872e0jK7j9gWe90aVpWSY6cvGKykt+hxgNFXjAR8smMIuZm3jOiA3H4YUSBUTQN8pSicHVNmThgccXEqd5hjeO6PUy6suit4/QpyrxDUgsnqMhrpbnHOMFDWZ8ymVs4pdY+aaR3JqkoD05+3rumil3FYi1tcjIoyWCsQsqqgCbXDFPEY/qgIlgc2xQpyxhHigtD/ksRjsqkCusyrPKLa/w4aSq6XfcsAkv/rlKoMQa/Msc88co7Pvhm+YXm9c65nmJ6p8P7Pf/b6/kI/o42MgnQkyazj2yYzmBpOtv0S06ow7de0Z09ekagCBZDyioSlujkO48d6OaYbeZ6GA8894aDhwgdVZ0Bi67cByNlazw9kbLhBFKjudxTJfYdS/KgDbvrb291bGhDfSpFLOpiMWlSYcfwZp5+/SM+ypZryH6+3cqO4gRdwUTKhmlIVfrd0aSs9IYh1iHisgrRELGx7kkjveeXCJoyhV5CPSQwuvTgjRwapWUN/WIkDJryPJe9PseHkbIs/im61LRps6B2f7ffOo7UtiaMyAgiJLBklLfSydCsOv5/H/B6SmDNpoGJM6/gjAjzJlK1qtyn0rnLFkMTGU3qDJIFTZlIrbILjTDCDTLs3P3Xa9OWbapvnbEdRWbTt1YU8iMijGIZsjAzhWgK5LPKyF4UYUjFZTadSm3VppDK4khldHaTs45+Ni2RoLTZkLA5a9Qkd9aox0rptxFZS5SZLIZElWZzXiE/ih4S9VdFyzXmuWrtkFfgY5/zxrlxj7/qm6sSNaIMAPUn1LUOiZQw3RNNcJxb2E0/r19UMgaLrnpMSMquvfSCPtCgbtZUEgtJGKDxTgZImqU5FZMOoVff+cBHxf5t7JOOCFwMrdefbrNydCGv2OekDAEd3zRRndePZPEoCgAS9JFl1z/0oqNgl4qLyXFHcTNSm/NM9Q04JlnouAgrReiqENtFE55xrJGVVVF0fpO/a53CeEB7s2zmRSjFMuLrazoyrWItJC+bImVDh3ioGy75NUmztUlt5bxbsfeRPE7SJvr7Qydu34jDo2p/evJ5YeQ0OJR1HLQSO+1nWy0NVuYeRMomiwlT1BqJCLgjdOllMaQsx2o9kxZNT6F23s++vb/irjws/7tb5l568rFGytZ4+iJly1Q6rXo56e0QGTFuyMBCXRppU+GFJ7VXHg70p37w1zvbulGWlNWJbBxIjb3xkZf8n5pe1FbFKeY8baxIM+b+q1pHk7LyVivqOW+BybNicV8mXQtcQo84/5ZuaVnMFKEdRliVbaPu8WGBB3R3WeQ1beGCn7ablDbZ89yx7o4np/kun73P2r5iuex7f77DV0clanrYVQ/7VFfuj+h2PLoXfHt9X6gtaaRQUvwP4p5Jlcm1vU1ESlnSS6kzZcnTovvTZidZabnoPPrDRvHN9z50f/luf68p2BMMsmD14671t1qnGGAWVjj/+gydURwLi4mqrIO7In+JQjvtG/3arp0soFDnGq08d/8Lxjs01VqRfqyq3Ti1Hjxhe18lXbrjZRxu0rAUDvcdv21h5WFJVfzxO+t7aYY0k4OnFVkQXE+6kmGhxWQ/JLMQk0qddg8qAKXfwuIwmsf5jfZvPHJLX9xRJHeThW9aOUY7su2QlJ3jS7N5Aj0v+rpKX/lmbXjyaMf8muXIVoG8kEj8993POTQkcbDjPIcoZW7GKCZ1+MCVZqrpUKVvWecgjYDznlRxjPUF64z2MO4Rx7K+8XnvOP1RgRnkT9jfjHr4Rcd6PGb+Yc/CtwQrE93P8XJAUiwZaYqsyOb2wEwp1GQXQVSWJWUpQkv/sbLFqkMMmyJl6Qd6/khRhO+MnHFawwrz7fsu5qjd0KQhXwW5xTjsTFGQTd5jV2krJGXlBOksfZcOrr4/naFfkvlIOhKkoU2xeLSYZbGkrL6trDNuPmor94XP5Wpd2hzWGbDoyn0wUrbG0xMp2yr9smTXpGdWlAKeJlugtlRlXf9GJB1dpqqG3t9DU990m620cKUIyqrXrXOeSNm6Ka8dTcoqwlFY5G2KNcFBzpPKHqY95mGp6FLSwkgnqaqPqXSPpopeVXn+IcFcJm2tzLVIySU1V/an76zvozmasDAt9l8HbeSQo5ChFYQQPqQ7GzmMKC3JTwzbfQ1HddOkqYgAOtEs6jvCpANJcSI0STdY/qtugwhxfkXHNO2lpWAYm+qqxXKI7JRGbUfg2RHXHHDyaP99aAURyP1QkZtvGNZq54FSUpFIIAOEe1voy3P4qttdwY67/EF39f1TvSwR0W5NmyL2Jdskh9tZe6/lU1ljTFIfHBtLXmq+/cMB67ltVktPYZQUyk1HbplbCCSmj2nHiPwkjRSt1zSTzEJZTeqwLcgxoiSxUEsRvc0f/+OetkP5RjEnI9uAlc02qIpDVz4vJGXJtoAEj3EKlL1nopJ+f9MU983+S7uTvz5r4S0kUZjT11+2lyMyECPDBeJfxgaYTJufbL1SqQynsn3V8Wg+E62LtTfBHzqdi4p1qjiY6hyoOGMW1iEeYTTk9zZezkFWlDFp4LMGe2DqG94plaUBXKbdsseGUiqcW5aURVdXuven79nPS2HEmqJVOb5JUnbNE6738hD//tHGbbqhkgJBroXsFQVX1M10zLpXaYIrCjsWEzuueQRIn7//udd9odzOZGQKMy6bztKrc4/KlkxKJimqlz3giVc82ObkiyVl2QttduoNjqy0ZJCRnFRIY15+aPNBTnXw6KrnGilb48mJlC2rhVj1kkpRY7GfFS0byhYctPkKPoI1afJG8vdkxcOqfetK54mULRPZk3Z/HU3KJlPli6I9JHdQpmCcFkSQZaSYQVQQ7VrWJMzf6ii3vH6FpGzZwgax96voTR3fpA6lMKTtZFVvbTR1XU2S0hM6dKs+vmp9aI+9+JajWnkYcRV7n00eR+R+WEFabaMpxv8ga9dbppcjOi+0Vi0IVhgyIyqzVcR9k9h1lrakEdoqHcJQT7nVxJOi1fjWMQYgIW3R+flIg2iCcBIR8Z0/TfDps3myAslxik45DiMsL8U7PE9FWM7df12HpmqaiTCR5mPT74cI6FAHNHkNvQt1iPxdz7nNR6Fg4SZLBZn4O4QU5BTFGUkjlAZy0/fc3drTXEmGBfN1q4q1KLsNvdeJx283U0VsMJUDd9MVF/KRutjV9z/vi2whyfK1tXp7SZC8KuNNP5twHSH5lqavkdVeqMcfOiKyjl/vVyMd2qrUOUAai6LD6CbipMizUB6kSlCKihuTmbbMV+d1RKJVzTisg20yKKNsIV/VHqAPVTLgtI9skpSVc1dSBfRNBVSP2WEVN2izFdzaJ13vdZVvPXorX+SsaaPoLe8hDq88CY2mr2vtdR0Exj0+zR1y4V1u85UX9u9OZ7C+x1/nJQrDIqz0S04M9u2suXBCYrGkLMfyfYXcTdal0XzRqszTzoBre/fBSNkaiIuUrVr8qMqlFanBYu0nA1ecpQlp/SRlC8IDQ825H2y2vIOk60kmUvbEXVf3G8uq1tGkbDKq4vbBW/tKlVlGejtp7kS9cmyYhpB1jtI1ibJkIx1GdZTBbcezb/EVt684bBO/iewIC6NAWiXgnxSnD6vI1r3nUE/wiZN3mun5kXZFCrlSHVUILKmPGfZBWkFVNiZ17yV5PkUexj7+qhvv/zfNPfzCmzNpVkMcM24URbv+cr3cYy+85SDrml4QaLNRVGykaQy6cnvaOLVKhzDUvws1NluBmaIgKN6y+UqL+Mg1otXQhzZzbtKLbzui20VmqUAQxUSpBh5j1z7wgjvo73f5Q5H54HtcZCoylqfTTbVmIjpa5SiXk5LUcvTZ00wkddlCgWFb4XhPasRBJJKyjByRIt0g8W49On/+L8K3p/ye1I1sZUTc186ZUdchLYpRuqhEfRP9jZEWfs0DL7jDtupTquhlk89OEiBlpa7q9uG2ya+4/c4f750NVBAvsq//7jYHKfDPHw5wP/3nve6516e7ZAZRWhsvv/W+W/8zjfJBmy3vKPhbxpRtSPGbQZsu74t7hnU7yrRV51jpD6uNsqQsmt7sJ7EyWQ66ntb0TZKyKtRI1B2OUEyp4gQZbbHyIm6f88a6Jou71nkGdq4h0FkQWPOX17k33/vIa5jj6JaRWUOGDXPQUf+a6JCpwcqQshC5/YeP8lHs4btJjROCFmLXcJ0Fq87cDyNlazwdkbIxXt0al5npVEXLUmiCaNn5g+q7yBYMPOMmB0HDBkmTWvLaYRX6jlhMNIVF1XZEyhYVEyhqv6NJ2bA4ArIEjw3LX8gSRU0aMMRhkWaX7l0pUqQKoVWal7aZh5fSSlsd5ZbXh6Mvva8ttb/pqq267gcff+JWGnpNWzeaJH+lVZhVYVi/c3FFPqRF4/C7KnwTdT/2mK2j5SyK3ommfke7cvwTr7o7nnzNjZvyalvUWNh+r3nncNPe+WAW723dPvD8eI5s1ti0mRUjoHT0Xdfq7c7ep/nIAZG+9OTxk3fykWStMm1W2WyuvOh8Piq0J2aU5OEr8pM044P+dqd78tV32yqSxzwXpW5zbKw2oOaiPPJh4xE3eHKmVVFUknvJk0yR9m0dvbnhVz/scLBjzOvJqsf8He3PTUbc4GUOOqLQUMxz7ozHJEnZVuoV/uX2Jx3FodIKIEqKolWOrKrYnztmihtxzSNe7oiU1/Y00pWX/uo8hTUz6JMCVPbbYBl34finvNMWp3+RsQ5Gogg7eIsVfAGcsiZCmOKoEMOtHENZfRv/xDRH9pSsLCkbSm0laxTE4IF+Po6FJklZFfUK67RImoJv3Lxzfsn98bYn3GFbreh+tm1+RHTMPdgxhkB3QUCZsDjG4X9kek+RHpj04lsOyUkchWVIWdpSwbAwQOHOJ19zyH1Q/BsdaLP6CBgpWwNDkbJVKuzWuKwTqRqmJFMDZbffzvDKFy00pD9JH7IkDur0r7OfK1I2S2cztv8dTcoqYon+xupqqgBcrF6mopN+/611Hf+NEcVANEMZUwXzVkUwxfSFKrlUyyUdEM3BVhkRq6qU3GQRQJGuWV5JVUHnvlR9XBIFYWQX34qtTr/REyllpCxahVdMuxAQFDkjihZCRwXPOBf9WaJlmjJVMS1b/KKp63fFdkTKVpU3Kbpnfbdio6iK2sv7XRkIEMxob1NYpK7UTZ3+dMZzKRjB5hjN3fNvedynk5bR5QxTiGP1GJW1AenPs0naC2++57Y9Y4yPFinKGqmKqdZeeZsQ6afXKUBICu1xlz/guzll+I6+oFqaIWdAMalVF5vfUXzMrBiBJCnL2gbZlVYYkUXrnDTSffLpp+6OY7dxX513jrbL5GWxtKIvsW0ynhhXOOCXX2je2NPa/bhQ7oCLZxUzTeuY5viqZKrSedV2VuZiK0HhOW0wfHTbJcqSsg8894YjaxIrey7nHPPv+x2EaZOk7P+Mf9p/z5ANYvxhkEhI1wxcdVHvnCfS+aofb9qygnetfGbWtiHQKgRee/dDt80ZN3lJl5AbkpySagDgJMRZSKQ/a7ZYo90Nho/ycxmBPBQ7TNNFj23PjktHwEjZGiMDUvZHv7uqUMOoxiVST6XgySanjHZzBdGyqhjdZ5Evu1E/TU+rU2Nh5cwiArfpvneG9kTKDt99DT/5V7WOJmX5CK994vW++7ERajoHcuP+E7ZLjcAJ8ZCOHwW6TrnmEb9YZ3wxzspYZyBltYhsle6l8JCuIf+++vBN3WqLz18GqsxjVUAmK7KG9H8kDoiiJxIYY1NI8QTIJbSGMIhpCGrSa2/8+ZazaN010tl2aIRIcQy94yZNVUw7sihdk/fTHm2JlG2VruWV9z3viJRc+MtzujuOHdjSW1IEG9XHIfiYL/OKS7W0M520cWVpkI0j7dMyzmki3CGrMIhdyJEik3RAlv6h5FioUk9USCtMhS/55qCPnmbSyK4TPRKu0crg2op77m5tJknZVukPCzdFKiULE4nY+9aGyzg07s3KISBSm7OWW2hed8PPtoiS5OL4/sNGOQpy/njrFd1PCzRo03qF3BJrbxzcGFGbRG+2tymrh+uWJVbJKCCzAPvtvut4DdUyJlK8SVI27fo44CkCB4nEehaJNpxuZoaAITAzAkSu7vnft3vpNwJVCFhRLRL9m4xXghzKkrJcSZlC39loWR+ogLYuciLU/ri4wcCYnvxcjZSt8fQhZSdNmlSjheqnSh9TpKpSjmI0ksLJ+JAt+7gjt5u5AFD1XnWNM0XKjvj6mm6f/tWrOnY0KQvayw6ekYZFESe8YzGmj3QM0aB7PP/b6/mIMQq6xEofhH1p0/pL6N3E9LepYyhQg4dw/wHLOMZ9qyws0lKFwM7q1/4XjHe3THrFp9Rn6aCR/rdUr7kdsgQyFa4SUauU1998c233tRZUZ28Vru3VrqqYNqkH3F5976jriJSNqX5dpY/SrmLzfePPt6jSRPQ5V0yc6pgjeDceeeEtR7S5RebMCp8KS/ALUiJo/cZamEJ86jfWjKqurCjVtErhShPHITXqZ5u73gs0XwCGe1PRjDwdUjkyN+6zkLvw+zMKOJU1ZTig+45+uFlzCISkLMUj0extpSnSb4WF5/UZLDJF/3cGTfdW3n+r2pYTmvbLFqoaeMYYR7Q+RcEoDlbFqM9AnQYMCQT2Yu1t2511s3v0hbf8ZcuSsmQf4YDGqkSLq1BYq0nZMKuCvooQam+s7XqGQFdAQGtxAhhYC33njxPcPc+83qYFqwKBVUhZ9pc7nH2zz5S96xfb+AKjBAJRjPmiQelO6q6AWWfqo5GyNZ5GR5KyipadfbYvem3Zi+942p18zSPRgvOKBquavlMDtg4/VaRs3fTkzkDKyuNfZlFF2inppzGpxtKpgYi96dGXHGmVx++yuvvuxsUF0ojKZbP817FPeu1PrCPlC9pr4ElTkOshk9BU9eRv/3GCG/PYy+6Er63uvv3/nspY2+K0GVIFkFkQTmeMfMynfkE0mc2KgMgm9DJXWWw+gygCAS0Eu0PUl6JyiUi//sEXfPG8icdv6zW4zD5H4JD/udtddd/z/g9VJGGINGOO+PN3+7stVl64ENqj/nWfIzouOW+jpb/tmWP8c6rraC3qhPqQp4NLATMKmW296iI+pbqKUYwD0gfZgqrEbpXr9oRzQlK2PSJ8Pvz4U7fuSdf7qPvQuaNvZk9cgzcxzvh2nDnyUa+pTKRnGaM4DY6+OhGuct5x3Y6SgTrob3e5ax98wd96WVKWc1TU9Nz913Xbr15OwuPlt993b7/3kY9SbqXxfNf9LKuC6/xj0IZuwPLNZke1sv/WtiHQ3gioKDTO4xfemO4gU6/7yWZu5cXmc2eOfMydPXpSpUhZ7kMyekdtv4ov7Mq/8zKH2vveu/r1jJSt8QQ7kpSl28de9oCPXiQq7u33P/J3EqsRq4rJofZIDSi61KkiZU/bs5/bc90lK/e9M5CypKE/+cq77qRd+zp0Q2OMtC3I3HnnmM1RpC5Lr462pEfDxnnSS2/5Yl8QshCzWQYB+PsbJzuqw8ooSLfvBsv4yISyerQx99SZjlGKK326bfBWjUVtgedtk15xEF9sJmNNab1U3/z5Jfc6Kmk2WYBmTe4EAAAgAElEQVQsth9d5TgiyYmQvO6IzbxuklkxAiIYYvVBi1vsuCMgGiEcN1txYUcxlPbQse24u61+5f/c85xDUgBbe6kF3H+C4hIxrf7upikOXUPkC2K0K6UJfvLX13BEZGOkD1PhnnZ4XuimtdKUoZQnF/SjC+92V9//vE8HLksWtbLv1vYMBEJStmgt0xRm6APj0P7exsu543ZZzTd7+nWPunNunFwqy6mp/vT0dhTlSpZg1awpnEA4lnCgxAYqNI07gTjUCMGqkLIDTp5R+Dcma67pvse2F2ZVoJt917Hb5O5ZYtu14wyB7ooAjoztzhzj9WVlChDSWr1KpCxtqUg0+uhn7rOW5wjqZAV112dQ9b6MlK2KHF7GDpQvoNsi1/jvpRac2w1cbVG3z/pLe29IkWmDU1VTqaj9zvy7SNm0NMgy/e4MpGyZ/obH7vSbW9yDU990f//+Bm6TPgtlNrPf+ePdbZNf8Zvd6R987AX3syKAEP2mYvSoh19saw/d0u9tspzfRJNa2hMsrJw9YehAt8h8c3bobf/kn/e6y+55zi0835y+SMJ2qy/m0Es1MwSaQkALvZB0aKrt9m4HQg1iDaIQDe2wSF5796UzX++t9z5ya/zyOt/FtOryTfd96H/udxeOf9rrb+KYwn7z/xEfRP6zwSATICyk1PT1ae/oS+9z/7zjGUclcCJ200zri5hMlFb00drMRyAkZes65mOxRncZWSNkPu4YOtCTStL266goy9i+d8fjpE89eIdVfCBLVfuvGya5p1991+274TLeMdXeRqEtaiVgVUjZHc++xT30/JuliqS19z1yvbVOvN4Xk/zGuks69m1mhoAhkI9AqC/LkSp+qkLvVUlZ2trq9Jv82nj3tXs7nPObrriQ+9uB1aSa7DnOjICRsjVGREeTsnR95EMvuqV6zVM6zRZd2U8++dSf29NMm6ayOlRJnLoyKRubbqxUBVIoe807p9eTSRaTI933Dzc/3lbwBZzWXPIrbtBmK7idSxYP6A5jUZMe94LOIhuxjrSQJKaIN7p2rU4568j7tWu3PwL6nvxg0+UdBW26spF6Tgo6EbJEQ+Xph3bl+2yi7xRgoRALi/Mz916riSYz21C04Ym7ru6IyCYlb+f/usV9/MmnvrAXBb5abXJm50WEH37RPe7ye6e6/TZY2g3bfY1Wd8naL4lASMo2WYizqBvS1UfSAsf2Ly57wFHs68Rd+7oDBsxwMpi1DwLooaL1u/+Gy5QucNU+PYy7igoucnQVUvZXVz3kkH8ZvMOqDs3jzmoigTpzRG9nxc761XMRwGn06+sf8wBoLyr5wjqkbOgMou3NV1rY/eV7rc1S6ilP0UjZGk+6M5CyNbrfY08VKXvW3ms5ROqrWlcmZSe9+Lbb5swxvpo50ZwUFEkzFQVDx2mdpRd0Kx97jScr7j1+W3fRhGfcH2993D3z2vS2UweuuqgvRFUmvb4q/p31vEvuetYXhMHu/+V2br65Pi+61RF91iTMtdmEnGSVnjviMXTra4qUjZXP6cxgiJRVH/fdYGk33Mi11Ef277uf8xIPO66xeMtJ0ROueNBBplD1l2IvW//6Jjfl5RnRGq0mhHXzRKWxIfnBZst7Hck0U2bCgZss536x84xUdbPOg4BI2S998QvusWE7OhyV7WHIdVBkZYe+i/nCSioaF1vorj36aNfoWghQW2SjEaN9p6uQsl3rbq23hoAhUBYBMnvWXWZBH0yF4QjEIViHlP3g40/cer8a5d6c/qFv00jZsk8l+3gjZWtgaaRsDfA68NQf/+Me978Tp7q61ee7MikL/BuPuMERMX3pwRv5j3aafePc2x1pEBf/cIAnWhHcR6+GNGXIPgySdo91l/SRsU0VterA4VH70lTkRbMMo7IzFZ470pSOTT/GHTPQoctlZgg0icBvb5zsTrvuUdcditZQOIUCKrI6uoNNYtzT2yKq6/xbnvBE5/NvTPf/jSTLDT/bot0cX0P+c7/7n/FPuzwt/p9efK+DrEarkrFj1rkQQEPznBsmuS984QteCqO97IU333MbDh/tIIOJWhp62QO+8GbddWh79d+u0zkRWGnoNQ6SxEjZzvl8rFeGQGdCAJIWGaY6pCz3QwQukbhYe8hXdSYMW9kXI2VroGukbA3wOvBURcqevc/abte1lqjck65Oyo645hF37pgpLi/l+Ou/u83d/fTrbcSt/o1nbMxjL/tCaUN2Ws0taERf2zi695nXHYX0sCnDd+zwogSKDKJo1bghW1ce73aiIZCFwLOvTXfPvPauW3KBubu8JA5prWhny+pmVNioaQYBybB8e8Cy7i9jn/SNtnclbuna/nzblT0xm2Yq9FinsnsziFkrnQ0BafQjazHm0Zfc9Q+92KmLLHU2/Kw/syIw8IwxbvJLbxspa4PDEDAEChG49O5n3c8unliblKWI2ICTR7kPP/7UJL4KUY8/wEjZeKxmOdJI2RrgdeCpZ4+e5MZOedVR5GyjFb5auSddnZS955nX3e6/vc31XmBud9vgrVJxoDgFRSqorE0hg8Mvutddfu9zjgJeEDFUziY6zuxzBJ6Z9q7b9NQb/R+eHLFTh0Pz2rsf+mdG+kpeUbcO76h1wBDoBAhAlAz6651tPbnkoAFu/WV7dYKe9ewuyIkoFL690bLuhK+t3q6gHHvZA+7v457y0gVIGKTZUf+6z1185zO5x7Rrp+1inQYBiqJQZGqdpRdw8801u3dsU0R1sxUX7jR9tI50LQROufYRd8/Tr7vDB67oBixffT/Tte7aemsIGAJVECBLmGzhupGyXFsSPFnFv6v0r6efY6RsjRFgpGwN8LrBqY++8Jab9u4HbpXF5u+ykaLrDxvlXn7rfZdV8GLn/7rVPfDcG+5/D93EF+8KUxZ4hEN2XNVryJp9jsC7H3zsfnLRPW6Zr87b5Yse2XM1BHoaAhTP/EFAyuKwwnFl1rEIII+BTAa2dK953Mifbu6lc9rTbnzkJUcmBMXf1sqotk5qICmCVsCpPZ9M17gWhQPXOfF6984HH7c5tiUN1TXuwHppCBgChoAh0FURUM2EJkjZy+55zqGhT5FViq2a1UfASNkaGBopWwM8O7VTIKCK1kQN/3SblWbp045n3+Ieev5Nd9WPN3WrLzG/jwAiEkh23C6reX1ZM0PAEDAEugMCox5+0ZEFIXvi5J0yCyF2h/vtKvcghyBFKXESrtH7K12l69ZPQ6ANAVJHSSGVXX7oxq7fkgsYQoaAIWAIGAKGQEsRGP3wS+7Av9zRSKTsv+561iHXZKRsc4/MSNkaWBopWwM8O7VTIHDb5FccOmcrLTqfu/6IzWbp03Zn3eyICL7m8M3cqovP58Y9Ps3tc97YtuNO2q2v23/DZTrFvVgnDAFDwBCoi4AWrbSTJ+1S9zp2fjkEyECAzPr4k0/ddzZattzJdrQh0EkQuH3Kq27fP4xr6811P9nMrbzYfJ2kd9YNQ8AQMAQMge6KwM2TXnYHXDChUVJ2+9UXc+fuv253haxd78tI2RpwGylbAzw7tVMgwAa33wnXu7ff/8jdevRWPqVO9sQr77gDLhjvnnltuht5xOZuxUW/7KhcPODk0W3HnPKNNd3e6y3VKe7FOmEIGAKGQF0ESFH/7p/v8M2gJYumrJkhYAgYAk0g8Omnzm148mj34pvv+ebGHLmlW+ar8zTRtLVhCBgChoAhYAhkIiCnYBPyBYqU3aHvYu733zJStolhZ6RsDRSNlK0Bnp3aaRBQtejBO6ziDtp8Bd+v8295wv3qqof8f1M84PzvrO/mnWM2/+9lB1/V1nerTN5pHqN1xBAwBBpA4MZHX3bf/dME39Lua/d2Z+69VgOtWhOGgCFgCMxA4PTrHnXnfKaPPH7I1m7R+ecyaAwBQ8AQMAQMgZYicNdTr7k9fn+7+8rcs7uJx29b61pkLiHHs/Oai7tz9l2nVlt28gwEjJStMRKMlK0Bnp3aaRBQtXEKl/z9+xu4n1x0r0NXEYOkhawNbavTb3KPv/KO/xMfYj7IZoaAIWAIdAcEbnr0Zfedz0jZQ7bs447cbuXucFt2D4aAIdBJECALacvTb3ILf3lOd8PPt3DzzfWlTtIz64YhYAgYAoZAd0Vg4rOvu13Pua1R+QIjZZsbLUbK1sDSSNka4NmpnQqBVX9xrZv+4cduiQXmclNff89Hxf7mm+u4rVddZJZ+ktpLii/2hwPWc9ustminuhfrjCFgCBgCVRGQ5hbnD999DbfvBktXbcrOMwQMAUMgFQEc28svNK+hYwgYAoaAIWAItAsCDz//ltvh7JsbjZTdda0l3Nn7rN0u/e/uFzFStsYTNlK2Bnh2aqdC4KC/3eWuffAF3yeKTpx/wHpuqV7pOmfHXf6A++vYp/yxf/puf7flygt3qnuxzhgChoAhUBWBkJT983f7uy3s+1YVSjvPEDAEDAFDwBAwBAwBQ6ATIDD5pbfdwDPGNBopa6Rscw/WSNkaWBopWwM8O7VTIfCfe55zR/zzXl+068Td+ro5v/TFzP6FerMXfn8Dt3GfhTrVvVhnDAFDwBCoisAtk15x+18w3p8+6qebuz6LfLlqU3aeIWAIGAKGgCFgCBgChoAh0OEIPPnqu26L025slJTdbe3ejvoyZvURMFK2BoZGytYAz07tVAi89d5H7ur7n3d7r79UYb+kQcuBF/9wgOu/XK/Cc+wAQ8AQMAS6AgK3Tn7Ffev8GaTsIyft4OaaPdtB1RXux/poCBgChoAhYAgYAoaAIdCzEXju9elu4xE3NErKWkHc5saUkbI1sDRStgZ4dmqXReCRF95y2591s+//ZYds7CgQZmYIGAKGQHdA4PYpr7p9/zDOLTDP7O7e4+pVp+0OeNg9GAKGgCFgCBgChoAhYAh0bQRefvt9t/6vRrk1en/FXXHYJrVu5t93P+d+evG9bo91lnS/3qtfrbbs5BkIGClbYyQYKVsDPDu1yyLw/kefuJWPvcb3/6ofb+pWX2L+Lnsv1nFDwBAwBEIEHpz6pvvxP+52C8wzh7v04I0MHEPAEDAEDAFDwBAwBAwBQ8AQ+AyBi+98xh31r/vc19fp7c7Yy+QLmhgYRsrWQNFI2Rrg2aldGoF1TxrpXn3nAzfyiM3dioua5mKXfpjWeUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEGh3BIyUrQG5kbI1wLNTDQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAyBHoqAkbI1HryRsjXAs1MNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEeioCRsjUevJGyNcCzUw0BQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMgR6KgJGyNR68kbI1wLNTDQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAyBHoqAkbI1HryRsjXAs1MNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEeioCRsjUevJGyNcCzUw0BQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMgR6KgJGyNR68kbI1wLNTDQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAyBHoqAkbI1HryRsjXAs1MNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEeioCRsjUevJGyNcCzUw0BQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMgR6KgJGyNR68kbI1wLNTDQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAyBHoqAkbI1HryRsjXAs1MNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEeioCRsjUePKSsmSFgCBgCXRWBDTfc0I0bN66rdt/6bQgYAoaAIWAIGAKGQJdGwNZiXfrxWecNAUPAOTdp0iTDoQYCRsrWAG/q1Klu8ODB7q9//WuNVuzU7ozA2Wef7ZZffnm3yy67dOfbtHurgcCJJ57otthiC7fZZpvVaMVO7a4I2DzTXZ9sc/dl80xzWHbHlt555x233377ucsuu6w73p7dUwMI2DzTAIjdvIkzzjjDrbLKKm7HHXfs5ndqt1cFAZtnqqBm5xgCnyNgpGyN0WCLmBrg9ZBTbbPcQx50jds0UrYGeD3gVJtnesBDrnmLNs/UBLCbn26b5W7+gBu4PZtnGgCxmzdhpGw3f8A1b8/mmZoA2uk9HgEjZWsMAVvE1ACvh5xqm+Ue8qBr3KaRsjXA6wGn2jzTAx5yzVu0eaYmgN38dNssd/MH3MDt2TzTAIjdvAkjZbv5A655ezbP1ATQTu/xCBgpW2MI2CKmBng95FTbLPeQB13jNo2UrQFeDzjV5pke8JBr3qLNMzUB7Oan22a5mz/gBm7P5pkGQOzmTRgp280fcM3bs3mmJoB2eo9HwEjZGkPAFjE1wOshp9pmuYc86Bq3aaRsDfB6wKk2z/SAh1zzFm2eqQlgNz/dNsvd/AE3cHs2zzQAYjdvwkjZbv6Aa96ezTM1AbTTezwCRsr2+CFgABgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoZAeyJgpGx7om3XMgQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDIEej4CRsj1+CBgAhoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIdCeCBgp255o27UMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDoMcjYKRsjx8CBoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAItCcCRsp+hvZpp53mzjvvvDbshw8f7vbcc8+2f0+bNs0NGjTITZw40f/twgsvdP3795/pWXHMUUcd5QYPHuz69OnT9tsll1zihgwZMtOxtHXkkUe257O2a9VAYPr06W7o0KHuiiuuaGslOQbC57zLLru4YcOGubnnnnumq3LMk08+mfrswzFo46PGw+qgUydPnuwOPPBARxVjrF+/fv6b0qtXr9RvQdYYYRwsu+yyM31/0r4hNJr8TnXQrdtlIxFo5TyTnKPsGxL5UDrRYa2eZ8LvSNr3qRNBYV3JQGDChAluv/32a/s1OY/krVWL5qjk+LP5pWsOwzrzTNH4EiJ5a9muiVrP6XXdeSZvfBV9Y3oOyl37Tou+A3XmmeR+xuaZrj1WrPfNIWCkrHOOCeqcc87xhAoEiiYVJh6IV01gAwYM8EQJvx999NHulFNO8eRrOMEtscQS7oILLpiFlB07dmwqSdfco7SWWokAExDP9dBDD/VEKxMWpLqeNf8+9dRT20g4xg4m4j2c4NLIkuTxrbwXa7s1CPCMn3rqqTYylWf6/PPPt733RWMkXKgULVKyHECtuTNrtQkEWjnPJOeo5L+b6L+10XoEWjnPpH1/wu9T6+/OrtAEAswTyyyzzExr08UXX9yvNYrWqkVzVLgO0aabQINkAEIT92FttAaBuvNM3viix0Vr2dbclbXaJAJ15pmi8VX0jWnyPqyt1iHQqnmGHod8i80zrXuG1nLXQ8BI2ZRnlrawHTFihCfdIG2zNrx5kbJGyna9lyOvx8mJJBndmNwAq6206AKOveiii4y0715DxG9ekkR9GAGbNUbSImWT0FiUStcfLE3OM2kLW3P0dP0x0tQ8k7ZmSTqXuz5aPfMOmAu0vnzuuedczFpVSIVzEH9LZnrZN6Trj6mq80y4Zk3bv9gapOuPDd1B1XmG84scwFnr3O6DXs+4k6bmmTBzMGb89Ax07S4NgRkIGCmbMhKSE1TapJK2WI2VL7C00q7/+oUb2t69e3tpA0VSc3dZG960hWxaanqaPEbXR61n3UG4iOHOY8dIESlrUbLdYxy1ap7h20EGR5qUTvdArufcRVPzTNrG2SJUusc4CteisWvVNMINQjfMAOOYcA5LSjF1D/S6/11UnWeETBYxb6Rs9xk7VecZECiaR+wb0j3GSVPzTHIeSWYmdw+07C4MgWoIGCmbglta6nkykrEMKRteQhPY3nvvPZNmZLXHZ2d1BAJZqcL77LNPW5pfGVI2Lco2lEboiHu0a9ZDIEviJGaMFJGythmq92w6y9lNzzMac9zffffd5zXQTbe8szzt8v1oep5Jbo6LNtPle2xntDcCSRI2Lesmi1RLzlH8O4yyNVK2vZ9ma65XdZ6hN3lRjrYOac3zau9W68wz9DUvmt6yMdr7abbmek3OM+phqElbJNfWmruyVg2BzoeAkbKJZ5LUgcxamFQlZbXQzSr21PmGiPUoREALGGm48VuZ1NC0hWyShCtKB7In0rkRSPP8lhkjeaSsLXI797OP7V3T80wyejrtOxXbNzuu4xFoxTyTVtwlTQO/4+/eehCDQFLXvsxaNW2OSptbLMot5kl03mPqzDNp4yu8UyNlO+9zj+1Z3XkmbXzp2hYBGfsUOvdxTc8zybu1/W7nfv7Wu/ZFwEjZAO+sCSYZQVBWUzb5SG0x076DvKmr5REddTRlk+NB1wmjKpu6B2untQjkLURjx0geKWsaf619fu3ReivmGYtya48n1z7XaNU8k+w9Y+Zvf/ubGzx4sC9eadZ1EMgizGLWqllzVJosjs03XWdMJHtaZ54pImS5lu1juu7YoOd15xkjZLv284/pfSvmmbTr2rck5mnYMT0BASNlP3vKeYvPooq2Gihpi1rOvfjii91ee+3lNz6WMtg1X6sib15aUSfuNJk+nDb5JDdJJozfNcdIURRr7BjJImWL2u+aqPWsXrdqnknK4likbNccV62cZ0JEbB3SNccHvc5bHxStVYvmkPD7ZGOk646ROvNM7PrTiJSuOz7qzjMmWdB1n31sz1s1zzCvXHDBBe7QQw+diRMxScfYJ2PHdWcEjJQNhMonTpw407PeZZdd3LBhw2b6cOiYsBBTWlpgeC4T2HnnndfWtumndL1XSsTp1KlTZ+p8qNsYFuwKn782Uvvtt99M54ZjiAlQv1tKadcbH/Q4rWAbfw+fc94YSZ4fjoOiRXTXRKxn9TrU0ArvvKl5JvmNMk3Zrje+WjnPhOPP5piuNzbU4+R6kr+HzzP5ncmaf0IEdExyLWtr1a43TurOM0XjK1yrCh0rTNu1xkmdeaZofF155ZVuyJAhswBiY6RrjZGi70CdecY4ka41Fqy37YeAkbLth7VdyRAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAWekrA0CQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAE2hEBI2XbEWy7lCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAkbK2hgwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUOgHREwUrYdwbZLGQKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYKSsjQFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMATaEQEjZdsRbLuUIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgCRsraGDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ6AdETBSth3BtksZAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgpKyNAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBNoRASNl2xFsu5QhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAJGytoYMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAEDAFDoB0RMFK2HcG2SxkChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWCkrI0BQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUPAEDAE2hEBI2XbEWy7lCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYAgYAkbK2hgwBAwBQ8AQMAQMAUPAEDAEDAFDwBAwBAwBQ8AQMAQMAUOgHREwUrYdwbZLGQKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCBgChoAhYKSsjQFDwBAwBAwBQ8AQMAQMAY/AhAkT3KmnnurOO+8816tXL0OlhQhMmzbNDRo0yB111FGuf//+LbySNW0IGAKGgCFgCBgChoAh0BkRMFK2Mz4V65MhYAgYAoaAIWAIGAIdgEBZUrbs8R1wS7UuKeJ07733dnvuuWettpInGynbKJzWmCFgCBgChoAhYAgYAl0OASNlu9wjsw4bAoaAIWAIGAKGgCHQGgTKkqxlj29Nr7tmq0bKds3nZr02BAwBQ8AQMAQMAUOgKQSMlG0KSWvHEDAEDAFDwBAwBAyBLoaAiMGJEye29bxfv35t8gWTJ092Bx54oJs6dWrb78OHD/dRo2m/kY5/5JFH+mMvueQSN2TIkLbzLrzwwlJp+nnXDmE+7bTTfH9l6l9aH/ibfk8jRadPn+6GDh3qBgwY4O8xeYxIaCQHuE9wSbYnLHfZZRc3bNgwN/fcc7f1LdlXfiiLSxcbYtZdQ8AQMAQMAUPAEDAEDIEMBIyUtaFhCBgChoAhYAgYAoZAD0QgLTU/GfkKMTpy5Eh38MEHe4RElEIuooOaFSkLITt27Ng2UjJ5XgzcRdemDfrx/PPPt12He7ryyivdAQcc4EnhsA9FhCvtFR3D/e63334uSbimEbzJvqX11TRlY0aCHWMIGAKGgCFgCBgChkD3RMBI2e75XO2uDAFDwBAwBAwBQ8AQyEUgSVpycIwcAeTisssu6yNJ046HoCSSdPDgwa5Pnz5tfeA8TJG0VR5PeG1I26OPPtqdcsopM12HdqtEwcaSsmmF0MDyySefnOnewv7RdrKvJl9QZQTYOYaAIWAIGAKGgCFgCHQfBIyU7T7P0u7EEDAEDAFDwBAwBAyBaG2zW5wAAAYiSURBVATSSNI0klXRoWHDkilIOz5NdkDnhvIGMR0tuvZFF100i0QA7aYRtkVRsHVI2TRZAtpbYokl3AUXXOBJ4iSZa6RszAiwYwwBQ8AQMAQMAUPAEOi+CBgp232frd2ZIWAIGAKGgCFgCBgCmQiEUac6KEmycgxyABCLinoNydwsUjYrgrXM44i5dh4pO2LECE+E9urVy1+21aQs18iKAganZF+NlC0zGuxYQ8AQMAQMAUPAEDAEuh8CRsp2v2dqd2QIGAKGgCFgCBgChkAhAkWRshSooujVPvvsM1OBrvA8IlKT5GcTZKMI1KJrZ5G/7R0pmyYFET6ALJkH05QtHKZ2gCFgCBgChoAhYAgYAt0WASNlu+2jtRszBAwBQ8AQMAQMAUMgG4EkcSkylTPOO+88J1J28cUXb4sAlZyAZAiyCnilRbly7lNPPeW1aItMpGzetXUMbQ0bNsz3Nyz0lSSd1ffhw4f7PqRdA3J1yJAhTsckCeYszV3hsPPOO7dhRfvnnHOOO/DAA9uwHDBgQNv9S/LgwgsvnIn0LsLGfjcEDAFDwBAwBAwBQ8AQ6B4IGCnbPZ6j3YUhYAgYAoaAIWAIGAKlEQg1W/v16+cJRKQKIGVJ+xcpOXHiRN82ZKxMqfoiMvV72t/5TfqqYfGvvA7HXFvE6hVXXNHWVJJ01W/77ruve+utt1xIjCavceyxxzruVcfEkrJcPNlWEo/k77/5zW881hRF69+/f+lnZycYAoaAIWAIGAKGgCFgCHRtBIyU7drPz3pvCBgChoAhYAgYAoaAIRCBQFJTNuIUO8QQMAQMAUPAEDAEDAFDwBBoGQJGyrYMWmvYEDAEDAFDwBAwBAwBQyCJQBhZm4WOol2bRM9I2SbRtLYMAUPAEDAEDAFDwBAwBOoiYKRsXQTtfEPAEDAEDAFDwBAwBAyBTo+AkbKd/hFZBw0BQ8AQMAQMAUPAEOhRCBgp26Met92sIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAKGgCFgCHQ0AkbKdvQTsOsbAoaAIWAIGAKGgCFgCBgChoAhYAgYAoaAIWAIGAKGQI9CwEjZHvW47Wb/rx07pgEAAEAY5t81MnZQBYTyQYAAAQIECBAgQIAAAQIECBAgQIBALeCUrReQT4AAAQIECBAgQIAAAQIECBAgQIDAlYBT9mpuZQkQIECAAAECBAgQIECAAAECBAgQqAWcsvUC8gkQIECAAAECBAgQIECAAAECBAgQuBJwyl7NrSwBAgQIECBAgAABAgQIECBAgAABArWAU7ZeQD4BAgQIECBAgAABAgQIECBAgAABAlcCTtmruZUlQIAAAQIECBAgQIAAAQIECBAgQKAWcMrWC8gnQIAAAQIECBAgQIAAAQIECBAgQOBKwCl7NbeyBAgQIECAAAECBAgQIECAAAECBAjUAk7ZegH5BAgQIECAAAECBAgQIECAAAECBAhcCThlr+ZWlgABAgQIECBAgAABAgQIECBAgACBWsApWy8gnwABAgQIECBAgAABAgQIECBAgACBKwGn7NXcyhIgQIAAAQIECBAgQIAAAQIECBAgUAs4ZesF5BMgQIAAAQIECBAgQIAAAQIECBAgcCXglL2aW1kCBAgQIECAAAECBAgQIECAAAECBGoBp2y9gHwCBAgQIECAAAECBAgQIECAAAECBK4EnLJXcytLgAABAgQIECBAgAABAgQIECBAgEAt4JStF5BPgAABAgQIECBAgAABAgQIECBAgMCVgFP2am5lCRAgQIAAAQIECBAgQIAAAQIECBCoBZyy9QLyCRAgQIAAAQIECBAgQIAAAQIECBC4EnDKXs2tLAECBAgQIECAAAECBAgQIECAAAECtYBTtl5APgECBAgQIECAAAECBAgQIECAAAECVwJO2au5lSVAgAABAgQIECBAgAABAgQIECBAoBZwytYLyCdAgAABAgQIECBAgAABAgQIECBA4ErAKXs1t7IECBAgQIAAAQIECBAgQIAAAQIECNQCTtl6AfkECBAgQIAAAQIECBAgQIAAAQIECFwJOGWv5laWAAECBAgQIECAAAECBAgQIECAAIFaYP68eOn9zDlJAAAAAElFTkSuQmCC", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ - "plot_chlorophyll_estimates(\"Georgica Pond\")" + "plot_chlorophyll_estimates(\"Cayuta Lake\")" ] }, { @@ -2508,26 +114,11 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": { "tags": [] }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "WARNING:root:Parsing function docstring is still an experimental feature. To reduce uncertainty, consider setting `about` to `False`.\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Dash app running on http://127.0.0.1:5000/\n" - ] - } - ], + "outputs": [], "source": [ "# Define the layout of the app. Alphabets denote the placement of each output\n", "# In this layout, we are telling the app to display the first two outputs (A and B) next to each other,\n", @@ -2544,7 +135,7 @@ " Plot Landsat-driven estimation of Chlorophyll-a values in island waters of NY state.\n", " \"\"\"\n", " \n", - " filtered_data = data[data.gnis_name == lake_name]\n", + " filtered_data = data[data[\"gnis_name\"] == lake_name]\n", " trend = px.line(data_frame=filtered_data, x=\"date_acquired\", y=\"predictions\", template=\"simple_white\")\n", " \n", " mean = f\"{round(filtered_data['predictions'].mean(), 2)} ug/L\"\n", @@ -2569,26 +160,11 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": { "tags": [] }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "WARNING:root:Parsing function docstring is still an experimental feature. To reduce uncertainty, consider setting `about` to `False`.\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Dash app running on http://127.0.0.1:5000/\n" - ] - } - ], + "outputs": [], "source": [ "# Define the layout of the app. Alphabets denote the placement of each output\n", "# In this layout, we are telling the app to display the first two outputs (A and B) next to each other,\n", @@ -2607,7 +183,7 @@ " Plot Landsat-driven estimation of Chlorophyll-a values in island waters of NY state.\n", " \"\"\"\n", " \n", - " filtered_data = data[(data.gnis_name == lake_name) & (data.date_acquired.between(start_date, end_date))]\n", + " filtered_data = data[(data[\"gnis_name\"] == lake_name) & (data[\"date_acquired\"].between(start_date, end_date))]\n", " trend = px.line(data_frame=filtered_data, x=\"date_acquired\", y=\"predictions\", template=\"simple_white\")\n", " \n", " mean = f\"{round(filtered_data['predictions'].mean(), 2)} ug/L\"\n", From 746a06891518892f7d5a42a5b1b5a4b469877ae0 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Wed, 24 Jul 2024 21:52:53 -0400 Subject: [PATCH 11/13] Correct example notebook path --- ...chlorophyll_a_estimates_with_landsat.ipynb | 67 ++++++++++++++++++- 1 file changed, 66 insertions(+), 1 deletion(-) diff --git a/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb b/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb index 13cd110..89d54f5 100644 --- a/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb +++ b/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "[![Open in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/dkedar7/fast_dash/blob/docs/docs/Examples/07_chlorophyll_a_estimates_with_landsat07_chlorophyll_a_estimates_with_landsat.ipynb)" + "[![Open in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/dkedar7/fast_dash/blob/docs/docs/Examples/07_chlorophyll_a_estimates_with_landsat.ipynb)" ] }, { @@ -192,6 +192,71 @@ " return mean, median, trend" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### How do we draw a map?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install folium" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "import folium\n", + "from fast_dash import html\n", + "\n", + "# Define the layout of the app. Alphabets denote the placement of each output\n", + "# In this layout, we are telling the app to display the first two outputs (A and B) next to each other,\n", + "# and let the third output occupy double the width in the second row.\n", + "output_layout = \"\"\"\n", + "DDAB\n", + "CCCC\n", + "CCCC\n", + "\"\"\"\n", + "\n", + "@fastdash(mode=\"external\", port=5000, mosaic=output_layout)\n", + "def plot_chlorophyll_estimates(lake_name: str = data.gnis_name.unique().tolist(), \n", + " start_date=datetime.date(2015, 1, 1),\n", + " end_date=datetime.date(2023, 12, 31)) -> (str, str, Graph, html.Iframe()):\n", + " \"\"\"\n", + " Plot Landsat-driven estimation of Chlorophyll-a values in island waters of NY state.\n", + " \"\"\"\n", + " \n", + " filtered_data = data[(data[\"gnis_name\"] == lake_name) & (data[\"date_acquired\"].between(start_date, end_date))]\n", + "\n", + " centroid_latitude = filtered_data[\"centroid_latitude\"].dropna().iloc[0]\n", + " centroid_longitude = filtered_data[\"centroid_longitude\"].dropna().iloc[0]\n", + " \n", + " map_ = folium.Map(location=(centroid_latitude, centroid_longitude), zoom_start=13)._repr_html_()\n", + " trend = px.line(data_frame=filtered_data, x=\"date_acquired\", y=\"predictions\", template=\"simple_white\")\n", + " \n", + " mean = f\"{round(filtered_data['predictions'].mean(), 2)} ug/L\"\n", + " median = f\"{round(filtered_data['predictions'].median(), 2)} ug/L\"\n", + " \n", + " return mean, median, trend, map_" + ] + }, { "cell_type": "code", "execution_count": null, From 26ef3c281ebb9bb597c66996c0ea1fd3bd631820 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Thu, 1 Aug 2024 01:32:38 -0400 Subject: [PATCH 12/13] Explicitly remove docutils v0.21 to overcome Poetry issue --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 439aa46..ab76a24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -84,6 +84,7 @@ mkdocs-autorefs = "^0.4.1" mkdocstrings-python = "^0.7.1" mkdocs-jupyter = "^0.24.1" griffe = "<0.31.0" +docutils = "!=0.21" [tool.poetry.group.test.dependencies] urllib3 = "1.26.15" From 78540e4d4862f05cfcba9484ac16722bf6a22873 Mon Sep 17 00:00:00 2001 From: Kedar Dabhadkar Date: Sat, 1 Feb 2025 18:03:20 -0500 Subject: [PATCH 13/13] Trigger Build